diff --git a/.gitignore b/.gitignore index b765bfee61f..e2dd3915bec 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,8 @@ fl_notes.txt *.ini .noseids *~ +.idea +.vscode # custom style ckan/public/base/less/custom.less diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e23f85f68d0..30b5a1d0526 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,63 +7,137 @@ Changelog --------- -v2.7.0 TBA -========== +v2.7.0 2017-08-02 +================= + +Note: Starting from this version, CKAN requires at least Postgres 9.3 + +Note: This version requires a requirements upgrade on source installations + +Note: This version requires a database upgrade + +Note: This version does not require a Solr schema upgrade (You may want to + upgrade the schema if you want to target Solr>=5, see #2914) + +Note: There are several old features being officially deprecated starting from + this version. Check the *Deprecations* section to be prepared. + Major: - * datatables_view resource view plugin (`#3444 `_) - * IDatastoreBackend plugins for replacing default postgres backend (`#3437 `_) - * datastore_search new result formats and performance improvements (`#3523 `_) - * PL/PGSQL triggers for datastore tables (`#3428 `_) - * Datastore dump CLI commands (`#3384 `_) - * Wrap/override actions defined in other plugins (`#3494 `_) - * Datastore table data dictionary stored as postgres comments (`#3414 `_) - * Common session object for Flask and Pylons (`#3208 `_) - * Rename deleted datasets when they conflict with new ones (`#3370 `_) - * Datastore dump more formats: CSV, TSV, XML, JSON; BOM option (`#3390 `_) - * Common requests code for Flask and Pylons (`#3212 `_) - * Generate complete datastore dump files (`#3344 `_) + * New datatables_view resource view plugin for tabular data (#3444) + * IDataStoreBackend plugins for replacing the default DataStore Postgres backend (#3437) + * datastore_search new result formats and performance improvements (#3523) + * PL/PGSQL triggers for DataStore tables (#3428) + * DataStore dump CLI commands (#3384) + * Wrap/override actions defined in other plugins (#3494) + * DataStore table data dictionary stored as postgres comments (#3414) + * Common session object for Flask and Pylons (#3208) + * Rename deleted datasets when they conflict with new ones (#3370) + * DataStore dump more formats: CSV, TSV, XML, JSON; BOM option (#3390) + * Common requests code for Flask and Pylons (#3212) + * Generate complete datastore dump files (#3344) + * A new system for asynchronous background jobs (#3165) Minor: - * Renamed example theme plugin (`#3576 `_) - * Localization support for groups (`#3559 `_) - * Create new resource views when format changes (`#3515 `_) - * Email field validation (`#3568 `_) - * datastore_run_triggers sysadmin-only action to apply triggers to existing data (`#3565 `_) - * Docs updated for Ubuntu 16.04 (`#3544 `_) - * Upgrade leaflet to 0.7.7 (`#3534 `_) - * Datapusher CLI always-answer-yes option (`#3524 `_) - * Added docs for all plugin interfaces (`#3519 `_) - * Datastore dumps nested columns as JSON (`#3487 `_) - * Faster/optional datastore_search total calculation (`#3467 `_) - * Faster group_activity_query (`#3466 `_) - * Faster query performance (`#3430 `_) - * Marked remaining JS strings translatable (`#3423 `_) - * Upgrade font-awesome to 4.0.3 (`#3400 `_) - * group/organization_show include_dataset_count option (`#3385 `_) - * image_formats config option for image viewer (`#3380 `_) - * click may now be used for CLI interfaces: use load_config instead of CkanCommand (`#3384 `_) - * package_search option to return only names/ids (`#3427 `_) - * user_list all_fields option (`#3353 `_) - * Error controller may now be overridden (`#3340 `_) - * Plural translations in JS (`#3211 `_) - * Support JS translations in extensions (`#3272 `_) - * Requirements upgraded (`#3305 `_) - * Dockerfile updates (`#3295 `_) - -API changes and deprecations: + * Renamed example theme plugin (#3576) + * Localization support for groups (#3559) + * Create new resource views when format changes (#3515) + * Email field validation (#3568) + * datastore_run_triggers sysadmin-only action to apply triggers to existing data (#3565) + * Docs updated for Ubuntu 16.04 (#3544) + * Upgrade leaflet to 0.7.7 (#3534) + * Datapusher CLI always-answer-yes option (#3524) + * Added docs for all plugin interfaces (#3519) + * DataStore dumps nested columns as JSON (#3487) + * Faster/optional datastore_search total calculation (#3467) + * Faster group_activity_query (#3466) + * Faster query performance (#3430) + * Marked remaining JS strings translatable (#3423) + * Upgrade font-awesome to 4.0.3 (#3400) + * group/organization_show include_dataset_count option (#3385) + * image_formats config option for image viewer (#3380) + * click may now be used for CLI interfaces: use load_config instead of CkanCommand (#3384) + * package_search option to return only names/ids (#3427) + * user_list all_fields option (#3353) + * Error controller may now be overridden (#3340) + * Plural translations in JS (#3211) + * Support JS translations in extensions (#3272) + * Requirements upgraded (#3305) + * Dockerfile updates (#3295) + * Fix activity test to use utcnow (#3644) + * Changed required permission from 'update' to 'manage_group' (#3631) + * Catch invalid sort param exception (#3630) + * Choose direction of recreated package relationship depending on its type (#3626) + * Fix render_datetime for dates before year 1900 (#3611) + * Fix KeyError in 'package_create' (#3027) + * Allow slug preview to work with autocomplete fields (#2501) + * Fix filter results button not working for organization/group (#3620) + * Allow underscores in URL slug preview on create dataset (#3612) + * Fallback to po file translations on ``h.get_translated()`` (#3577) + * Fix Fanstatic URL on non-root installs (#3618) + * Fixed escaping issues with ``helpers.mail_to`` and datapusher logs + * Autocomplete fields are more responsive - 300ms timeout instead of 1s (#3693) + * Fixed dataset count display for groups (#3711) + * Restrict access to form pages (#3684) + * Render_datetime can handle dates before year 1900 (#2228) + +API changes: * ``organization_list_for_user`` (and the ``h.organizations_available()`` helper) now return all organizations a user belongs to regardless of capacity (Admin, Editor or Member), not just the ones where she is an - administrator (`#2457 `_) + administrator (#2457) * ``organization_list_for_user`` (and the ``h.organizations_available()`` helper) now default to not include package_count. Pass include_dataset_count=True if you need the package_count values. - * ``resource['size']`` will change from string to long integer (`#3205 `_) - * upgrade Font-Awesome from version 3.2.1 to 4.0.3 - please refer to + * ``resource['size']`` will change from string to long integer (#3205) + * Font Awesome has been upgraded from version 3.2.1 to 4.0.3 .Please refer to https://github.com/FortAwesome/Font-Awesome/wiki/Upgrading-from-3.2.1-to-4 - to upgrade your code accordingly. + to upgrade your code accordingly if you are using custom themes. + +Deprecations: + + * The API versions 1 and 2 (also known as the REST API, ie ``/api/rest/*`` will removed + in favour of the version 3 (action API, ``/api/action/*``), which was introduced in + CKAN 2.0. The REST API will be removed on CKAN 2.8. + * The default theme included in CKAN core will switch to use Bootstrap 3 instead of + Bootstrap 2 in CKAN 2.8. The current Bootstrap 2 based templates will still be included + in the next CKAN versions, so existing themes will still work. Bootstrap 2 templates will + be eventually removed though, so instances are encouraged to update their themes using + the available documentation (https://getbootstrap.com/migration/) + * The activity stream related actions ending with ``*_list`` (eg ``package_activity_list``) + and ``*_html`` (eg ``package_activity_list_html``) will be removed in CKAN 2.8 in favour of + more efficient alternatives and are now deprecated. + * The legacy revisions controller (ie ``/revisions/*``) will be completely removed in CKAN 2.8. + * The old Celery based background jobs will be removed in CKAN 2.8 in favour of the new RQ based + jobs (http://docs.ckan.org/en/latest/maintaining/background-tasks.html). Extensions can still + of course use Celery but they will need to handle the management themselves. + +v2.6.3 2017-08-02 +================= + +* Fix in organization / group form image URL field (#3661) +* Fix activity test to use utcnow (#3644) +* Changed required permission from 'update' to 'manage_group' (#3631) +* Catch invalid sort param exception (#3630) +* Choose direction of recreated package relationship depending on its type (#3626) +* Fix render_datetime for dates before year 1900 (#3611) +* Fix KeyError in 'package_create' (#3027) +* Allow slug preview to work with autocomplete fields (#2501) +* Fix filter results button not working for organization/group (#3620) +* Allow underscores in URL slug preview on create dataset (#3612) +* Create new resource view if resource format changed (#3515) +* Fixed escaping issues with `helpers.mail_to` and datapusher logs +* Autocomplete fields are more responsive - 300ms timeout instead of 1s (#3693) +* Fixed dataset count display for groups (#3711) +* Restrict access to form pages (#3684) + +v2.6.2 2017-03-22 +================= + +* Use fully qualified urls for reset emails (#3486) +* Fix edit_resource for resource with draft state (#3480) +* Tag fix for group/organization pages (#3460) +* Setting of datastore_active flag moved to separate function (#3481) v2.6.1 2017-02-22 ================= @@ -180,6 +254,33 @@ Bug fixes: API changes and deprecations: * Replace `c.__version__` with new helper `h.ckan_version()` (`#3103 `_) +v2.5.6 2017-08-02 +================= + +* Fix in organization / group form image URL field (#3661) +* Fix activity test to use utcnow (#3644) +* Changed required permission from 'update' to 'manage_group' (#3631) +* Catch invalid sort param exception (#3630) +* Choose direction of recreated package relationship depending on its type (#3626) +* Fix render_datetime for dates before year 1900 (#3611) +* Fix KeyError in 'package_create' (#3027) +* Allow slug preview to work with autocomplete fields (#2501) +* Fix filter results button not working for organization/group (#3620) +* Allow underscores in URL slug preview on create dataset (#3612) +* Create new resource view if resource format changed (#3515) +* Fixed incorrect escaping in `mail_to` and datapusher's log +* Autocomplete fields are more responsive - 300ms timeout instead of 1s (#3693) +* Fixed dataset count display for groups (#3711) +* Restrict access to form pages (#3684) + +v2.5.5 2017-03-22 +================= + +* Use fully qualified urls for reset emails (#3486) +* Fix edit_resource for resource with draft state (#3480) +* Tag fix for group/organization pages (#3460) +* Setting of datastore_active flag moved to separate function (#3481) + v2.5.4 2017-02-22 ================= @@ -297,6 +398,48 @@ v2.5.0 2015-12-17 Cancelled release +v2.4.6 2017-02-22 +================= + + * Use the url_for() helper for datapusher URLs (#2866) + * Resource creation date use datetime.utcnow() (#3447) + * Fix locale error when using fix ckan.root_path + * `render_markdown` breaks links with ampersands + * Check group name and id during package creation + * Use utcnow() on dashboard_mark_activities_old (#3373) + * Fix encoding error on DataStore exception + * Datastore doesn't add site_url to resource created via API (#3189) + * Fix memberships after user deletion (#3265) + * Remove idle database connection (#3260) + * Fix package_owner_org_update action when called via the API (#2661) + +v2.4.8 2017-08-02 +================= + +* Fix in organization / group form image URL field (#3661) +* Fix activity test to use utcnow (#3644) +* Changed required permission from 'update' to 'manage_group' (#3631) +* Catch invalid sort param exception (#3630) +* Choose direction of recreated package relationship depending on its type (#3626) +* Fix render_datetime for dates before year 1900 (#3611) +* Fix KeyError in 'package_create' (#3027) +* Allow slug preview to work with autocomplete fields (#2501) +* Fix filter results button not working for organization/group (#3620) +* Allow underscores in URL slug preview on create dataset (#3612) +* Create new resource view if resource format changed (#3515) +* Fixed incorrect escaping in `mail_to` +* Autocomplete fields are more responsive - 300ms timeout instead of 1s (#3693) +* Fixed dataset count display for groups (#3711) +* Restrict access to form pages (#3684) + +v2.4.7 2017-03-22 +================= + +* Use fully qualified urls for reset emails (#3486) +* Fix edit_resource for resource with draft state (#3480) +* Tag fix for group/organization pages (#3460) +* Fix for package_search context (#3489) + v2.4.6 2017-02-22 ================= diff --git a/ckan/config/environment.py b/ckan/config/environment.py index d1ea8bb36b1..79b55f02b98 100644 --- a/ckan/config/environment.py +++ b/ckan/config/environment.py @@ -69,9 +69,21 @@ def find_controller(self, controller): # Pylons paths root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + valid_base_public_folder_names = ['public', 'public-bs2'] + static_files = app_conf.get('ckan.base_public_folder', 'public') + app_conf['ckan.base_public_folder'] = static_files + + if static_files not in valid_base_public_folder_names: + raise CkanConfigurationException( + 'You provided an invalid value for ckan.base_public_folder. ' + 'Possible values are: "public" and "public-bs2".' + ) + + log.info('Loading static files from %s' % static_files) paths = dict(root=root, controllers=os.path.join(root, 'controllers'), - static_files=os.path.join(root, 'public'), + static_files=os.path.join(root, static_files), templates=[]) # Initialize main CKAN config object @@ -220,7 +232,19 @@ def update_config(): helpers.load_plugin_helpers() config['pylons.h'] = helpers.helper_functions - jinja2_templates_path = os.path.join(root, 'templates') + # Templates and CSS loading from configuration + valid_base_templates_folder_names = ['templates', 'templates-bs2'] + templates = config.get('ckan.base_templates_folder', 'templates') + config['ckan.base_templates_folder'] = templates + + if templates not in valid_base_templates_folder_names: + raise CkanConfigurationException( + 'You provided an invalid value for ckan.base_templates_folder. ' + 'Possible values are: "templates" and "templates-bs2".' + ) + + jinja2_templates_path = os.path.join(root, templates) + log.info('Loading templates from %s' % jinja2_templates_path) template_paths = [jinja2_templates_path] extra_template_paths = config.get('extra_template_paths', '') diff --git a/ckan/config/middleware/__init__.py b/ckan/config/middleware/__init__.py index 8ea9a3bbaca..0b14a8c7e05 100644 --- a/ckan/config/middleware/__init__.py +++ b/ckan/config/middleware/__init__.py @@ -2,14 +2,16 @@ """WSGI app initialization""" import urllib +import urlparse import webob +from routes import request_config as routes_request_config -from ckan.lib.i18n import get_locales_from_config from ckan.config.environment import load_environment from ckan.config.middleware.flask_app import make_flask_stack from ckan.config.middleware.pylons_app import make_pylons_stack from ckan.common import config +from ckan.lib.i18n import get_locales_from_config import logging log = logging.getLogger(__name__) @@ -177,6 +179,15 @@ def __call__(self, environ, start_response): log.debug('Serving request via {0} app'.format(app_name)) environ['ckan.app'] = app_name if app_name == 'flask_app': + # This request will be served by Flask, but we still need the + # Pylons URL builder (Routes) to work + parts = urlparse.urlparse(config.get('ckan.site_url', + 'http://0.0.0.0:5000')) + request_config = routes_request_config() + request_config.host = str(parts.netloc + parts.path) + request_config.protocol = str(parts.scheme) + request_config.mapper = config['routes.map'] + return self.apps[app_name](environ, start_response) else: # Although this request will be served by Pylons we still @@ -184,5 +195,5 @@ def __call__(self, environ, start_response): # builder to work and to be able to access the Flask config flask_app = self.apps['flask_app']._wsgi_app - with flask_app.app_context(): + with flask_app.test_request_context(): return self.apps[app_name](environ, start_response) diff --git a/ckan/config/middleware/flask_app.py b/ckan/config/middleware/flask_app.py index d1d12184ba4..291856ac702 100644 --- a/ckan/config/middleware/flask_app.py +++ b/ckan/config/middleware/flask_app.py @@ -1,6 +1,7 @@ # encoding: utf-8 import os +import re import inspect import itertools import pkgutil @@ -153,7 +154,6 @@ def hello_world_post(): app.register_extension_blueprint(plugin.get_blueprint()) # Start other middleware - for plugin in PluginImplementations(IMiddleware): app = plugin.make_middleware(app, config) @@ -174,6 +174,10 @@ def hello_world_post(): 'bottom': True, 'bundle': True, } + root_path = config.get('ckan.root_path', None) + if root_path: + root_path = re.sub('/{{LANG}}', '', root_path) + fanstatic_config['base_url'] = root_path app = Fanstatic(app, **fanstatic_config) for plugin in PluginImplementations(IMiddleware): diff --git a/ckan/config/middleware/pylons_app.py b/ckan/config/middleware/pylons_app.py index c3b67deb389..5598b4bbe8c 100644 --- a/ckan/config/middleware/pylons_app.py +++ b/ckan/config/middleware/pylons_app.py @@ -1,6 +1,7 @@ # encoding: utf-8 import os +import re from pylons.wsgiapp import PylonsApp @@ -89,6 +90,10 @@ def make_pylons_stack(conf, full_stack=True, static_files=True, 'bottom': True, 'bundle': True, } + root_path = config.get('ckan.root_path', None) + if root_path: + root_path = re.sub('/{{LANG}}', '', root_path) + fanstatic_config['base_url'] = root_path app = Fanstatic(app, **fanstatic_config) for plugin in PluginImplementations(IMiddleware): diff --git a/ckan/config/routing.py b/ckan/config/routing.py index 1e01114ea12..b80f283c2ad 100644 --- a/ckan/config/routing.py +++ b/ckan/config/routing.py @@ -358,8 +358,6 @@ def make_map(): map.redirect('/user/', '/user') with SubMapper(map, controller='user') as m: m.connect('/user/edit', action='edit') - # Note: openid users have slashes in their ids, so need the wildcard - # in the route. m.connect('user_generate_apikey', '/user/generate_key/{id}', action='generate_apikey') m.connect('/user/activity/{id}/{offset}', action='activity') m.connect('user_activity_stream', '/user/activity/{id}', @@ -375,12 +373,12 @@ def make_map(): m.connect('/dashboard/{offset}', action='dashboard') m.connect('user_follow', '/user/follow/{id}', action='follow') m.connect('/user/unfollow/{id}', action='unfollow') - m.connect('user_followers', '/user/followers/{id:.*}', + m.connect('user_followers', '/user/followers/{id}', action='followers', ckan_icon='users') - m.connect('user_edit', '/user/edit/{id:.*}', action='edit', + m.connect('user_edit', '/user/edit/{id}', action='edit', ckan_icon='cog') m.connect('user_delete', '/user/delete/{id}', action='delete') - m.connect('/user/reset/{id:.*}', action='perform_reset') + m.connect('/user/reset/{id}', action='perform_reset') m.connect('register', '/user/register', action='register') m.connect('login', '/user/login', action='login') m.connect('/user/_logout', action='logout') @@ -390,7 +388,7 @@ def make_map(): m.connect('/user/reset', action='request_reset') m.connect('/user/me', action='me') m.connect('/user/set_lang/{lang}', action='set_lang') - m.connect('user_datasets', '/user/{id:.*}', action='read', + m.connect('user_datasets', '/user/{id}', action='read', ckan_icon='sitemap') m.connect('user_index', '/user', action='index') diff --git a/ckan/controllers/feed.py b/ckan/controllers/feed.py index 126e7b38f7c..ed4bc9dfb16 100644 --- a/ckan/controllers/feed.py +++ b/ckan/controllers/feed.py @@ -411,11 +411,12 @@ def output_feed(self, results, feed_title, feed_description, author_email=pkg.get('author_email', ''), categories=[t['name'] for t in pkg.get('tags', [])], enclosure=webhelpers.feedgenerator.Enclosure( - self.base_url + h.url_for(controller='api', - register='package', - action='show', - id=pkg['name'], - ver='2'), + h.url_for(controller='api', + register='package', + action='show', + id=pkg['name'], + ver='3', + qualified=True), unicode(len(json.dumps(pkg))), # TODO fix this u'application/json'), **additional_fields diff --git a/ckan/controllers/group.py b/ckan/controllers/group.py index 0bf5aae158e..3fe386c6847 100644 --- a/ckan/controllers/group.py +++ b/ckan/controllers/group.py @@ -670,8 +670,11 @@ def member_new(self, id): context = {'model': model, 'session': model.Session, 'user': c.user} + try: + self._check_access('group_member_create', context, {'id': id}) + except NotAuthorized: + abort(403, _('Unauthorized to create group %s members') % '') - # self._check_access('group_delete', context, {'id': id}) try: data_dict = {'id': id} data_dict['include_datasets'] = False diff --git a/ckan/controllers/package.py b/ckan/controllers/package.py index 4621b994296..3f8f1d5d931 100644 --- a/ckan/controllers/package.py +++ b/ckan/controllers/package.py @@ -546,6 +546,16 @@ def new(self, data=None, errors=None, error_summary=None): def resource_edit(self, id, resource_id, data=None, errors=None, error_summary=None): + context = {'model': model, 'session': model.Session, + 'api_version': 3, 'for_edit': True, + 'user': c.user, 'auth_user_obj': c.userobj} + data_dict = {'id': id} + + try: + check_access('package_update', context, data_dict) + except NotAuthorized: + abort(403, _('User %r not authorized to edit %s') % (c.user, id)) + if request.method == 'POST' and not data: data = data or \ clean_dict(dict_fns.unflatten(tuplize_dict(parse_params( @@ -553,10 +563,6 @@ def resource_edit(self, id, resource_id, data=None, errors=None, # we don't want to include save as it is part of the form del data['save'] - context = {'model': model, 'session': model.Session, - 'api_version': 3, 'for_edit': True, - 'user': c.user, 'auth_user_obj': c.userobj} - data['package_id'] = id try: if resource_id: @@ -574,9 +580,6 @@ def resource_edit(self, id, resource_id, data=None, errors=None, h.redirect_to(controller='package', action='resource_read', id=id, resource_id=resource_id) - context = {'model': model, 'session': model.Session, - 'api_version': 3, 'for_edit': True, - 'user': c.user, 'auth_user_obj': c.userobj} pkg_dict = get_action('package_show')(context, {'id': id}) if pkg_dict['state'].startswith('draft'): # dataset has not yet been fully created diff --git a/ckan/controllers/user.py b/ckan/controllers/user.py index 045a9d86cfb..d657330647f 100644 --- a/ckan/controllers/user.py +++ b/ckan/controllers/user.py @@ -533,6 +533,7 @@ def perform_reset(self, id): context['reset_password'] = True user_state = user_dict['state'] new_password = self._get_form_password() + user_dict['password'] = new_password username = request.params.get('name') if (username is not None and username != ''): user_dict['name'] = username diff --git a/ckan/i18n/ar/LC_MESSAGES/ckan.mo b/ckan/i18n/ar/LC_MESSAGES/ckan.mo index 10f5dc27983..136a9e0e5ed 100644 Binary files a/ckan/i18n/ar/LC_MESSAGES/ckan.mo and b/ckan/i18n/ar/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/ar/LC_MESSAGES/ckan.po b/ckan/i18n/ar/LC_MESSAGES/ckan.po index ee7597650b6..c5d3f2f1477 100644 --- a/ckan/i18n/ar/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ar/LC_MESSAGES/ckan.po @@ -1,2668 +1,2623 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.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" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "لم يتم العثور على وظيفة إثبات الأصالة %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "مدير" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "محرر" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "" -#: ckan/authz.py:199 -msgid "Member" -msgstr "عضو" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "خطأ" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "تحتاج إلى أن تكون مسؤول النظام للقيام بالإدارة" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "عنوان الموقع" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "لم يتم العثور على الموارد" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "شكل" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "غير مخول لرؤية هذه الصفحة" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "شعار الموقع" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "شعار علامة الموقع" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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 "حول" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "نص الصفحة : حول" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "نص المقدمة" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "النص على الصفحة الرئيسية" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "css خاص" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "لقد تم إدراج CSS مخصصة في رأس الصفحة" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" -#: ckan/controllers/admin.py:57 -msgid "Homepage" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" msgstr "" -#: ckan/controllers/admin.py:160 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" msgstr "" -"لا يمكن تطهير الحزمة %s لأنها ترتبط في تنقيح %s الذي يشمل الحزم التي لا يمكن" -" حذف %s" -#: ckan/controllers/admin.py:182 +#: ckanext/datastore/controller.py:46 #, python-format -msgid "Problem purging revision %s: %s" -msgstr "مشكلة تطهير تنقيح %s : %s" +msgid "format: must be one of %s" +msgstr "" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "الانتهاء من التطهير" +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "لم ينفذ العمل." +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "غير مخول لرؤية هذه الصفحة" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "رفض الدخول" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "غير موجود" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "طلب غير صحيح" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "اسم الإجراء غير معروف: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "خطأ JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "طلب غير صحيح المعلومات : %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "لا يمكن سرد كيان من هذا النوع: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "لا يمكن قراءة كيان من هذا النوع: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "لا يمكن إنشاء كيان جديد من هذا النوع: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "غير قادر على إضافة مجموعة إلى فهرس البحث" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "لا يمكن تحديث كيان من هذا النوع: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "قادر على تحديث فهرس البحث" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "لا يمكن حذف كيان من هذا النوع: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "لم يتم تحديد مراجعة" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "ليس هناك مراجعة ذات الرقم: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "مفقود مصطلح البحث ('since_id = UUID' أو 'since_time = TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "لا يمكن قراءة المعلمات: %r" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "خيارات البحث سيئة %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "سجل غير معروف: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "يجب أن يكون طلب params في شكل قاموس ترميز json." +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "حفظ" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "لم يتم العثور على المجموعة" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "المنظمات" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "مجموعات" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "أوسمة" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "صيغ" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "غير مخول لإجراء التحديث الشامل" - -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "غير مخول إنشاء مجموعة" - -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "المستخدم %r غير مخول لتحرير %s" - -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "خطأ سلامة" - -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "المستخدم %r غير مخول لتحرير أذون %s" - -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "حذف المجموعة غير مصرح به %s" - -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "تم حذف المنظمة." - -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "تم حذف المجموعة." - -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" msgstr "" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "غير مصرح به إضافة عضو إلى مجموعة %s" - -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "غير مصرح به  حذف أعضاء المجموعة %s" - -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "تم حذف أعضاء المجموعة." - -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "الرجاء اختيار اثنين من التنقيحات قبل القيام بالمقارنة." - -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "تاريخ مراجعة مجموعة CKAN" - -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "التغييرات الأخيرة في المجموعة CKAN:" - -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "سجل الرسالة:" - -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "أنت الآن تتابع {0}" - -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "أنت الآن لم تعد تتابع {0}" - -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "غير مصرح به مشاهدة أتباع %s" - -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "هذا الموقع هو حاليا خارج الخط. لم يتم بدء قاعدة البيانات." - -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "إضافة تحديث ملفك الشخصي و إضافة " +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" msgstr "" -" %s يستخدم عنوان البريد الإلكتروني الخاص بك إذا كنت تحتاج إلى إعادة تعيين " -"كلمة السر " -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" msgstr "" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "لم يتم العثور على مجموعة البيانات" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " +#: 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 "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "لم يتم العثور على الموارد" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." +#: 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/controllers/package.py:660 -msgid "You must add at least one data resource" -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] "" +msgstr[4] "" +msgstr[5] "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" +#: 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 "" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" +#: 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/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" msgstr "" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" msgstr "" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" msgstr "" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "تم حذف البيانات." - -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" msgstr "" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "تم حذف الموارد." - -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" msgstr "" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" msgstr "" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "التحميل غير متاح" - -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" msgstr "" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" msgstr "" -#: ckan/controllers/package.py:1495 -msgid "View not found" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" msgstr "" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" msgstr "" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" msgstr "" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" msgstr "" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" msgstr "" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" msgstr "" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" msgstr "" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" msgstr "" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" msgstr "" -#: ckan/controllers/tag.py:60 -msgid "Other" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" msgstr "" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" msgstr "" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" msgstr "" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" msgstr "" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" msgstr "" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" msgstr "" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" msgstr "" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" msgstr "" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" msgstr "" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" msgstr "" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" msgstr "" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" msgstr "" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" msgstr "" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" msgstr "" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" msgstr "" -#: ckan/controllers/user.py:386 -msgid "incorrect password" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" msgstr "" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" msgstr "" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" msgstr "" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" msgstr "" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" msgstr "" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" msgstr "" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" msgstr "" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" msgstr "" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" msgstr "" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" msgstr "" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" msgstr "" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" msgstr "" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" msgstr "" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" msgstr "" -#: ckan/controllers/user.py:640 -msgid "{0} not found" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" msgstr "" -#: ckan/controllers/user.py:654 -msgid "Everything" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" msgstr "" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" msgstr "" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "نص" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "موقع الكتروني" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" msgstr "" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" msgstr "" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." msgstr "" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "لم يتم العثور على وظيفة إثبات الأصالة %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "مدير" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "محرر" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "" +#: ckan/authz.py:202 +msgid "Member" +msgstr "عضو" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "تحتاج إلى أن تكون مسؤول النظام للقيام بالإدارة" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "عنوان الموقع" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "شكل" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "شعار الموقع" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "شعار علامة الموقع" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "نص الصفحة : حول" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "نص المقدمة" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "النص على الصفحة الرئيسية" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "css خاص" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "لقد تم إدراج CSS مخصصة في رأس الصفحة" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "الصفحة الرئيسية" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" msgstr "" +"لا يمكن تطهير الحزمة %s لأنها ترتبط في تنقيح %s الذي يشمل الحزم التي لا يمكن" +" حذف %s" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "مشكلة تطهير تنقيح %s : %s" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "معاينة" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +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] "" -msgstr[4] "" -msgstr[5] "" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "لم ينفذ العمل." -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "رفض الدخول" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "غير موجود" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "طلب غير صحيح" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "اسم الإجراء غير معروف: %s" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "خطأ JSON: %s" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "طلب غير صحيح المعلومات : %s" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "لا يمكن سرد كيان من هذا النوع: %s" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "لا يمكن قراءة كيان من هذا النوع: %s" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "لا يمكن إنشاء كيان جديد من هذا النوع: %s %s" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "غير قادر على إضافة مجموعة إلى فهرس البحث" -#: ckan/lib/formatters.py:59 -msgid "November" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "لا يمكن تحديث كيان من هذا النوع: %s" + +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "قادر على تحديث فهرس البحث" + +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "لا يمكن حذف كيان من هذا النوع: %s %s" + +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "لم يتم تحديد مراجعة" + +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "ليس هناك مراجعة ذات الرقم: %s" + +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "مفقود مصطلح البحث ('since_id = UUID' أو 'since_time = TIMESTAMP')" + +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "لا يمكن قراءة المعلمات: %r" + +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "خيارات البحث سيئة %s" + +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "سجل غير معروف: %s" + +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" msgstr "" -#: ckan/lib/formatters.py:63 -msgid "December" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "يجب أن يكون طلب params في شكل قاموس ترميز json." + +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "لم يتم العثور على المجموعة" + +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" msgstr "" -#: ckan/lib/formatters.py:116 -msgid "Just now" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" msgstr "" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "المنظمات" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "مجموعات" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "أوسمة" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "صيغ" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "تراخيص" + +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "المستخدم %r غير مخول لتحرير %s" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "غير مخول لإجراء التحديث الشامل" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "غير مخول إنشاء مجموعة" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "خطأ سلامة" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "المستخدم %r غير مخول لتحرير أذون %s" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "حذف المجموعة غير مصرح به %s" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "تم حذف المنظمة." -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "تم حذف المجموعة." -#: ckan/lib/formatters.py:189 -msgid "{n}" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." msgstr "" -#: ckan/lib/formatters.py:191 -msgid "{k}k" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" msgstr "" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "غير مصرح به إضافة عضو إلى مجموعة %s" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "غير مصرح به  حذف أعضاء المجموعة %s" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "تم حذف أعضاء المجموعة." -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "الرجاء اختيار اثنين من التنقيحات قبل القيام بالمقارنة." -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "تاريخ مراجعة مجموعة CKAN" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "التغييرات الأخيرة في المجموعة CKAN:" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "سجل الرسالة:" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "أنت الآن تتابع {0}" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "أنت الآن لم تعد تتابع {0}" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "غير مصرح به مشاهدة أتباع %s" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "هذا الموقع هو حاليا خارج الخط. لم يتم بدء قاعدة البيانات." -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "إضافة تحديث ملفك الشخصي و إضافة " + +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." msgstr "" +" %s يستخدم عنوان البريد الإلكتروني الخاص بك إذا كنت تحتاج إلى إعادة تعيين " +"كلمة السر " -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" msgstr "" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "لم يتم العثور على مجموعة البيانات" -#: ckan/lib/mailer.py:39 +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 #, python-format -msgid "%s <%s>" +msgid "Invalid revision format: %r" msgstr "" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" msgstr "" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" msgstr "" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " msgstr "" -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" msgstr "" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "يجب إضافة مورد بيانات واحدة على الأقل" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" msgstr "" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." msgstr "" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." msgstr "" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "تم حذف البيانات." -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "تم حذف الموارد." + +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" msgstr "" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" msgstr "" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "التحميل غير متاح" + +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" msgstr "" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" msgstr "" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." +#: ckan/controllers/package.py:1486 +msgid "View not found" msgstr "" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" msgstr "" -#: ckan/logic/validators.py:199 -msgid "Resource" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" msgstr "" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" msgstr "" -#: ckan/logic/validators.py:267 -msgid "Activity type" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." msgstr "" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" msgstr "" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." msgstr "" -#: ckan/logic/validators.py:337 +#: ckan/controllers/revision.py:110 #, python-format -msgid "Must be at least %s characters long" +msgid "Datasets affected: %s.\n" msgstr "" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" msgstr "" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "آخر" + +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "وسم المصطلح غير موجود" + +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." msgstr "" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" msgstr "" -#: ckan/logic/validators.py:365 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." msgstr "" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" msgstr "" -#: ckan/logic/validators.py:375 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Version must be a maximum of %i characters long" +msgid "Unauthorized to edit user %s" msgstr "" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "المستخدم ليس موجود" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" msgstr "" -#: ckan/logic/validators.py:415 +#: ckan/controllers/user.py:245 #, python-format -msgid "Tag \"%s\" length is less than minimum %s" +msgid "Unauthorized to create user %s" msgstr "" -#: ckan/logic/validators.py:419 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." msgstr "" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:265 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." msgstr "" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" +#: ckan/controllers/user.py:320 +#, python-format +msgid "User %s not authorized to edit %s" msgstr "" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" msgstr "" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "كلمة المرور القديمة" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "كلمة سر خاطئة" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." msgstr "" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." msgstr "" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." +#: ckan/controllers/user.py:490 +#, python-format +msgid "\"%s\" matched several users" msgstr "" -#: ckan/logic/validators.py:619 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Name must be at least %s characters long" +msgid "No such user: %s" msgstr "" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." msgstr "" -#: ckan/logic/validators.py:633 +#: ckan/controllers/user.py:503 #, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" +msgid "Could not send reset link: %s" msgstr "" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." msgstr "" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." msgstr "" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "تم إعادة تعيين كلمة المرور الخاصة بك." -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "يجب أن تكون كلمة المرور الخاصة بك 4 أحرف أو أكثر." -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." msgstr "" -#: ckan/logic/validators.py:711 -msgid "role does not exist." +#: ckan/controllers/user.py:568 +msgid "You must provide a password" msgstr "" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." +#: ckan/controllers/user.py:636 +msgid "Follow item not found" msgstr "" -#: ckan/logic/validators.py:746 -msgid "Not a list" +#: ckan/controllers/user.py:640 +msgid "{0} not found" msgstr "" -#: ckan/logic/validators.py:749 -msgid "Not a string" +#: ckan/controllers/user.py:654 +msgid "Everything" msgstr "" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "قيمة مفقودة" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." msgstr "" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" msgstr "" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" msgstr "" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" msgstr "" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" msgstr "" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" msgstr "" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" msgstr "" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" msgstr "" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" msgstr "" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" msgstr "" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" msgstr "" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" msgstr "" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" msgstr "" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" msgstr "" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "معاينة" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -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] "" +msgstr[4] "" +msgstr[5] "" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "كانون الثاني" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "" +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "شباط" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "" +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "آذار" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." +#: ckan/lib/formatters.py:31 +msgid "April" msgstr "" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" +#: ckan/lib/formatters.py:35 +msgid "May" msgstr "" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" +#: ckan/lib/formatters.py:39 +msgid "June" msgstr "" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." +#: ckan/lib/formatters.py:43 +msgid "July" msgstr "" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." +#: ckan/lib/formatters.py:47 +msgid "August" msgstr "" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" +#: ckan/lib/formatters.py:51 +msgid "September" msgstr "" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" +#: ckan/lib/formatters.py:55 +msgid "October" msgstr "" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." +#: ckan/lib/formatters.py:59 +msgid "November" msgstr "" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." +#: ckan/lib/formatters.py:63 +msgid "December" msgstr "" -#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 -#, python-format -msgid "User %s not authorized to create packages" +#: ckan/lib/formatters.py:114 +msgid "Just now" msgstr "" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" msgstr "" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" msgstr "" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" msgstr "" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" msgstr "" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" msgstr "" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" msgstr "" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." +#: ckan/lib/formatters.py:187 +msgid "{n}" msgstr "" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" +#: ckan/lib/formatters.py:189 +msgid "{k}k" msgstr "" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" +#: ckan/lib/formatters.py:191 +msgid "{m}M" msgstr "" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" +#: ckan/lib/formatters.py:193 +msgid "{g}G" msgstr "" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" +#: ckan/lib/formatters.py:195 +msgid "{t}T" msgstr "" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" +#: ckan/lib/formatters.py:197 +msgid "{p}P" msgstr "" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." +#: ckan/lib/formatters.py:199 +msgid "{e}E" msgstr "" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" msgstr "" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" msgstr "" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" msgstr "" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" msgstr "" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." msgstr "" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." msgstr "" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." msgstr "" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: ckan/logic/auth/get.py:176 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to read group %s" -msgstr "" - -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." +msgid "%s <%s>" msgstr "" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" msgstr "" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" msgstr "" -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" msgstr "" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" msgstr "" -#: ckan/logic/auth/update.py:145 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to change state of group %s" +msgid "The input field %(name)s was not expected." msgstr "" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" msgstr "" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" msgstr "" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" msgstr "" -#: ckan/logic/auth/update.py:216 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to change state of revision" +msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" msgstr "" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" msgstr "" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" msgstr "" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/model/license.py:222 -msgid "License not specified" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" msgstr "" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" msgstr "" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" msgstr "" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" msgstr "" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." msgstr "" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" msgstr "" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:200 +msgid "Resource" msgstr "" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." msgstr "" -#: ckan/model/license.py:301 -msgid "Other (Open)" +#: ckan/logic/validators.py:268 +msgid "Activity type" msgstr "" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" msgstr "" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" msgstr "" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" msgstr "" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" msgstr "" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." msgstr "" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" +msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" +msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" +msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" +msgid "Duplicate key \"%s\"" msgstr "" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" msgstr "" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" +msgid "Tag \"%s\" length is less than minimum %s" msgstr "" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" +msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" +msgid "Tag \"%s\" must not be uppercase" msgstr "" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" msgstr "" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "إلغاء" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "تابع" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" +#: ckan/logic/validators.py:662 +msgid "No tag name" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" +#: ckan/logic/validators.py:712 +msgid "role does not exist." msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" +#: ckan/logic/validators.py:747 +msgid "Not a list" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" +#: ckan/logic/validators.py:750 +msgid "Not a string" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "تحميل ملف" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." msgstr "" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." msgstr "" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "تعديل" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "إظهار المزيد" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "إخفاء" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" msgstr "" -#: ckan/templates/footer.html:9 -msgid "About {0}" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" msgstr "" -#: ckan/templates/footer.html:15 -msgid "CKAN API" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." msgstr "" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." msgstr "" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -#: ckan/templates/header.html:19 -msgid "View profile" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" msgstr "" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "REST API: Delete %s" +msgstr "" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" msgstr "" -#: ckan/templates/header.html:37 -msgid "Settings" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "خروج" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "دخول" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "تسجيل" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." msgstr "" -#: ckan/templates/header.html:116 -msgid "Search Datasets" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "بحث" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "" -#: ckan/templates/page.html:6 -msgid "Skip to content" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "" + +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." msgstr "" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "إدارة" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" msgstr "" -#: ckan/templates/admin/base.html:9 -msgid "Config" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" msgstr "" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" msgstr "" -#: ckan/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/templates/admin/config.html:17 -msgid "Reset" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." msgstr "" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" msgstr "" -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:119 #, 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.

" +msgid "User %s not authorized to create groups" msgstr "" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" 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

" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" msgstr "" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." msgstr "" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "انقر هنا لمزيد من المعلومات" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "تنزيل الموارد" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:162 #, python-format -msgid "No handler defined for data type: %(type)s." +msgid "User %s not authorized to edit permissions of group %s" msgstr "" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" msgstr "" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" msgstr "" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" msgstr "" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" msgstr "" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "كامل" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" msgstr "" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "كبير" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" +#: ckan/model/license.py:222 +msgid "License not specified" msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" msgstr "" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" msgstr "" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "" + +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" msgstr "" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" +#: ckan/model/license.py:301 +msgid "Other (Open)" 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" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" msgstr "" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" msgstr "" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:16 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -msgid "Confirm Delete" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" msgstr "" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" 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}?" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" msgstr "" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" 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" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" msgstr "" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" msgstr "" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" msgstr "" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" msgstr "" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" msgstr "" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" msgstr "" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" msgstr "" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" 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" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" msgstr "" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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] "" +msgstr[4] "" +msgstr[5] "" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" msgstr "" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" msgstr "" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" msgstr "" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" msgstr "" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "تابع" + +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" msgstr "" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "حفظ" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" msgstr "" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" msgstr "" -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" msgstr "" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" msgstr "" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." msgstr "" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "تحميل ملف" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" msgstr "" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" msgstr "" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" msgstr "" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" msgstr "" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" msgstr "" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" msgstr "" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "اسم" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" msgstr "" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "تعديل" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "إظهار المزيد" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "إخفاء" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" +#: ckan/templates/footer.html:9 +msgid "About {0}" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." +#: ckan/templates/footer.html:15 +msgid "CKAN API" msgstr "" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" msgstr "" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "" + +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "" + +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -2670,1846 +2625,1997 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" msgstr "" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" msgstr "" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" +#: ckan/templates/header.html:37 +msgid "Settings" msgstr "" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "خروج" + +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "دخول" + +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "تسجيل" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" msgstr "" -#: ckan/templates/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. " +#: ckan/templates/header.html:116 +msgid "Search Datasets" msgstr "" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "بحث" + +#: ckan/templates/page.html:6 +msgid "Skip to content" msgstr "" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" msgstr "" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "اقرأ المزيد" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "إدارة" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" +#: ckan/templates/admin/base.html:9 +msgid "Config" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" msgstr "" -#: ckan/templates/home/index.html:4 -msgid "Welcome" +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/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/

" +#: ckan/templates/admin/config.html:16 +msgid "Reset" msgstr "" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:33 +#, 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/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 " +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" msgstr "" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" msgstr "" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" +#: 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/home/snippets/search.html:6 -msgid "Search data" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" msgstr "" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" msgstr "" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "انقر هنا لمزيد من المعلومات" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "تنزيل الموارد" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." msgstr "" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." msgstr "" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/dataviewer/snippets/no_preview.html:12 #, python-format -msgid "" -"You can use Markdown formatting here" +msgid "No handler defined for data type: %(type)s." msgstr "" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" msgstr "" -#: ckan/templates/macros/form.html:265 -msgid "Custom" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" msgstr "" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" msgstr "" -#: ckan/templates/macros/form.html:395 -msgid "Required field" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" msgstr "" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "كامل" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" msgstr "" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "كبير" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" msgstr "" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" msgstr "" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" msgstr "" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" msgstr "" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" msgstr "" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" msgstr "" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" msgstr "" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "مسودة" - -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "خاص" - -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" msgstr "" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" msgstr "" -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" +#: 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/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" msgstr "" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" msgstr "" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" +#: 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/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" msgstr "" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" +#: 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/organization/member_new.html:62 -msgid "Update Member" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" msgstr "" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" msgstr "" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "إنشاء منظمة" +#: ckan/templates/group/edit_base.html:23 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" +msgstr "" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "تحديث منظمة" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "إنشاء منظمة" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." msgstr "" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" 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).

" +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" 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. " +#: 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/organization/snippets/organization_form.html:10 -msgid "My Organization" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "منظمتي" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "معلومات قليلة عن منظمتي ..." +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "حفظ المنظمة" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" msgstr "" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" 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. " +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" msgstr "" -#: ckan/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" msgstr "" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" +#: ckan/templates/group/member_new.html:80 +msgid "" +"

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

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

" msgstr "" -#: ckan/templates/package/edit_base.html:16 -msgid "View 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/package/edit_base.html:20 -msgid "Edit metadata" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" 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" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" msgstr "" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." msgstr "" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" msgstr "" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" msgstr "" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "اسم" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" msgstr "" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" msgstr "" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." msgstr "" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" msgstr "" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" msgstr "" -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" msgstr "" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" 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" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" msgstr "" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/group/snippets/helper.html:8 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +" 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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" msgstr "" -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" msgstr "" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "اقرأ المزيد" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" msgstr "" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" msgstr "" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" msgstr "" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" msgstr "" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" +#: ckan/templates/home/index.html:4 +msgid "Welcome" msgstr "" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" +#: 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/package/resource_data.html:62 -msgid "Upload Log" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" msgstr "" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" +#: 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/package/resource_data.html:81 -msgid "End of log" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" msgstr "" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" msgstr "" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" msgstr "" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" msgstr "" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" msgstr "" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" msgstr "" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" msgstr "" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" msgstr "" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "تحميل" - -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" msgstr "" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" msgstr "" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" +msgid "" +"You can use Markdown formatting here" msgstr "" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." +#: ckan/templates/macros/form.html:265 +msgid "This field is required" msgstr "" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" +#: ckan/templates/macros/form.html:265 +msgid "Custom" msgstr "" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" msgstr "" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" +#: ckan/templates/macros/form.html:395 +msgid "Required field" msgstr "" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" msgstr "" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" msgstr "" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" msgstr "" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" msgstr "" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" msgstr "" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" msgstr "" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" msgstr "" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" msgstr "" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "ترخيص" - -#: ckan/templates/package/resource_views.html:10 -msgid "New view" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" msgstr "" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" msgstr "" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "مسودة" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "خاص" -#: ckan/templates/package/search.html:52 -msgid "API" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" msgstr "" -#: ckan/templates/package/search.html:53 -msgid "API Docs" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" msgstr "" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" +#: 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/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. " +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" 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). " +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." msgstr "" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" msgstr "" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" msgstr "" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "معلومات إضافية" - -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "مصدر" - -#: ckan/templates/package/snippets/additional_info.html:37 -#: ckan/templates/package/snippets/additional_info.html:42 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -msgid "Maintainer" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" +#: ckan/templates/organization/member_new.html:81 +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/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "إنشاء منظمة" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." -msgstr "" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "تحديث منظمة" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "إنشاء منظمة" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:19 -msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" +#: 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/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" +#: 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/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "منظمتي" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "معلومات قليلة عن منظمتي ..." -#: ckan/templates/package/snippets/package_basic_fields.html:41 +#: ckan/templates/organization/snippets/organization_form.html:60 msgid "" -" License definitions and additional information can be found at opendefinition.org " +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" +#: ckan/templates/organization/snippets/organization_form.html:63 +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/snippets/package_basic_fields.html:74 -msgid "No organization" +#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" +#: 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/snippets/package_basic_fields.html:111 -msgid "Active" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" 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." +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" msgstr "" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" msgstr "" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" +#: 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/snippets/package_metadata_fields.html:10 -msgid "1.0" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" 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" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" 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" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" msgstr "" -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" +#: 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/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "بعض الملاحظات المفيدة حول البيانات" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" +#: 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/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: 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/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "نهاية" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "تحميل" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" msgstr "" -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "استكشف" - -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." msgstr "" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_view.html:75 -msgid "Code" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" msgstr "" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" msgstr "" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" 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" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" msgstr "" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" msgstr "" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "ترخيص" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" msgstr "" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, python-format +msgid "" +"

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

" msgstr "" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/search.html:52 +msgid "API" msgstr "" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" +#: ckan/templates/package/search.html:53 +msgid "API Docs" msgstr "" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" msgstr "" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" +#: 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/revision/diff.html:54 -msgid "No Differences" +#: 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/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" msgstr "" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" msgstr "" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" msgstr "" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "معلومات إضافية" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "مصدر" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" +#: 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/snippets/activity_item.html:3 -msgid "New activity item" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" +#: 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/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." msgstr "" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." +#: 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/snippets/disqus_trackback.html:2 -msgid "Trackback URL" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" msgstr "" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" msgstr "" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" msgstr "" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" msgstr "" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" msgstr "" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" msgstr "" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" msgstr "" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" msgstr "" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" msgstr "" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -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/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" msgstr "" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" msgstr "" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" msgstr "" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" 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] "" -msgstr[4] "" -msgstr[5] "" +#: 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/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" 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] "" -msgstr[4] "" -msgstr[5] "" +#: 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/snippets/search_result_text.html:18 -msgid "No datasets found" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" 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] "" -msgstr[4] "" -msgstr[5] "" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" 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] "" -msgstr[4] "" -msgstr[5] "" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" 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] "" -msgstr[4] "" -msgstr[5] "" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "بعض الملاحظات المفيدة حول البيانات" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" 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] "" -msgstr[4] "" -msgstr[5] "" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" msgstr "" -#: ckan/templates/snippets/social.html:5 -msgid "Social" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" msgstr "" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" 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:82 -msgid "Email" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" msgstr "" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" msgstr "" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" msgstr "" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" msgstr "" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" msgstr "" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "نهاية" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" msgstr "" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" +#: 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/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "استكشف" + +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" msgstr "" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" msgstr "" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." msgstr "" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" msgstr "" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" 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" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" msgstr "" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" msgstr "" -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" msgstr "" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" msgstr "" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" msgstr "" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" +#: 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/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" msgstr "" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" msgstr "" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" msgstr "" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" msgstr "" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" msgstr "" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" msgstr "" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" msgstr "" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" msgstr "" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" 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" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" msgstr "" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" msgstr "" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." +#: ckan/templates/revision/read.html:64 +msgid "Changes" msgstr "" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" msgstr "" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" msgstr "" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" msgstr "" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" msgstr "" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" msgstr "" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" msgstr "" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." msgstr "" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" msgstr "" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" msgstr "" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" msgstr "" -#: ckan/templates/user/new.html:6 -msgid "Registration" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" msgstr "" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" msgstr "" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" msgstr "" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" msgstr "" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" msgstr "" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." msgstr "" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" msgstr "" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" msgstr "" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "أرسل" + +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" msgstr "" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" msgstr "" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" msgstr "" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" msgstr "" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." +#: ckan/templates/snippets/search_result_text.html:15 +msgid "{number} dataset found for \"{query}\"" +msgid_plural "{number} datasets found for \"{query}\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" msgstr "" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" msgstr "" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" msgstr "" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" msgstr "" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" msgstr "" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" msgstr "" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" +#: ckan/templates/snippets/social.html:5 +msgid "Social" msgstr "" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" msgstr "" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" +#: 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:82 +msgid "Email" msgstr "" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" msgstr "" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" msgstr "" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" msgstr "" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" msgstr "" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" msgstr "" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" msgstr "" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" msgstr "" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" msgstr "" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." msgstr "" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" +#: 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:16 +msgid "Create one now?" msgstr "" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." msgstr "" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." msgstr "" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +#: 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 "" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." +#: ckan/templates/user/edit.html:17 +msgid "Account Info" msgstr "" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" +#: ckan/templates/user/edit.html:19 +msgid "" +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" 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" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" msgstr "" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" msgstr "" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" msgstr "" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: 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 "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" +#: ckan/templates/user/new.html:6 +msgid "Registration" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" msgstr "" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" msgstr "" diff --git a/ckan/i18n/bg/LC_MESSAGES/ckan.mo b/ckan/i18n/bg/LC_MESSAGES/ckan.mo index acc3473e70f..62128d564ab 100644 Binary files a/ckan/i18n/bg/LC_MESSAGES/ckan.mo and b/ckan/i18n/bg/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/bg/LC_MESSAGES/ckan.po b/ckan/i18n/bg/LC_MESSAGES/ckan.po index 16a58d1414a..46195731f1e 100644 --- a/ckan/i18n/bg/LC_MESSAGES/ckan.po +++ b/ckan/i18n/bg/LC_MESSAGES/ckan.po @@ -1,4569 +1,4664 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Упълномощаващата функция не е открита: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Завършен" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Администратор" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Изчакващ" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Редактор" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Предоставяне" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Член" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Грешка" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Трябва да имате права на системен администратор" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Все още не е качено" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Заглавие на страницата" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Ресурсът не беше намерен" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Стил" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Нямате право на достъп до тази странца" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Мото на сайта" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Качване в DataStore хранилище" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Лого на сайта" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Грешка при качването:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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 "За портала" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Грешка:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Текст за страница „Относно“" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Въвеждащ текст" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Статус" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Текст на начална страница" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Последно обновяване" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Персонализиран CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Никога" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Персонализиран CSS, вмъкнат в хедъра на страницата" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Качване на лог-файл" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Начална страница" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Детайли" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Край на лог-файла" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Ресурсът от DataStore хранилището не е намерен" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Пакет %s не може да бъде прочистен, тъй като свързаната ревизия %s съдържа " -"пакети, които не са изтрити %s" -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Проблем при прочистване на ревизия %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Ресурс \"{0}\" не е намерен." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Прочистването е завършено" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Потребител {0} няма право да обновява ресурс {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Действието не е приложимо." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Нямате право на достъп до тази странца" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "Достъп до ресурсни данни чрез уеб API със силна поддръжка на заявки." -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Достъп отказан" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Данните не бяха намерени" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Крайни точки" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Неправилна заявка" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Това Data API е достъпно само чрез следните действия от CKAN API за " +"действия." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Неизвестно име на действие: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Създаване" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON Грешка: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Обновяване / Вмъкване" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Неправилни данни в заявка: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Заявка" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Не може да се извежда списък на обекти от този тип: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Заявка (чрез SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Не могат да се четат обекти от този тип: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Подаване на заявка" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Не могат да се създават обекти от този тип: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Пример за заявка (първите 5 резултата)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Пакетът данни не може да бъде включен в индекса за търсене" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Пример за заявка (резултати, съдържащи 'jones') " -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Не могат да се обновяват обекти от този тип: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Пример за заявка (посредством SQL декларация)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Индексът за търсене не може да бъде обновен." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Пример: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Не могат да се изтриват обекти от този тип: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"Обикновена заявка по технологията ajax (JSONP) към API на данните чрез " +"jQuery." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Няма посочена ревизия" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Пример: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Няма ревизия с индентификатор: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" msgstr "" -"Липсващо условие на търсене ('since_id=UUID' или 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Не могат да се прочетат параметри: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Описание" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Неправилна опция на търсене: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Запазване" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Неизвестен регистър: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Неправилно зададена qjson стойност: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Параметрите на заявката трябва да са във формат на JSON речник." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Групата не е намерена" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Зареждане...." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Организацията не е намерена" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Data API" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Неправилен тип на групата" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Организации" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Групи" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Етикети" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Формати" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Лицензи" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Нямате право да извършвате цялостно обновяване." +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Уместност" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Нямате право да създадавате група" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Потребител %r няма право да редактира %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Грешка в целостта" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Последна промяна" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Потребител %r няма право да редактира права за %s" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Нямате право да изтривате група %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Организацията беше изтрита." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Популярни" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -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 "Персонализиран текст" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "Персонализиран текст" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Нямате право да добавяте член към група %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Код на държавата" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Нпмате право да изтривате членове на група %s" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Член на групата беше изтрит" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -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/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "История на ревизии на CKAN група" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Последни промени в CKAN група" +#: 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 набора от данни" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Вече следвате {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Последователи" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Вече не следвате {0}" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ресурси" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Нямате право да виждате тези последователи %s" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Изображение" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" msgstr "" -"В момента тази страница е недостъпна. Базата данни не е инициализирана." -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -"Моля, обновете профила си и добавете своя имейл адрес." -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" msgstr "" -"%s използвайte своя имейл адрес, ако имате нужда да възстановите паролата " -"си." -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" msgstr "" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Параметърът \"{parameter_name}\" не е цяло число" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Наборът от данни не е намерен" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Невалиден формат на ревизия: %r" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" msgstr "" -"Разглеждането на {package_type} набори от данни във формат {format} не се " -"поддържа (не е намерен шаблонен файл {file} )." -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Нямате право да четете пакет %s" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "История на ревизии на CKAN набор от данни" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Последни промени в CKAN набор от данни:" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Нямате право да създавате пакет" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Нямате право да редактирате ресурс" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Ресурсът не беше намерен" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Нямате право да обновявате набор от данни." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Наборът от данни {id} не беше намерен." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Трябва да добавите поне един ресурс от данни." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Грешка" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Нямате право да създавате ресурс" - -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" msgstr "" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Пакетът данни не може да бъде включен в индекса за търсене." - -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Индексът за търсене не може да бъде обновен." - -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Наборът от данни беше изтрит." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Нямате право да изтриете пакет %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Ресурсът е изтрит." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Нямате право да изтриете ресурс %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" msgstr "" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Не е намерена информация за ресурса" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Общ брой набори от данни" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Не са налични файлове за сваляне" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Дата" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Нямате право да четете набор от данни %s" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Общо набори от данни" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Нямате право да четете ресурс %s" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Брой седмични ревизии на набор от данни" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Нямате право да редактирате ресурс" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Всички ревизии на набор от данни" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Изгледът не е намерен" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Нови набори от данни" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Набори от данни с най-висока оценка" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Средно висока оценка" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Брой на оценки" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Не е дефиниран предварителен изглед." +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Без оценка" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "История на ревизии на CKAN хранилище" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Най-често редактирани набори от данни" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Последни промени в CKAN хранилище." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Набор данни" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Засегнати набори от данни: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Брой редакции" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Ревизията е обновена" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Няма редактирани набори от данни" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Други" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Най-големи групи" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Етикетът не е намерен" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Група" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Потребителят не е намерен" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Брой набори от данни" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Нямате право да се регистрирате като потребител." +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Няма групи" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Нямате право да създавате потребител" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Най-визоко класирани етикети" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Нямате право да изтривате потребител с идентификатор \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Име на етикет" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Не е посочен потребител" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Брой набори от данни" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Нямате право да обработвате потребител %s" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Профилът е обновен" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Потребител" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Нямате право да създавате потребител %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Меню Статистика" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Неправилна Captcha. Моля, опитайте отново." +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Общ брой набори от данни" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" msgstr "" -"Потребител \"%s\" вече е регистриран, но Вие все още сте в системата с " -"предишния акаунт \"%s\"" - -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Нямате право да редактирате потребител" - -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "Потребител %s няма право да редактира %s" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" msgstr "" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" msgstr "" -#: ckan/controllers/user.py:386 -msgid "incorrect password" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" msgstr "" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Вход неуспешен. Грешно потребителско име или парола." - -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Нямате право да заявявате възстановяване на парола." +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Вашият браузър не поддържа iframes." -#: ckan/controllers/user.py:490 +#: ckan/authz.py:182 #, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" съвпадащи потребители" +msgid "Authorization function not found: %s" +msgstr "Упълномощаващата функция не е открита: %s" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Няма такъв потребител: %s" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Администратор" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Моля, проверете входящата си поща за получен код за възстановяване." +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Редактор" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Не може да се изпрати линк за възстановяване: %s" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Член" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Нямате право да възстановявате парола." - -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Невалиден код за възстановяване. Моля, опитайте отново." - -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Вашата парола беше възстановена." - -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Паролата трябва да е с дължина най-малко 4 символа." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Трябва да имате права на системен администратор" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Въведените пароли не съвпадат." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Заглавие на страницата" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Трябва да предоставите парола" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Стил" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Елементът за следене не е намерен" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Мото на сайта" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} не е намерен" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Лого на сайта" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Всичко" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Липсваща стойност" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Текст за страница „Относно“" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Пренасочването към външен сайт не е позволено." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Въвеждащ текст" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} добави таг {tag} към набора от данни {dataset}" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Текст на начална страница" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} обнови групата {group}" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Персонализиран CSS" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} обнови организацията {organization}" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Персонализиран CSS, вмъкнат в хедъра на страницата" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} обнови набора от данни {dataset}" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Начална страница" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" msgstr "" -"{actor} промени допълнителната информация {extra} от набора от данни " -"{dataset}" - -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} обнови ресурса {resource} в набора от данни {dataset}" +"Пакет %s не може да бъде прочистен, тъй като свързаната ревизия %s съдържа " +"пакети, които не са изтрити %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} обнови своя профил" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Проблем при прочистване на ревизия %s: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} изтри групата {group}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Прочистването е завършено" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} изтри организацията {organization}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Действието не е приложимо." -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} изтри набора от данни {dataset}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Достъп отказан" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" -"{actor} изтри допълнителната информация {extra} от набора от данни {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Данните не бяха намерени" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} изтри ресурса {resource} от набора от данни {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Неправилна заявка" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} създаде групата {group}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Неизвестно име на действие: %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} създаде организацията {organization}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Грешка: %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} създаде набора от данни {dataset}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Неправилни данни в заявка: %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" -"{actor} добави допълнителна информация {extra} към набора от данни {dataset}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Не може да се извежда списък на обекти от този тип: %s" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} добави ресурс {resource} към набора от данни {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Не могат да се четат обекти от този тип: %s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} се регистрира" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Не могат да се създават обекти от този тип: %s %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} премахна етикет {tag} от етикет от данни {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Пакетът данни не може да бъде включен в индекса за търсене" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} започна да следва {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Не могат да се обновяват обекти от този тип: %s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} започна да следва {user}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Индексът за търсене не може да бъде обновен." -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} започна да следва {group}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Не могат да се изтриват обекти от този тип: %s %s" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Преглед" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +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/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Няма ревизия с индентификатор: %s" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "януари" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "" +"Липсващо условие на търсене ('since_id=UUID' или 'since_time=TIMESTAMP')" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "февруари" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Не могат да се прочетат параметри: %r" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "март" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Неправилна опция на търсене: %s" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "април" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Неизвестен регистър: %s" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "май" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Неправилно зададена qjson стойност: %r" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "юни" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Параметрите на заявката трябва да са във формат на JSON речник." -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "юли" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Групата не е намерена" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "август" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Организацията не е намерена" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "септември" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Неправилен тип на групата" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "октомври" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Организации" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "ноември" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Групи" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "декември" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Етикети" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Току-що" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Формати" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "преди {mins} минута" -msgstr[1] "преди {mins} минути" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Лицензи" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "преди {hours} час" -msgstr[1] "преди {hours} часа" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Потребител %r няма право да редактира %s" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "преди {days} ден" -msgstr[1] "преди {days} дена" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Нямате право да извършвате цялостно обновяване." -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "преди {months} месец" -msgstr[1] "преди {months} месеца" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Нямате право да създадавате група" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "преди повече от {years} година" -msgstr[1] "преди повече от {years} години" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Грешка в целостта" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Потребител %r няма право да редактира права за %s" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Нямате право да изтривате група %s" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Организацията беше изтрита." -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Групата беше изтрита." -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Нямате право да добавяте член към група %s" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Нпмате право да изтривате членове на група %s" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Член на групата беше изтрит" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Изберете две ревизии, преди да направите сравнение." -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "История на ревизии на CKAN група" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Последни промени в CKAN група" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Журнално съобщение: " -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Вече следвате {0}" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Вече не следвате {0}" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Нямате право да виждате тези последователи %s" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Обновете своя аватара на gravatar.com" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"В момента тази страница е недостъпна. Базата данни не е инициализирана." -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Непознат" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Моля, обновете профила си и добавете своя имейл адрес." -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Ресурс без име" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s използвайte своя имейл адрес, ако имате нужда да възстановите паролата " +"си." -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Създаден е нов набор от данни" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Редактирани ресурси." +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Параметърът \"{parameter_name}\" не е цяло число" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Редактирани настройки." +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Наборът от данни не е намерен" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} преглеждане" -msgstr[1] "{number} преглеждания" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Невалиден формат на ревизия: %r" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} скорошно преглеждане" -msgstr[1] "{number} последни преглеждания" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/mailer.py:39 +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 #, python-format -msgid "%s <%s>" -msgstr "%s <%s>" - -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Имейл адрес на получателя не е наличен!" +msgid "Unauthorized to read package %s" +msgstr "Нямате право да четете пакет %s" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "организация" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "История на ревизии на CKAN набор от данни" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "група" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Последни промени в CKAN набор от данни:" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Липсваща стойност" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Нямате право да създавате пакет" -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "Полето за въвеждане '%(name)s' не беше очаквано." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Нямате право да редактирате ресурс" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Моля, въведете целочислена стойност" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Нямате право да обновявате набор от данни." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Ресурси" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Наборът от данни {id} не беше намерен." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Невалиден/ни ресурс/и към пакет" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Трябва да добавите поне един ресурс от данни." -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Допълнителни" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Нямате право да създавате ресурс" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Речников етикет \"%s\" не съществува" - -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Потребител" - -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Набор данни" - -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Група" - -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Не може да бъде разчетен като валиден JSON" - -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Организацията не съществува" - -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Не можете да добавите набор данни към тази организация" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Пакетът данни не може да бъде включен в индекса за търсене." -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Невалидна целочислена стойност" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Индексът за търсене не може да бъде обновен." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Трябва да бъде естествено число" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Наборът от данни беше изтрит." -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Трябва да бъде положително цяло число" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Нямате право да изтриете пакет %s" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Невалиден формат на дата" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Ресурсът е изтрит." -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Не се допускат връзки в log_message." +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Нямате право да изтриете ресурс %s" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" msgstr "" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Ресурси" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Не е намерена информация за ресурса" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Това име или идентификатор на група не съществува." +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Не са налични файлове за сваляне" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Тип дейност" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Нямате право да четете набор от данни %s" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Името трябва да бъде низ." +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Нямате право да четете ресурс %s" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Това име не може да бъде използвано" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Нямате право да редактирате ресурс" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Изгледът не е намерен" + +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" msgstr "" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Името може да е най-много %i символа" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" msgstr "" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Този URL вече е в употреба." +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Не е дефиниран предварителен изглед." -#: ckan/logic/validators.py:365 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Името \"%s\" е по-кратко от минимално допустимите %s символа" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "История на ревизии на CKAN хранилище" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Името \"%s\" е по-дълго от максимално допустимите %s символа" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Последни промени в CKAN хранилище." -#: ckan/logic/validators.py:375 +#: ckan/controllers/revision.py:110 #, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Версията не може да бъде по-дълга от %i символа" +msgid "Datasets affected: %s.\n" +msgstr "Засегнати набори от данни: %s.\n" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Дублиращ се ключ \"%s\"" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Ревизията е обновена" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Вече съществува група с това име" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Други" -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Етикет \"%s\" е по-кратък от минимално допустимите %s символа" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Етикетът не е намерен" -#: ckan/logic/validators.py:419 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Етикет \"%s\" е по-дълъг от максимално допустимите %i символа" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Нямате право да се регистрирате като потребител." -#: ckan/logic/validators.py:427 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" -"Етикет \"%s\" трябва да съдържа само малки букви на латиница, цифри и " -"символите за тире и долна черта: -_" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Нямате право да създавате потребител" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Етикет \"%s\" не трябва да съдържа главни букви" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Нямате право да изтривате потребител с идентификатор \"{user_id}\"." -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Потребителското име трябва да бъде низ" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Не е посочен потребител" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Това потребителско име не е налично." +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Нямате право да обработвате потребител %s" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Моля, въведете двете пароли:" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Потребителят не е намерен" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Паролата трябва да е низ" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Профилът е обновен" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Паролата трябва да е с дължина най-малко 4 символа" +#: ckan/controllers/user.py:245 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Нямате право да създавате потребител %s" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Въведените пароли не съвпадат" +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Неправилна Captcha. Моля, опитайте отново." -#: ckan/logic/validators.py:610 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Редакцията не е приета, тъй като прилича на спам. Моля, избягвайте връзки " -"(URL адреси) в описанието." +"Потребител \"%s\" вече е регистриран, но Вие все още сте в системата с " +"предишния акаунт \"%s\"" -#: ckan/logic/validators.py:619 +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Нямате право да редактирате потребител" + +#: ckan/controllers/user.py:320 #, python-format -msgid "Name must be at least %s characters long" -msgstr "Името трябва да е най-малко %s символа" +msgid "User %s not authorized to edit %s" +msgstr "Потребител %s няма право да редактира %s" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Това име на речник вече се използва" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "" -#: ckan/logic/validators.py:633 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" msgstr "" -"Стойността на ключа не може да бъде променена от %s на %s. Ключът може само " -"да се чете, без да се променя." -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Етикет за речник не беше намерен." +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Таг %s не принадлежи на речник %s" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Вход неуспешен. Грешно потребителско име или парола." -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Няма име на етикет" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Нямате право да заявявате възстановяване на парола." -#: ckan/logic/validators.py:674 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Таг %s вече е бил добавен към речник %s" +msgid "\"%s\" matched several users" +msgstr "\"%s\" съвпадащи потребители" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Моля, въведете валиден URL адрес" +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 +#, python-format +msgid "No such user: %s" +msgstr "Няма такъв потребител: %s" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "ролята не съществува" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Моля, проверете входящата си поща за получен код за възстановяване." -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Набори от данни без организация не могат да са частни." +#: ckan/controllers/user.py:503 +#, python-format +msgid "Could not send reset link: %s" +msgstr "Не може да се изпрати линк за възстановяване: %s" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Не е списък" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Нямате право да възстановявате парола." -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Не е низ" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Невалиден код за възстановяване. Моля, опитайте отново." -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Този родител ще създаде цикъл в йерархията" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Вашата парола беше възстановена." -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Паролата трябва да е с дължина най-малко 4 символа." -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Въведените пароли не съвпадат." -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Трябва да предоставите парола" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Елементът за следене не е намерен" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Създаване на обект %s" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} не е намерен" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Създаване на връзка между пакети %s %s %s" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Всичко" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Създаване на член-обект %s" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Липсваща стойност" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Опит за създаване на организация като група." +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Пренасочването към външен сайт не е позволено." -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "" -"Трябва да се зададе идентификатор или име на пакет (параметър \"package\")." +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} добави таг {tag} към набора от данни {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Трябва да посочите оценка (параметър \"rating\")." +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} обнови групата {group}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Оценката трябва да бъде цяло число." +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} обнови организацията {organization}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Оценката трябва да е между %i и %i." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} обнови набора от данни {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" msgstr "" +"{actor} промени допълнителната информация {extra} от набора от данни " +"{dataset}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Трябва да сте влезли в системата, за да следвате потребители" - -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Не можете да следвате себе си" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} обнови ресурса {resource} в набора от данни {dataset}" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Вече следвате {0}" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} обнови своя профил" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Трябва да сте влезли в системата, за да следвате набор от данни." +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} изтри групата {group}" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Потребител {username} вече съществува." +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} изтри организацията {organization}" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Трябва да сте регистрирани, за да следвате група." +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} изтри набора от данни {dataset}" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" msgstr "" +"{actor} изтри допълнителната информация {extra} от набора от данни {dataset}" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Изтриване на пакет: %s" - -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Изтриване на %s" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} изтри ресурса {resource} от набора от данни {dataset}" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Изтриване на член %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} създаде групата {group}" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "Идентификаторът липсва в данните" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} създаде организацията {organization}" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Речник \"%s\" не може да бъде намерен" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} създаде набора от данни {dataset}" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Етикет \"%s\" не може да бъде намерен" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "" +"{actor} добави допълнителна информация {extra} към набора от данни {dataset}" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Трябва да сте влезли в системата, за да престанете да следвате нещо." +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} добави ресурс {resource} към набора от данни {dataset}" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Не следвате {0}." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} се регистрира" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Ресурсът не беше намерен." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} премахна етикет {tag} от етикет от данни {dataset}" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Не посочвайте, ако използвате \"query\" параметър" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} започна да следва {dataset}" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Трябва да е двойка :" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} започна да следва {user}" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Полето \"{field}\" не е разпознато в resource_search." +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} започна да следва {group}" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Пакетът не беше намерен." +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Преглед" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Обновяване на обект %s" +#: 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/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Обновяване на връзка между пакети: %s %s %s" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "януари" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus не беше намерен." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "февруари" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Организацията не беше намерена" +#: ckan/lib/formatters.py:27 +msgid "March" +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/lib/formatters.py:31 +msgid "April" +msgstr "април" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Потребител %s няма право да редактира тези групи" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "май" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" -"Потребител %s няма право да добавя набори от данни към тази организация" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "юни" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "юли" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "" -"Не е намерен пакет за този ресурс, автентичността не може да бъде проверена." +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "август" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "септември" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "Потребител %s няма право да редактира тези пакети" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "октомври" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "Потребител %s няма право да създава групи" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "ноември" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "Потребител %s няма право да създава организации" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "декември" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" -msgstr "Потребител {user} няма право да създава потребители посредством API." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Току-що" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Нямате право да създавате потребители" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "преди {mins} минута" +msgstr[1] "преди {mins} минути" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Групата не беше намерена." +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "преди {hours} час" +msgstr[1] "преди {hours} часа" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Създаването на пакет изисква валиден API ключ" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "преди {days} ден" +msgstr[1] "преди {days} дена" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Създаването на група изисква валиден API ключ" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "преди {months} месец" +msgstr[1] "преди {months} месеца" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Потребител %s няма право да добавя членове" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "преди повече от {years} година" +msgstr[1] "преди повече от {years} години" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Потребител %s няма право да редактира група %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "Потребител %s няма право да изтрие ресурс %s" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "Потребител %s няма право да изтрие връзка %s" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "Потребител %s няма право да изтрива групи" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "Потребител %s няма право да изтрие група %s" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "Потребител %s няма право да изтрива организации" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "Потребител %s няма право да изтрие организация %s" +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "Потребител %s няма право да изтрие task_status" +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Недостатъчни права" +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "Потребител %s няма право да чете тези пакети." +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "Потребител %s няма право да чете този пакет %s." +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Потребител %s няма право да чете този ресурс %s." +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "" -"Трябва да влезете в профила си, за да получите достъп до потребителския " -"панел." +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "Потребител %s няма право да редактира пакет %s" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Потребител %s няма право да редактира ресурс %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Обновете своя аватара на gravatar.com" -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "Потребител %s няма право да променя статуса на пакет %s." +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Непознат" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "Потребител %s няма право да редактира организация %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Ресурс без име" -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "Потребител %s няма право да променя статуса на група %s." +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Създаден е нов набор от данни" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "Потребител %s няма право да редактира правата на група %s" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Редактирани ресурси." -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Трябва да влезете в профила си, за да редактирате потребител" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Редактирани настройки." -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "Потребител %s няма право да редактира потребител %s" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} преглеждане" +msgstr[1] "{number} преглеждания" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} скорошно преглеждане" +msgstr[1] "{number} последни преглеждания" -#: ckan/logic/auth/update.py:216 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to change state of revision" -msgstr "Потребител %s няма право да променя статуса на ревизия" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "Потребител %s няма право да обновява таблицата task_status" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Имейл адрес на получателя не е наличен!" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "Потребител %s няма право да обновява таблицата term_translation" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "организация" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Редактирането на пакет изисква валиден API ключ" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "група" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Редактирането на група изисква валиден API ключ" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Липсваща стойност" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "" +#: ckan/lib/navl/validators.py:66 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Полето за въвеждане '%(name)s' не беше очаквано." -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Моля, въведете целочислена стойност" + +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -"Open Data Commons Лиценз за Предоставяне на Обществено Достояние (PDDL)" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Лиценз за Отворени Бази Данни (ODbL)" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Невалиден/ни ресурс/и към пакет" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Лиценз за Признание" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Допълнителни" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Речников етикет \"%s\" не съществува" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Признание" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Не може да бъде разчетен като валиден JSON" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Признание, Споделяне на споделеното" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Лиценз за свободна документация" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Организацията не съществува" -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Друг (отворен лиценз)" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Не можете да добавите набор данни към тази организация" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Друг (Обществено Достояние)" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Невалидна целочислена стойност" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Друг (Признание)" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Трябва да бъде естествено число" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "Отворен Правителствен Лиценз на Обединеното Кралство (OGL)" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Трябва да бъде положително цяло число" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Некомерсиален лиценз (Всичко)" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Невалиден формат на дата" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Друг (некомерсиален лиценз)" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Не се допускат връзки в log_message." -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Друг (не отворен лиценз)" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Ресурси" + +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Това име или идентификатор на група не съществува." + +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Тип дейност" + +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Името трябва да бъде низ." + +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Това име не може да бъде използвано" + +#: ckan/logic/validators.py:338 #, python-format -msgid "depends on %s" -msgstr "зависи от %s" +msgid "Must be at least %s characters long" +msgstr "" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "is a dependency of %s" -msgstr "е зависимост на %s" +msgid "Name must be a maximum of %i characters long" +msgstr "Името може да е най-много %i символа" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Този URL вече е в употреба." + +#: ckan/logic/validators.py:366 #, python-format -msgid "derives from %s" -msgstr "произхожда от %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Името \"%s\" е по-кратко от минимално допустимите %s символа" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:370 #, python-format -msgid "has derivation %s" -msgstr "има производен %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Името \"%s\" е по-дълго от максимално допустимите %s символа" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:376 #, python-format -msgid "links to %s" -msgstr "има връзка към %s" +msgid "Version must be a maximum of %i characters long" +msgstr "Версията не може да бъде по-дълга от %i символа" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:394 #, python-format -msgid "is linked from %s" -msgstr "има връзка откъм %s" +msgid "Duplicate key \"%s\"" +msgstr "Дублиращ се ключ \"%s\"" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Вече съществува група с това име" + +#: ckan/logic/validators.py:416 #, python-format -msgid "is a child of %s" -msgstr "е подчинен спрямо на %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Етикет \"%s\" е по-кратък от минимално допустимите %s символа" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a parent of %s" -msgstr "е главен спрямо %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Етикет \"%s\" е по-дълъг от максимално допустимите %i символа" -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:428 #, python-format -msgid "has sibling %s" -msgstr "е равностоен спрямо %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Етикет \"%s\" трябва да съдържа само малки букви на латиница, цифри и " +"символите за тире и долна черта: -_" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Зареждане...." +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Етикет \"%s\" не трябва да съдържа главни букви" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Няма информация в API за този ресурс" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Потребителското име трябва да бъде низ" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Неуспешно зареждане на информация за API на данните" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Това потребителско име не е налично." -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Няма намерени съвпадения" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Моля, въведете двете пароли:" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Започнете да пишете..." +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Паролата трябва да е низ" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "" -"Въведената информация е твърде кратка, трябва да бъде поне един символ" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Паролата трябва да е с дължина най-малко 4 символа" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Има незапазени промени в този формуляр" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Въведените пароли не съвпадат" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Моля, потвърдете действието" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Редакцията не е приета, тъй като прилича на спам. Моля, избягвайте връзки " +"(URL адреси) в описанието." -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Сигурни ли сте, че искате да извършите това действие?" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Името трябва да е най-малко %s символа" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Потвърждаване" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Това име на речник вече се използва" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Отказ" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Стойността на ключа не може да бъде променена от %s на %s. Ключът може само " +"да се чете, без да се променя." -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Следване" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Етикет за речник не беше намерен." -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Прекратяване на следването" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Таг %s не принадлежи на речник %s" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Качване" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Няма име на етикет" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Връзка" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Таг %s вече е бил добавен към речник %s" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Премахване" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Моля, въведете валиден URL адрес" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Изображение" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "ролята не съществува" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL адрес" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Набори от данни без организация не могат да са частни." -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Файл" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Не е списък" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Качване файл от Вашия компютър" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Не е низ" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Този родител ще създаде цикъл в йерархията" + +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -"Посочване на връзка към URL адрес в интернет (можете също така да посочите " -"връзка към API)" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Подреждане на ресурси" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Запазване на подредбата" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Запазване..." +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Качване на файл" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Възникна грешка" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Ресурсът е качен" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Създаване на обект %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Неуспешно качване на файл" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Създаване на връзка между пакети %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Неуспешна проверката за автентичност на качения файл" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Създаване на член-обект %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Неуспешно зареждане на информацията за качения файл" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Опит за създаване на организация като група." -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -"В момента качвате файл. Сигурни ли сте, че искате да излезете от страницата " -"и да прекъснете качването?" +"Трябва да се зададе идентификатор или име на пакет (параметър \"package\")." -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Трябва да посочите оценка (параметър \"rating\")." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Редакция" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Оценката трябва да бъде цяло число." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Показване на още" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Оценката трябва да е между %i и %i." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Скриване" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Грешка %(error_code)s" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Трябва да сте влезли в системата, за да следвате потребители" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Относно {0}" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Не можете да следвате себе си" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Вече следвате {0}" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Трябва да сте влезли в системата, за да следвате набор от данни." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Задвижван от CKAN" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Потребител {username} вече съществува." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Администраторски настройки" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Трябва да сте регистрирани, за да следвате група." -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Показване на профил" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:92 #, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "Табло (%(num)d нов елемент)" -msgstr[1] "Потребителски панел (%(num)d нови елемента)" +msgid "REST API: Delete Package: %s" +msgstr "REST API: Изтриване на пакет: %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Потребителски панел" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Изтриване на %s" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Редактиране на настройки" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Изтриване на член %s" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "Идентификаторът липсва в данните" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Изход" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Речник \"%s\" не може да бъде намерен" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Вход" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Етикет \"%s\" не може да бъде намерен" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Регистрация" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Трябва да сте влезли в системата, за да престанете да следвате нещо." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Набори от данни" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Не следвате {0}." -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Търсене на набори от данни" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Ресурсът не беше намерен." -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Търсене" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Не посочвайте, ако използвате \"query\" параметър" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Трябва да е двойка :" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Зареждане на по-малко" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Полето \"{field}\" не е разпознато в resource_search." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Зареждане на повече" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Пакетът не беше намерен." -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "Няма дейности в този поток от дейности." +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Обновяване на обект %s" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Администрация" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Обновяване на връзка между пакети: %s %s %s" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Системни администратори" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus не беше намерен." -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Конфигурация" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Организацията не беше намерена" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -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/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "Сигурни ли сте, че искате да изтриете тази конфигурация?" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Потребител %s няма право да редактира тези групи" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Пренастройка" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Потребител %s няма право да добавя набори от данни към тази организация" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Обнови конфигурация" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN настройки за конфигурация" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Не е намерен пакет за този ресурс, автентичността не може да бъде проверена." -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:76 #, 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.

" +msgid "User %s not authorized to create resources on dataset %s" 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/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Потребител %s няма право да редактира тези пакети" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "" +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Потребител %s няма право да създава групи" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:129 #, 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 "" +msgid "User %s not authorized to create organizations" +msgstr "Потребител %s няма право да създава организации" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "Потребител {user} няма право да създава потребители посредством API." -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Нямате право да създавате потребители" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Групата не беше намерена." -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "Достъп до ресурсни данни чрез уеб API със силна поддръжка на заявки." +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Създаването на пакет изисква валиден API ключ" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Създаването на група изисква валиден API ключ" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Крайни точки" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Потребител %s няма право да добавя членове" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"Това Data API е достъпно само чрез следните действия от CKAN API за " -"действия." +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Потребител %s няма право да редактира група %s" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Създаване" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Потребител %s няма право да изтрие ресурс %s" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Обновяване / Вмъкване" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Заявка" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Потребител %s няма право да изтрие връзка %s" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Заявка (чрез SQL)" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Потребител %s няма право да изтрива групи" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Подаване на заявка" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Потребител %s няма право да изтрие група %s" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Пример за заявка (първите 5 резултата)" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Потребител %s няма право да изтрива организации" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Пример за заявка (резултати, съдържащи 'jones') " +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Потребител %s няма право да изтрие организация %s" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Пример за заявка (посредством SQL декларация)" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Потребител %s няма право да изтрие task_status" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Пример: Javascript" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Недостатъчни права" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" -"Обикновена заявка по технологията ajax (JSONP) към API на данните чрез " -"jQuery." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Потребител %s няма право да чете тези пакети." -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Пример: Python" +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Потребител %s няма право да чете този пакет %s." -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "В момента този ресурс е недостъпен." +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Потребител %s няма право да чете този ресурс %s." -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Натиснете тук за повече информация" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Изтеглете ресурс" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "" +"Трябва да влезете в профила си, за да получите достъп до потребителския " +"панел." -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Вашият браузър не поддържа iframes." +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Потребител %s няма право да редактира пакет %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Не е наличен предварителен изглед." +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Потребител %s няма право да редактира ресурс %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Още детайли..." +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Потребител %s няма право да променя статуса на пакет %s." -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:128 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Не е определен ползвател на данни тип: %(type)s." +msgid "User %s not authorized to edit organization %s" +msgstr "Потребител %s няма право да редактира организация %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Стандартен" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Потребител %s няма право да променя статуса на група %s." -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Стандартно въвеждане" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Потребител %s няма право да редактира правата на група %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Среден" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Трябва да влезете в профила си, за да редактирате потребител" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Въвеждане със средна ширина." +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Потребител %s няма право да редактира потребител %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Пълен" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Въвеждане с пълна ширина." +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Потребител %s няма право да променя статуса на ревизия" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Обемен" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Потребител %s няма право да обновява таблицата task_status" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Обемно въвеждане" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Потребител %s няма право да обновява таблицата term_translation" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Предшестващо вмъкване" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Редактирането на пакет изисква валиден API ключ" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Въвеждане на предшестващо вмъкване" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Редактирането на група изисква валиден API ключ" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Допълнително поле (празно)" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Допълнително поле" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" +"Open Data Commons Лиценз за Предоставяне на Обществено Достояние (PDDL)" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown-синтаксис" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Лиценз за Отворени Бази Данни (ODbL)" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Място за текст" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Лиценз за Признание" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Избиране" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Поток на дейността" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Признание" -#: 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/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Признание, Споделяне на споделеното" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Добавяне на група" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Лиценз за свободна документация" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Формуляр за Група" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Друг (отворен лиценз)" -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:16 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -msgid "Confirm Delete" -msgstr "Потвърждаване на изтриването" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Друг (Обществено Достояние)" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "Сигурни ли сте, че искате да изтриете тази група - {name}?" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +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 "Сигурни ли сте, че искате да изтриете този член - {name}?" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "Отворен Правителствен Лиценз на Обединеното Кралство (OGL)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Управление" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Некомерсиален лиценз (Всичко)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Редактиране група" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +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/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Друг (не отворен лиценз)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Последователи" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "зависи от %s" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "История" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "е зависимост на %s" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Добавяне на група" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "произхожда от %s" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Търсене в групи..." +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "има производен %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Имена по възходящ ред" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "има връзка към %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Имена по низходящ ред" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "има връзка откъм %s" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "Не са налични групи за тази страница" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "е подчинен спрямо на %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Искате ли да създадете?" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "е главен спрямо %s" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "Обратно към всички членове" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "е равностоен спрямо %s" -#: 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/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Няма информация в API за този ресурс" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Добавяне на член" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Неуспешно зареждане на информация за API на данните" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Съществуващ потребител" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Започнете да пишете..." -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Ако желаете да добавите съществуващ потребител, потърсете потребителското му" -" име по-долу." +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Няма намерени съвпадения" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "или" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Нов потребител" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Има незапазени промени в този формуляр" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "Ако желаете да поканите потребител, въведете неговия имейл адрес." +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Моля, потвърдете действието" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Роля" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Сигурни ли сте, че искате да извършите това действие?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Сигурни ли сте, че искате да изтриете този член?" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Потвърждаване" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Изтриване" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:61 -msgid "Save" -msgstr "Запазване" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Прекратяване на следването" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Какво представляват ролите?" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Следване" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Връзка" + +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -"

Администратор: Може да редактира информация за групи, " -"както и да управлява членове на организация.

Член: " -"Може да добавя/премахва набори данни от групи.

" +"Посочване на връзка към URL адрес в интернет (можете също така да посочите " +"връзка към API)" -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" -msgstr "Създаване на група" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Качване" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Обновяване на група" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Премахване" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Създаване на група" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Качване файл от Вашия компютър" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Уместност" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL адрес" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Последна промяна" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Файл" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Популярни" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Запазване на подредбата" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Търсене на набори от данни..." +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Запазване..." -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Набори от данни в група: {group}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Качване на файл" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Последна история на ревизии" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Възникна грешка" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Име" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Неуспешно качване на файл" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Моята група" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Неуспешна проверката за автентичност на качения файл" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "моята-група" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Ресурсът е качен" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Описание" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Неуспешно зареждане на информацията за качения файл" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Малко информация за моята група..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"В момента качвате файл. Сигурни ли сте, че искате да излезете от страницата " +"и да прекъснете качването?" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Сигурни ли сте, че искате да изтриете тази група?" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Запазване на група" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} набор от данни" -msgstr[1] "{num} набори от данни" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Редакция" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 набора от данни" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Показване на още" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Разглеждане на {name}" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Скриване" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Премахване на набор от данни от тази група" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Грешка %(error_code)s" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Какво представляват групите?" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Относно {0}" -#: ckan/templates/group/snippets/helper.html:8 +#: 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 "" -" 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. " +"Powered by CKAN" msgstr "" -"Можете да използвате CKAN Групи за създаване и управляване на колекции от " -"данни. Това би могло да включва каталогизиране на данни за определен проект " -"или екип, както и по определена тема, и представлява много лесен начин да " -"улесните потребителите в намирането и търсенето на данните, които Вие сте " -"публикували." +"Задвижван от CKAN" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Сравняване" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Администраторски настройки" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Изтрит" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Показване на профил" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "прочетете повече" +#: ckan/templates/header.html:26 +#, 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/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Ревизия" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Потребителски панел" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Маркер за дата и час" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Редактиране на настройки" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Автор" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Съобщение в лог-файл" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Изход" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Добре дошли!" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +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/

" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Регистрация" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Набори от данни" + +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Търсене на набори от данни" + +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Търсене" + +#: ckan/templates/page.html:6 +msgid "Skip to content" 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/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Зареждане на по-малко" -#: ckan/templates/home/snippets/promoted.html:10 +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Зареждане на повече" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Няма дейности в този поток от дейности." + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Администрация" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Системни администратори" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Конфигурация" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Кошче" + +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Сигурни ли сте, че искате да изтриете тази конфигурация?" + +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Пренастройка" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Обнови конфигурация" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN настройки за конфигурация" + +#: ckan/templates/admin/config.html:33 +#, python-format 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 " +"

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" +" Относно.

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

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

" +"

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

" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Това е препоръчана секция" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Потвърждаване на пренастройка" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" msgstr "" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" +#: 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/home/snippets/search.html:16 -msgid "Popular tags" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" msgstr "" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} статистически данни" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "набор от данни" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "В момента този ресурс е недостъпен." -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "набори от данни" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Натиснете тук за повече информация" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "организации" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Изтеглете ресурс" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "групи" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Не е наличен предварителен изглед." -#: ckan/templates/macros/form.html:126 +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Още детайли..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 #, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" +msgid "No handler defined for data type: %(type)s." +msgstr "Не е определен ползвател на данни тип: %(type)s." -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Това поле е задължително" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Стандартен" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Персонализиран" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Стандартно въвеждане" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Формулярът съдържа невалидни записи:" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Среден" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Задължително поле" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Въвеждане със средна ширина." -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Пълен" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL адрес на изображението" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Въвеждане с пълна ширина." + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Обемен" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Обемно въвеждане" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Предшестващо вмъкване" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Въвеждане на предшестващо вмъкване" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Допълнително поле (празно)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Допълнително поле" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown-синтаксис" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Място за текст" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Избиране" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Изчистете Прикачването" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Поток на дейността" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -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/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Редактиране на набор от данни" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Добавяне на група" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Добавяне на набор от данни" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Формуляр за Група" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "открито за \"{query}\"" +#: 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/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Съжаляваме, не са намерени набори от данни за \"{query}\"" +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Сигурни ли сте, че искате да изтриете тази група - {name}?" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -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 "Сигурни ли сте, че искате да изтриете този член - {name}?" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Направете частен" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Управление" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Чернова" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Редактиране група" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Частен" +#: ckan/templates/group/edit_base.html:23 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" +msgstr "Членове" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Тази организация няма асоциирани набори от данни" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "История" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "Сигурни ли сте, че искате да изтриете тази организация - {name}?" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +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/group/index.html:20 +msgid "Search groups..." +msgstr "Търсене в групи..." -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Добавяне на организация" +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Не са налични групи за тази страница" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "Търсене на организации..." +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Искате ли да създадете?" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "Не са налични организации за тази страница" +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Обратно към всички членове" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Потребителско име" +#: ckan/templates/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/organization/member_new.html:50 -msgid "Email address" -msgstr "" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Добавяне на член" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "Обновяване на член" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Съществуващ потребител" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"

Администратор: Може да добавя/редактира и изтрива набори" -" от данни, както и да управлява членове на организация.

" -"

Редактор: Може да добавя и редактира набори от данни, но" -" не и да управлява членове на организация.

Член: " -"Може да разглежда частните набори от данни на организацията, но не и да " -"добавя нови набори от данни.

" +"Ако желаете да добавите съществуващ потребител, потърсете потребителското му" +" име по-долу." -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Създаване на организация" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "или" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Обновяване на организация" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Нов потребител" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Създаване на организация" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Ако желаете да поканите потребител, въведете неговия имейл адрес." -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Добавяне на набор от данни" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Роля" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Сигурни ли сте, че искате да изтриете този член?" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Какво представляват организациите?" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +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/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Какво представляват ролите?" -#: ckan/templates/organization/snippets/helper.html:8 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" msgstr "" -"CKAN Организациите се използват за създаване, управление и публикуване на " -"колекции набори от данни. Потребителите могат да имат различни роли в дадена" -" Организация в зависимост от техните права за създаване, редактиране и " -"публикуване." - -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Моите организации" +"

Администратор: Може да редактира информация за групи, " +"както и да управлява членове на организация.

Член: " +"Може да добавя/премахва набори данни от групи.

" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "моите-организации" +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Създаване на група" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Малко информация за моята организация..." +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Обновяване на група" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" -"Сигурни ли сте, че искате да изтриете тази организация? Това действие ще " -"изтрие всички публични и частни набори от данни, принадлежащи на тази " -"организация." +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Създаване на група" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Запазване на организация" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Търсене на набори от данни..." -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Преглед на {organization_name}" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Набори от данни в група: {group}" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Нов набор от данни" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Последна история на ревизии" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Какво представляват наборите от данни?" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Име" -#: ckan/templates/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/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Моята група" -#: ckan/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "Сигурни ли сте, че искате да изтриете този набор от данни - {name}?" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "моята-група" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "Сигурни ли сте, че искате да изтриете ресурс - {name}?" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Малко информация за моята група..." -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Преглед на набор от данни" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Сигурни ли сте, че искате да изтриете тази група?" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Редактиране на метаданни" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Разглеждане на {name}" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Преглед" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Премахване на набор от данни от тази група" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Обновяване" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Какво представляват групите?" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -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/package/group_list.html:14 -msgid "Add to group" -msgstr "Добавяне в група" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Сравняване" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "Няма групи, свързани с този набор от данни" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Изтрит" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Обновяване на набор от данни" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "прочетете повече" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Добавяне на данни в набор от данни" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Ревизия" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "Добавяне на нов ресурс" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Маркер за дата и час" -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "Добавяне на ресурс" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Автор" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Нов ресурс" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Съобщение в лог-файл" -#: ckan/templates/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/home/index.html:4 +msgid "Welcome" +msgstr "Добре дошли!" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/home/snippets/about_text.html:1 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"

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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Добавяне" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Добре дошли в CKAN" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"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 "" -"Това е стара ревизия на този набор от данни, след редакция на %(timestamp)s." -" Може съществено да се различава от настоящата " -"ревизия." - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Качване в DataStore хранилище" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Грешка при качването:" +"Това е въвеждащ текст за CKAN или най-общо за сайта. Все още нямаме по-" +"подробно описание, но скоро ще имаме." -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Грешка:" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Това е препоръчана секция" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" msgstr "" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Статус" - -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Последно обновяване" - -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Никога" - -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Качване на лог-файл" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Детайли" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "Край на лог-файла" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} статистически данни" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Всички ресурси" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "набор от данни" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Прегледай ресурс" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "набори от данни" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Редактирай ресурс" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "организации" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "групи" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" msgstr "" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API Свръзка" - -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Иди на ресурс" - -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Изтегляне" - -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL адрес:" - -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Из резюмето на набора от данни" - -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Източник: %(dataset)s" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." +msgid "" +"You can use Markdown formatting here" msgstr "" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Това поле е задължително" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Персонализиран" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Формулярът съдържа невалидни записи:" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Задължително поле" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Допълнителна информация" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL адрес на изображението" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Поле" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Изчистете Прикачването" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Стойност" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Формуляр за Организация" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "неизвестен" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Редактиране на набор от данни" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Създаден" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Добавяне на набор от данни" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Формат" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "открито за \"{query}\"" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Лиценз" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Съжаляваме, не са намерени набори от данни за \"{query}\"" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Направете публичен" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Направете частен" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Добавяне на нов ресурс" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Чернова" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

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

" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Частен" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Тази организация няма асоциирани набори от данни" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API документация" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Сигурни ли сте, че искате да изтриете тази организация - {name}?" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "пълен пренос във {format}" +#: 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/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/organization/index.html:20 +msgid "Search organizations..." +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 "" -"Можете да получите също така достъп до този регистър, като използвате " -"връзката %(api_link)s (see %(api_doc_link)s)." +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Не са налични организации за тази страница" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Потребителско име" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" msgstr "" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Обновяване на член" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Допълнителна информация" +#: ckan/templates/organization/member_new.html:81 +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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Източник" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Създаване на организация" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Версия" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Обновяване на организация" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Статус" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Създаване на организация" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Добавяне на набор от данни" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Какво представляват организациите?" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Data API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Моите организации" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Заглавие" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "моите-организации" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "напр. Описателно заглание" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Малко информация за моята организация..." -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "напр. моят-набор от данни" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Сигурни ли сте, че искате да изтриете тази организация? Това действие ще " +"изтрие всички публични и частни набори от данни, принадлежащи на тази " +"организация." -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "напр. Някои полезни пояснения относно данните" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Запазване на организация" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"Описание и допълнителна информация за лиценза можете да намерите на opendefinition.org" - -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Организация" +"CKAN набор от данни представлява колекция ресурси от данни (като файлове), " +"наред с описание и друга информация, достъпни на определен URL адрес. " +"Наборите от данни са онова, което потребителите виждат, когато търсят данни." -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Няма организация" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Сигурни ли сте, че искате да изтриете този набор от данни - {name}?" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Видимост" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Сигурни ли сте, че искате да изтриете ресурс - {name}?" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Публичен" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Преглед на набор от данни" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Активен" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +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." +#: 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/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "Сигурни ли сте, че искате да изтриете този набор от данни?" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Преглед" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Следва: Добавяне на данни" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +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/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/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Обновяване на набор от данни" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Имейл на автора" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Добавяне на нов ресурс" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Обновяване на ресурс" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Нов ресурс" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: 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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: 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/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "напр. Цените на златото за януари 2011" - -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Някои полезни пояснения за данните " - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "напр. CSV, XML или JSON" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Добавяне" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Това е стара ревизия на този набор от данни, след редакция на %(timestamp)s." +" Може съществено да се различава от настоящата " +"ревизия." -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "напр. 2012-06-05" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Всички ресурси" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Размер на файл" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Прегледай ресурс" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "напр. 1024" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Редактирай ресурс" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME Type" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "напр. application/json" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API Свръзка" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Сигурни ли сте, че искате да изтриете този ресурс?" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Иди на ресурс" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Предишен" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Изтегляне" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Запазване и добавяне на друг" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL адрес:" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Край" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Из резюмето на набора от данни" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Какво е ресурс?" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Източник: %(dataset)s" -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." msgstr "" -"Ресурс е всеки файл или връзка към файл, който съдържа полезна информация." -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Разучаване" - -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Още информация" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Внедряване" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 +#: ckan/templates/package/resource_read.html:122 msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +"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/snippets/resource_view.html:69 -msgid "Width" -msgstr "" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Допълнителна информация" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Поле" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Изходен код" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Стойност" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Данни и ресурси" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "неизвестен" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "Прочитане на набор от данни като %s" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Създаден" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Нов набор от данни" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +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/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Лиценз" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" msgstr "" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Добавяне на нов ресурс" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, 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/snippets/view_form_filters.html:16 -msgid "Add Filter" +#: 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/snippets/view_form_filters.html:28 -msgid "Remove Filter" +#: 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/snippets/view_form_filters.html:46 -msgid "Filters" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" msgstr "" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" msgstr "" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" msgstr "" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Разлики" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Разлики между ревизии" - -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Разлика" - -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Няма разлики" - -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "История на ревизии" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Допълнителна информация" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Ревизии" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Източник" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -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/revision/read.html:64 -msgid "Changes" -msgstr "Промени" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Версия" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Етикети на набори от данни" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Статус" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Обект" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Внедряване на Наблюдател на данни" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -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/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -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/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Ширина:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Заглавие" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Височина:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "напр. Описателно заглание" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Статус на потребителя, въвеждащ данни: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "напр. моят-набор от данни" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Проследяване на URL адрес" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "напр. Някои полезни пояснения относно данните" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Показване на още {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "напр. икономика, психично здраве, правителство" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Само популярни {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Описание и допълнителна информация за лиценза можете да намерите на opendefinition.org" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Няма {facet_type}, отговарящ на търсенето" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Организация" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Начало" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Няма организация" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Език" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Видимост" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Напред" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Публичен" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "Не е избран лиценз" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Активен" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -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/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Няма описание за тази организация." +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Сигурни ли сте, че искате да изтриете този набор от данни?" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Този набор от данни няма описание" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Следва: Добавяне на данни" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Изпращане" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Подреждане по" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -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/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

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

" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Имейл на автора" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" -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/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/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Имейл на отговорник по поддръжка" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "Не са намерени набори от данни за \"{query}\"" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Обновяване на ресурс" -#: 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/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Не са намерени набори от данни" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +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/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "напр. Цените на златото за януари 2011" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Не са намерени групи за \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Някои полезни пояснения за данните " -#: 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/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "напр. CSV, XML или JSON" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Не са намерени групи" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "напр. 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "Не са намерени организации за \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Размер на файл" -#: 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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "напр. 1024" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Не са намерени организации" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME Type" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Социални" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "напр. application/json" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Абониране" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +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:82 -msgid "Email" -msgstr "Имейл" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Предишен" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Запазване и добавяне на друг" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Редакции" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Край" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Етикети за търсене" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Какво е ресурс?" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -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/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Моите набори от данни" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Разучаване" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Моите организации" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Още информация" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Моите групи" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Внедряване" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Дейности по елементи, които следвам" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Все още не сте създали набори от данни." +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Създайте нов сега?" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "Не сте член на никоя група." +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Не сте член на никоя организация." +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +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/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Изходен код" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Информация за акаунт" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Данни и ресурси" + +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" msgstr "" -"Вашият профил позволява на други CKAN потребители да се запознаят с Вас и " -"това, с което се занимавате. " -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Промяна на детайли" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Прочитане на набор от данни като %s" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Пълно име" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Нов набор от данни" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -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/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "напр. marta@example.com" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Малко информация за Вас" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Абониране за имейл известия " +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Променяна на паролата" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Парола" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Разлики" + +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Разлики между ревизии" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Потвърждаване на парола" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Разлика" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Сигурни ли сте, че искате да изтриете този потребител?" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Няма разлики" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "История на ревизии" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Ревизии" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Обновяване на профил" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Отмяна на изтриването" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Всички потребители" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +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/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Етикети на набори от данни" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Нуждаете ли се от акаунт?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Обект" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "Тогава се регистрирайте още сега, отнема само минута." +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Нов елемент за дейност" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Създаване на акаунт" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Внедряване на Наблюдател на данни" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Забравена парола?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Внедрете този изглед, като копирате това на Вашата уебстраница:" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" -"Няма проблем, използвайте нашия формуляр за възстановяване на паролата, за " -"да я подновите." +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Изберете широчина и височина в пиксели:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Забравена парола?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Ширина:" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Излязъл" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Височина:" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Вие току-що излязохте." +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Статус на потребителя, въвеждащ данни: {status}." -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Вие вече сте влезли като {user}." +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Проследяване на URL адрес" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Изход" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Показване на още {facet_type}" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Запомнете ме" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Само популярни {facet_type}" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Вие вече сте влезли в системата" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Няма {facet_type}, отговарящ на търсенето" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "Трябва да излезете от системата, за може да влезете с друг акаунт." +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Начало" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Излезте от системата сега" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Език" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Регистрация" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Напред" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Регистрация за акаунт" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Не е избран лиценз" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Защо да се регистрирате?" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Този набор от данни отговаря на дефиницията за Отворени данни." -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "Създавайте набори от данни, групи и други вълнуващи неща" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Няма описание за тази организация." -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Този набор от данни няма описание" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Пълно име" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Изпращане" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Създаване на акаунт" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Подреждане по" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Възстановете Вашата парола" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Филтриране на резултати" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Възстановяване на парола" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

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

" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Обновяване на парола" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -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/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "Просто въведете нова парола и ние ще обновим акаунта Ви." +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Не са намерени набори от данни за \"{query}\"" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Потребителят не е създал никакви набори от данни." +#: 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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Не сте предоставили биография." +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Не са намерени набори от данни" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -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/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID идентификатор" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Не са намерени групи за \"{query}\"" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Това означава, че само Вие можете да го виждате" +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} намерена група" +msgstr[1] "{number} намерени групи" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Член от" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Не са намерени групи" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API ключ" +#: 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/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Възстановете паролата си" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Не са намерени организации за \"{query}\"" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" +#: 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/user/request_reset.html:19 -msgid "Request reset" -msgstr "" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Не са намерени организации" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Напишете потребителското си име в полето и ние ще Ви изпратим имейл с " -"връзка, на която да въведете нова парола." +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Социални" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Дейност от:" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Абониране" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -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:82 +msgid "Email" +msgstr "Имейл" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Не следвате нищо" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Няма последователи" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Редакции" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Търсене на потребители" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Етикети за търсене" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Завършен" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Известия за новини" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Изчакващ" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Моите набори от данни" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Предоставяне" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Моите организации" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Все още не е качено" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Моите групи" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Ресурсът от DataStore хранилището не е намерен" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Дейности по елементи, които следвам" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Все още не сте създали набори от данни." -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "Ресурс \"{0}\" не е намерен." +#: 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:16 +msgid "Create one now?" +msgstr "Създайте нов сега?" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "Потребител {0} няма право да обновява ресурс {1}" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Не сте член на никоя група." -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Не сте член на никоя организация." -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -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 "Потребители" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Информация за акаунт" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/edit.html:19 +msgid "" +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" +"Вашият профил позволява на други CKAN потребители да се запознаят с Вас и " +"това, с което се занимавате. " -#: 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 "Персонализиран текст" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Промяна на детайли" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "Персонализиран текст" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Пълно име" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Код на държавата" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "напр. Марта Иванова" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "напр. marta@example.com" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Малко информация за Вас" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Тази група няма описание" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Абониране за имейл известия " -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Променяна на паролата" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Парола" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Потвърждаване на парола" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Сигурни ли сте, че искате да изтриете този потребител?" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Обновяване на профил" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Всички потребители" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -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 "Вход" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Нуждаете ли се от акаунт?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Тогава се регистрирайте още сега, отнема само минута." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Създаване на акаунт" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Забравена парола?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." msgstr "" +"Няма проблем, използвайте нашия формуляр за възстановяване на паролата, за " +"да я подновите." -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Забравена парола?" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Излязъл" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Вие току-що излязохте." -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Вие вече сте влезли като {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Изход" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Запомнете ме" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Общ брой набори от данни" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Вие вече сте влезли в системата" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Дата" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." +msgstr "Трябва да излезете от системата, за може да влезете с друг акаунт." -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Общо набори от данни" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Излезте от системата сега" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Брой седмични ревизии на набор от данни" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Регистрация" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Всички ревизии на набор от данни" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Регистрация за акаунт" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Нови набори от данни" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Защо да се регистрирате?" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Набори от данни с най-висока оценка" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Създавайте набори от данни, групи и други вълнуващи неща" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Средно висока оценка" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Брой на оценки" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Пълно име" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Без оценка" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Създаване на акаунт" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Най-често редактирани набори от данни" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Възстановете Вашата парола" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Брой редакции" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Възстановяване на парола" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Няма редактирани набори от данни" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Обновяване на парола" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Най-големи групи" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Как работи това?" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Брой набори от данни" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Просто въведете нова парола и ние ще обновим акаунта Ви." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Няма групи" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Потребителят не е създал никакви набори от данни." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Най-визоко класирани етикети" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Не сте предоставили биография." -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Име на етикет" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Този потребител няма биография" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Брой набори от данни" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID идентификатор" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Това означава, че само Вие можете да го виждате" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Меню Статистика" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Член от" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Общ брой набори от данни" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API ключ" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Възстановете паролата си" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Напишете потребителското си име в полето и ние ще Ви изпратим имейл с " +"връзка, на която да въведете нова парола." -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Дейност от:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Търсене в списък..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Не следвате нищо" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Няма последователи" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Търсене на потребители" diff --git a/ckan/i18n/ca/LC_MESSAGES/ckan.mo b/ckan/i18n/ca/LC_MESSAGES/ckan.mo index 0e5b7a68f8e..15b179dc366 100644 Binary files a/ckan/i18n/ca/LC_MESSAGES/ckan.mo and b/ckan/i18n/ca/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/ca/LC_MESSAGES/ckan.po b/ckan/i18n/ca/LC_MESSAGES/ckan.po index 19963a3d4df..c4ff64a1397 100644 --- a/ckan/i18n/ca/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ca/LC_MESSAGES/ckan.po @@ -1,4620 +1,4719 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Funció d'autorització no trobada: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Complet" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administració" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pendent" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Contribuïdor" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Enviant" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Membre" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Error" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Heu de ser administradors del sistema per administrar" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Encara no pujat" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Nom del lloc" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Recurs no trobat" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Estil" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "No esteu autoritzats a editar aquesta pàgina" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Titular del lloc" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Pujar a DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Logotip del lloc" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Error en la pujada:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Error:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Text de presentació" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Traça de l'error:" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Text introductori" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Estat" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Text de la pàgina d'inici" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Última actualització" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "CSS personalitzat" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Mai" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Full CSS personalitzable que s'insereix a la capçalera de la pàgina" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Registre de pujada" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Pàgina d'inici" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detalls" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Fi del registre" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "format: ha de ser un de %s" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Recurs de la DataStore no trobat" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"No es pot purgar el paquet %s ja que la revisió associada %s inclou paquets " -"de dades no esborrats %s" +"Les dades són invàlides (per exemple: un valor numèric fora del seu rang o " +"que ha sigut afegit en un camp de text)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Problema al purgar la revisió %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "No s'ha trobat el recurs \"{0}\"." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Purga completa" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "L'usuari {0} no té prou permisos per a modificar el recurs {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Acció no implementada." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "API de dades de CKAN" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "No esteu autoritzats a editar aquesta pàgina" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Accés denegat" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

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

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "No trobat" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Punts d'accés" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Mala sol·licitud" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Acció desconeguda: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Crea" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Error JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Actualizar / Inserir" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Dades de la sol·licitud incorrectes: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Consulta" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "No es pot llistar l'entitat de tipus: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Consulta (amb SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "No es pot llegir l'entitat de tipus: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Consulta" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "No es pot crear una nova entitat d'aquest tipus: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Exemple de consulta (primers 5 resultats)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "No s'ha pogut afegir el conjunt de dades a l'índex de cerca" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Exemple de consulta (resultats que contenen 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "No es pot editer l'entitat de tipus: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Exemple de consulta (amb SQL)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "No s'ha pogut actualitzar l'índex de cerca" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Exemple: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "No es pot eliminar l'entitat de tipus: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +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." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "No s'ha especificat una revisió" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Exemple: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "No hi ha cap revisiió amb id: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "Camp {num}" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Falta el terme de cerca ('since_id=UUID' o 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Etiqueta" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "No s'han pogut llegir els paràmetres: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Descripció" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Opció de cerca incorrecta: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Desar" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Registre desconegut: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Diccionari de dades" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Valor qjsn mal format: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Columna" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "" -"Els paràmetres de la sol·licitud han d'estar en forma d'un diccionari " -"codificat com a JSON." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "Tipus" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Grup no trobat" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Carregant..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organització no trobada" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "API de dades" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Tipus de grup incorrecte" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Taula" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organitzacions" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Disseny responsiu" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Grups" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Mostrar columnes" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Etiquetes" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "Mostrar/Amagar columnes" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formats" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Conjunts de dades per pàgina" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Llicències" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Configuració de prova" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "No autoritzat a actualitzar per lots" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Rellevància" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "No autoritzat a crear un grup" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "L'usuari %r no està autoritzat a editar %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Error d'integritat" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Última modificació" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "L'usuari %r no està autoritzat a editar les autorizacions de %s" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Camp personalitzat ascendent" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "No teniu autorització per a esborrar el grup %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Camp personalitzat descendent" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Heu esborrat l'organització" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Popular" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Heu esborrat el grup" +#: 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" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s ha sigut esborrat." +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "text personalitzat" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "No teniu autorització per a afegir un membre al grup %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Codi de país" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "No teniu autorització per a esborrar membres del grup %s" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "Text personalitzat" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Heu esborrat el membre del grup. " +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "This is an untranslated string" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Seleccioneu dues revisions abans de fer la comparació." +#: 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/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Historial de revisions del grup de CKAN" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Canvis recents al grup de CKAN" +#: 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" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Missatge de registre: " +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "No esteu seguint {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Seguidors" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "No seguiràs {0} a partir d'ara" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Recursos" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "No teniu autorització per a veure els seguidors %s" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Imatge" -#: ckan/controllers/home.py:36 -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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL de la imatge" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -"Si us plau, actualitzeu el vostre perfil i afegiu la " -"vostra direcció de correu elctrònic" +"p.ex. http://example.com/image.jpg (si es deixa en blanc s'usa la URL del " +"recurs)" -#: ckan/controllers/home.py:83 -#, 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." +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Explorador de dades" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "Cerca incorrecta: {error_message}" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Gràfic" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "El paràmetre \"{parameter_name}\" no és un número enter" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Mapa" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Conjunt de dades no trobat" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "Error carregant la vista" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Format de revisió invàlid: %r" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "No s'ha pogut carregar la vista" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" -"Els conjunts de dades {package_type} en format {format} no estan suportats " -"(no s'ha trobat la plantilla {file})." +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "DataStore ha retornat un error" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "No autoritzat a llegir el paquet %s" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "DataProxy ha retornat un error" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Historial de revisions dels conjunts de dades de CKAN" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "Taula" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Canvis recents als conjunt de dades de CKAN" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filtres" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "No autoritzat a crear un paquet" +#: 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" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "No teniu autorització per a modificar aquest recurs" +#: 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" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Recurs no trobat" +#: 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" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "No teniu autorització per a modificar aquest conjunt de dades" +#: 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" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "No s'ha trobat el conjunt de dades {id}." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tipus de gràfic" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Afegiu almenys un recurs de dades" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grup (Eix 1)" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Error" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Sèrie (Eix 2)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "No teniu autorització per a crear un recurs" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tipus de camp" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "" -"No teniu autorització per a afegir un recurs a aquest conjunt de dades" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Camp de latitud" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "No s'ha pogut afegir el conjunt de dades a l'índex de cerca." +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Camp de longitud" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "No s'ha pogut actualitzar l'índex de cerca." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Camp GeoJSON" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Heu esborrat el conjunt de dades. " +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Zoom autòmatic" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "No teniu autorització per a esborrar el paquet %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Agregar marcadors" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Heu esborrat el recurs." +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Nombre total de conjunts de dades" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "No teniu autorització per a esborrar el recurs %s" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Data" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Vista del recurs no trobada" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Total de conjunts de dades" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Dades del recurs no trobades" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Revisions setmanals del conjunt de dades" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "No hi ha descàrregues disponibles" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Totes les revisions del conjunt de dades" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "No teniu autorització per a llegir el conjunt de dades %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Nous conjunts de dades" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "No autoritzat a llegir el recurs %s" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Conjunts de dades més ben valorats" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "No teniu autorització per a editar el recurs" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Valoració mitjana" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Vista no trobada" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Nombre de valoracions" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Tipus de vista no trobat" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Sense valoracions" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Dades de la vista de recurs incorrectes" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Conjunts de dades més editats" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "No s'ha proporcionat la vista de recurs" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Conjunt de dades" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "No hi ha cap previsualització definida." +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Nombre d'edicions" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Historial de canvis al repositori de CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Conjunts de dades sense editar" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Canvis recents al repositori de CKAN." +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Grups més grans" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Conjunts de dades afectats: %s\n" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Grup" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Revisió actualitzada" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Nombre de conjunts de dades" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Altres" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "No hi ha grups" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Etiqueta no trobada" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Etiquetes més freqüents" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Usuari no trobat" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Nom de l'etiqueta" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "No autoritzat a crear un usuari." +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Nombre de conjunts de dades" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "No autoritzat a crear un usuari" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "Usuaris que han creat més conjunts de dades" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "No autoritzat a eliminar l'usuari amb id \"{user_id}\"." +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Usuari" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "No s'ha especificat cap usuari" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Menu d'estadístiques" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "No autoritzat a editar l'usuari %s" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Nombre total de conjunts de dades" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Perfil actualitzat" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Text" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "No autoritzat a crear l'usuari %s" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Lloc web" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Captcha incorrecte. Si us plau, torneu-ho a provar." +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL del lloc web" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" msgstr "" -"L'usuari \"%s\" ha estat registrat, pero encara teniu la sessió iniciada com" -" a \"%s\"" +"p.ex. http://example.com (si es deixa en blanc s'usa la URL del recurs)" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "No autoritzat a editar un usuari." +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "El vostre navegador no suporta iframes." -#: ckan/controllers/user.py:320 +#: ckan/authz.py:182 #, python-format -msgid "User %s not authorized to edit %s" -msgstr "Usuari %s no autoritzat a editar %s" +msgid "Authorization function not found: %s" +msgstr "Funció d'autorització no trobada: %s" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "La contrasenya introuduïda és incorrecta" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administració" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Contrasenya antiga" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Contribuïdor" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "Contrasenya incorrecta" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Membre" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "No s'ha pogut iniciar sessió. Nom d'usuari o contrasenya incorrectes." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Heu de ser administradors del sistema per administrar" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "No autoritzat a actualitzar la contrasenya." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Nom del lloc" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" coincideix amb més d'un usuari" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Estil" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Usuari desconegut: %s" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Titular del lloc" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "" -"Si us plau, comproveu la vostra safata d'entrada per veure si heu rebut un " -"codi de reinici" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Logotip del lloc" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "No s'ha pogut enviar l'enllaç de reinici: %s" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:516 -msgid "Unauthorized to reset password." -msgstr "No autoritzat a actualitzar la contrasenya." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Text de presentació" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Clau de reinici invàlida. Si us plau, torneu-ho a intentar" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Text introductori" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "La vostra contrasenya s'ha actualitzat" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Text de la pàgina d'inici" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "La vostra contrasenya ha de tenir 4 caràcters o més." +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "CSS personalitzat" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Les contrasenyes que heu introduït no coincideiexen." +#: ckan/controllers/admin.py:57 +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/user.py:568 -msgid "You must provide a password" -msgstr "Cal que faciliteu una contrasenya" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Pàgina d'inici" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "L'element de seguiment no es troba" +#: ckan/controllers/admin.py:161 +#, 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/user.py:640 -msgid "{0} not found" -msgstr "{0} no es troba" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problema al purgar la revisió %s: %s" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Tot" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Purga completa" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Falta el valor" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Acció no implementada." -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "No està permès redireccionar a un lloc extern" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Accés denegat" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} ha afegit l'etiqueta {tag} al conjunt de dades {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "No trobat" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} ha modificat el grup {group}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Mala sol·licitud" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} ha modificat l'organització {organization}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Acció desconeguda: %s" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} ha modificat el conjunt de dades {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Error JSON: %s" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" -"{actor} ha canviat l'element extra {extra} del conjunt de dades {dataset}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Dades de la sol·licitud incorrectes: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" -"{actor} ha actualitzat el recurs {resource} del conjunt de dades {dataset}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "No es pot llistar l'entitat de tipus: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} ha actualitzat el seu perfil" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "No es pot llegir l'entitat de tipus: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} ha esborrat el grup {group}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "No es pot crear una nova entitat d'aquest tipus: %s %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} ha esborrat l'organització {organization}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "No s'ha pogut afegir el conjunt de dades a l'índex de cerca" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} ha esborrat el conjunt de dades {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "No es pot editer l'entitat de tipus: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} ha esborrat l'extra {extra} del conjunt de dades {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "No s'ha pogut actualitzar l'índex de cerca" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" -"{actor} ha esborrat el recurs {resource} del conjunt de dades {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "No es pot eliminar l'entitat de tipus: %s %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} ha creat el grup {group}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "No s'ha especificat una revisió" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} ha creat l'organització {organization}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "No hi ha cap revisiió amb id: %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} ha creat el conjunt de dades {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Falta el terme de cerca ('since_id=UUID' o 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} ha afegitr l'extra {extra} al conjunt de dades {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "No s'han pogut llegir els paràmetres: %r" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} ha afegit el recurs {resource} al conjunt de dades {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Opció de cerca incorrecta: %s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} s'ha registrat" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Registre desconegut: %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} ha esborrat el tag {tag} del conjunt de dades {dataset}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Valor qjsn mal format: %r" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} ha començat a seguir {dataset}" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" +"Els paràmetres de la sol·licitud han d'estar en forma d'un diccionari " +"codificat com a JSON." -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} ha començat a seguir {user}" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Grup no trobat" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} ha començat a seguir {group}" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organització no trobada" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Veure" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Tipus de grup incorrecte" -#: 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/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organitzacions" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Gener" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Grups" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Febrer" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Etiquetes" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Març" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formats" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Abril" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Llicències" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Maig" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "L'usuari %r no està autoritzat a editar %s" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Juny" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "No autoritzat a actualitzar per lots" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Juliol" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "No autoritzat a crear un grup" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Agost" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Error d'integritat" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Setembre" +#: ckan/controllers/group.py:594 +#, 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/lib/formatters.py:55 -msgid "October" -msgstr "Octubre" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "No teniu autorització per a esborrar el grup %s" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Novembre" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Heu esborrat l'organització" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Desembre" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Heu esborrat el grup" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Ara mateix" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s ha sigut esborrat." -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "Fa {mins} minut" -msgstr[1] "Fa {mins} minuts" +#: ckan/controllers/group.py:653 +#, 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/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "Fa {hours} hora" -msgstr[1] "Fa {hours} hores" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "No teniu autorització per a afegir un membre al grup %s" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "Fa {days} dia" -msgstr[1] "Fa {days} dies" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "No teniu autorització per a esborrar membres del grup %s" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "Fa {months} mesos" -msgstr[1] "Fa {months} mesos" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Heu esborrat el membre del grup. " -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "fa un {years} any" -msgstr[1] "fa uns {years} anys" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Seleccioneu dues revisions abans de fer la comparació." -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Historial de revisions del grup de CKAN" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{day} {month} {year}" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Canvis recents al grup de CKAN" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Missatge de registre: " -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "No esteu seguint {0}" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "No seguiràs {0} a partir d'ara" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "No teniu autorització per a veure els seguidors %s" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: 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/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/home.py:73 +#, 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/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "Cerca incorrecta: {error_message}" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "El paràmetre \"{parameter_name}\" no és un número enter" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Conjunt de dades no trobat" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Format de revisió invàlid: %r" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:396 +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/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "No autoritzat a llegir el paquet %s" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Historial de revisions dels conjunts de dades de CKAN" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Actualitzeu el vostre avatar a gravatar.com" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Canvis recents als conjunt de dades de CKAN" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Desconegut" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "No autoritzat a crear un paquet" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Recurs sense nom" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "No teniu autorització per a modificar aquest recurs" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Nou conjunt de dades creat" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "No teniu autorització per a modificar aquest conjunt de dades" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Recursos editats." +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "No s'ha trobat el conjunt de dades {id}." -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Preferències editades." +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Afegiu almenys un recurs de dades" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "vista {number}" -msgstr[1] "vista {number}" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "No teniu autorització per a crear un recurs" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} vistes recents" -msgstr[1] "{number} vistes recents" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "" +"No teniu autorització per a afegir un recurs a aquest conjunt de dades" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "No s'ha pogut afegir el conjunt de dades a l'índex de cerca." -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "No hi ha cap adreça de correu disponible!" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "No s'ha pogut actualitzar l'índex de cerca." -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organització" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Heu esborrat el conjunt de dades. " -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "grup" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "No teniu autorització per a esborrar el paquet %s" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Falta el valor" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Heu esborrat el recurs." -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1052 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "El camp %(name)s no s'esperava." +msgid "Unauthorized to delete resource %s" +msgstr "No teniu autorització per a esborrar el recurs %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Si us plau entreu un valor enter" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Vista del recurs no trobada" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Recursos" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Dades del recurs no trobades" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Recurs(os) invàlid(s)" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "No hi ha descàrregues disponibles" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Extres" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "No teniu autorització per a llegir el conjunt de dades %s" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1404 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "El vocabulari d'etiquetes \"%s\" no existeix" +msgid "Unauthorized to read resource %s" +msgstr "No autoritzat a llegir el recurs %s" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Usuari" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "No teniu autorització per a editar el recurs" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Conjunt de dades" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Vista no trobada" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Grup" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Tipus de vista no trobat" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "No s'ha pogut interpretar com a JSON vàlid" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Dades de la vista de recurs incorrectes" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "Cal proporcionar una organització" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "No s'ha proporcionat la vista de recurs" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "L'organització no existeix" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "No hi ha cap previsualització definida." -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "No podeu afegir un conjunt de dades a aquesta organització" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Historial de canvis al repositori de CKAN" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Valor enter invàlid" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Canvis recents al repositori de CKAN." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Ha de ser un nombre natural" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Conjunts de dades afectats: %s\n" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Ha de ser un valor enter positiu" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Revisió actualitzada" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Format de la data incorrecte" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Altres" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "No es permeten enllaços al missatge de registre" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Etiqueta no trobada" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "L'identificador del conjunt de dades ja existeix" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "No autoritzat a crear un usuari." -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Recurs" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "No autoritzat a crear un usuari" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Aquest nom o identificador de grup no existeix." +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "No autoritzat a eliminar l'usuari amb id \"{user_id}\"." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Tipus d'activitat" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "No s'ha especificat cap usuari" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Els noms han de ser cadenes de text" +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "No autoritzat a editar l'usuari %s" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Aquest nom no es pot fer servir" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Usuari no trobat" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "Ha de tenir al menys %s caràcters" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Perfil actualitzat" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, 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" +msgid "Unauthorized to create user %s" +msgstr "No autoritzat a crear l'usuari %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Captcha incorrecte. Si us plau, torneu-ho a provar." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Ha de ser en minúscules i només contenir números i lletres sense caràcters " -"especials (excepte -_)" +"L'usuari \"%s\" ha estat registrat, pero encara teniu la sessió iniciada com" +" a \"%s\"" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Aquesta URL ja està en ús." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "No autoritzat a editar un usuari." -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "El nom \"%s\" té menys caràcters que el mínim %s" +msgid "User %s not authorized to edit %s" +msgstr "Usuari %s no autoritzat a editar %s" -#: ckan/logic/validators.py:369 -#, 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/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "La contrasenya introuduïda és incorrecta" -#: ckan/logic/validators.py:375 -#, 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/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Contrasenya antiga" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Clau duplicada \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "Contrasenya incorrecta" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Aquest nom de grup ja existeix a la base de dades" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "No s'ha pogut iniciar sessió. Nom d'usuari o contrasenya incorrectes." -#: ckan/logic/validators.py:415 -#, 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/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "No autoritzat a actualitzar la contrasenya." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, 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" +msgid "\"%s\" matched several users" +msgstr "\"%s\" coincideix amb més d'un usuari" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, 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: -_" +msgid "No such user: %s" +msgstr "Usuari desconegut: %s" + +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "" +"Si us plau, comproveu la vostra safata d'entrada per veure si heu rebut un " +"codi de reinici" -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "L'etiqueta \"%s\" ha d'estar en minúscules" +msgid "Could not send reset link: %s" +msgstr "No s'ha pogut enviar l'enllaç de reinici: %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Els noms d'usuari han de ser cadenes de text" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "No autoritzat a actualitzar la contrasenya." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Aquest nom de registre no es troba disponible." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Clau de reinici invàlida. Si us plau, torneu-ho a intentar" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Si us plau, introduïu les dues contrasenyes" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "La vostra contrasenya s'ha actualitzat" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Les contrasenyes han de ser cadenes de text" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "La vostra contrasenya ha de tenir 4 caràcters o més." -#: ckan/logic/validators.py:581 -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:565 +msgid "The passwords you entered do not match." +msgstr "Les contrasenyes que heu introduït no coincideiexen." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Les contrasenyes introduïdes no coincideixen" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Cal que faciliteu una contrasenya" -#: ckan/logic/validators.py:610 -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/controllers/user.py:636 +msgid "Follow item not found" +msgstr "L'element de seguiment no es troba" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "El nom ha de tenir al menys %s caràcters" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} no es troba" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Aquest nom de vocabulari ja existeix." +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Tot" -#: ckan/logic/validators.py:633 -#, 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/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Falta el valor" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Vocabulari d'etiquetes no trobat." +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "No està permès redireccionar a un lloc extern" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "L'etiqueta %s no pertany al vocabulari %s" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} ha afegit l'etiqueta {tag} al conjunt de dades {dataset}" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Falta el nom de l'etiqueta" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} ha modificat el grup {group}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "L'etiqueta %s ja pertany al vocabulari %s" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} ha modificat l'organització {organization}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Si us plau, proporcioneu una URL vàlida" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} ha modificat el conjunt de dades {dataset}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "Aquest rol no existeix" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "" +"{actor} ha canviat l'element extra {extra} del conjunt de dades {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Els conjunts de dades sense organització no poden ser privats." +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" +"{actor} ha actualitzat el recurs {resource} del conjunt de dades {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "No és una llista" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} ha actualitzat el seu perfil" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "No és text" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} ha esborrat el grup {group}" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Aquest progenitor crearia un bucle en la jerarquia" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} ha esborrat l'organització {organization}" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" i \"filter_values\" han de tenir la mateixa longitud" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} ha esborrat el conjunt de dades {dataset}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" és requerit quan s;usa \"filter_values\"" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} ha esborrat l'extra {extra} del conjunt de dades {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" és requerit quan s'usa \"filter_fields\"" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" +"{actor} ha esborrat el recurs {resource} del conjunt de dades {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Hi ha un altre camp amb el mateix nom" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} ha creat el grup {group}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "API REST: Creat objecte %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} ha creat l'organització {organization}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "API REST: Creada relació entre paquets: %s %s %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} ha creat el conjunt de dades {dataset}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "API REST: Crear objecte membre %s" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} ha afegitr l'extra {extra} al conjunt de dades {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Esteu intentant crear una organizació com a grup" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} ha afegit el recurs {resource} al conjunt de dades {dataset}" -#: ckan/logic/action/create.py:881 -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/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} s'ha registrat" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Heu de proporcionar una valoració (paràmetre \"rating\")." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} ha esborrat el tag {tag} del conjunt de dades {dataset}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "La valoració ha de ser un valor enter." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} ha començat a seguir {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "La valoració ha d'estar entre %i i %i." +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} ha començat a seguir {user}" -#: ckan/logic/action/create.py:1052 -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/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} ha començat a seguir {group}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Cal que us identifiqueu per a seguir usuaris" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Veure" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "No us podeu seguir a vosaltres mateixos" +#: 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/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Ja esteu seguint {0}" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Gener" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Cal que us identifiqueu per a seguir un dataset" +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Febrer" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "L'usuari {username} no existeix." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Març" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Cal que us identifiqueu per a seguir un grup" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Abril" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "Esborrar Usuari: {0}" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Maig" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "API REST: Esborrat Paquet: %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Juny" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "API REST: Esborrat %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Juliol" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "API REST: Esborrar el membre: %s" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Agost" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id no present a les dades" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Setembre" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "No s'ha trobat el vocabulari \"%s\"" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Octubre" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "No s'ha trobat l'etiqueta \"%s\"" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Novembre" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Cal que us identifiqueu per a seguir qualsevol cosa." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Desembre" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "No esteu seguint {0}" +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Ara mateix" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Recurs no trobat" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "Fa {mins} minut" +msgstr[1] "Fa {mins} minuts" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "No ho especifiqueu si feu servir el paràmetre \"query\"" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "Fa {hours} hora" +msgstr[1] "Fa {hours} hores" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Ha de ser parelles de tipus :" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "Fa {days} dia" +msgstr[1] "Fa {days} dies" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Camp \"{field}\" no reconegut en resource_search." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "Fa {months} mesos" +msgstr[1] "Fa {months} mesos" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "No s'ha trobat el paquet." +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "fa un {years} any" +msgstr[1] "fa uns {years} anys" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "API REST: Actualitzat objecte %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "API REST: Actualitzada la relació entre paquets: %s %s %s" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{day} {month} {year}" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "No s'ha trobat l'estat de tasques" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "No s'ha trobat l'organització." +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: 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/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "L'usuari %s no està autoritzat a editar aquests grups" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: 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/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: 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/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "No autoritzat a crear usuaris" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "No s'ha trobat el grup." +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Es necessita una clau API vàlida per crear un conjunt de dades" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Actualitzeu el vostre avatar a gravatar.com" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Es necessita una clau API vàlida per crear un grup" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Desconegut" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "L'usuari %s no té autorització per a afegir membres" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Recurs sense nom" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "L'usuari %s no està autoritzat a editar el grup %s" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Nou conjunt de dades creat" -#: 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/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Recursos editats." -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" -"No s'ha trobat la vista del recurs, no es pot comprovar l'autorització." +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Preferències editades." -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "vista {number}" +msgstr[1] "vista {number}" -#: 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/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} vistes recents" +msgstr[1] "{number} vistes recents" -#: ckan/logic/auth/delete.py:86 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete group %s" -msgstr "L'usuari %s no està autoritzat a esborrar el grup %s" +msgid "%s <%s>" +msgstr "%s <%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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "No hi ha cap adreça de correu disponible!" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organització" -#: 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/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grup" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "No teniu autorització" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Falta el valor" -#: ckan/logic/auth/get.py:108 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read these packages" -msgstr "L'usuari %s no està autoritzat a llegir aquests conjunts de dades" +msgid "The input field %(name)s was not expected." +msgstr "El camp %(name)s no s'esperava." -#: ckan/logic/auth/get.py:130 -#, 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/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Si us plau entreu un valor enter" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "L'usuari %s no està autoritzat a llegir el recurs %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "Ha de ser una cadena de text Unicode" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "Usuari %s no autoritzat a llegir el grup %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Recurs(os) invàlid(s)" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "Cal que us identifiqueu per a accedir al vostre panell." +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Extres" -#: ckan/logic/auth/update.py:39 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, 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" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "El vocabulari d'etiquetes \"%s\" no existeix" -#: ckan/logic/auth/update.py:71 -#, 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/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "No s'ha pogut interpretar com a JSON vàlid" -#: ckan/logic/auth/update.py:100 -#, 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/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "Cal proporcionar una organització" -#: ckan/logic/auth/update.py:128 -#, 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/validators.py:47 +msgid "Organization does not exist" +msgstr "L'organització no existeix" -#: ckan/logic/auth/update.py:145 -#, 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/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "No podeu afegir un conjunt de dades a aquesta organització" -#: ckan/logic/auth/update.py:162 -#, 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/validators.py:92 +msgid "Invalid integer" +msgstr "Valor enter invàlid" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Cal haver iniciat sessió per editar l'usuari" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Ha de ser un nombre natural" -#: ckan/logic/auth/update.py:197 -#, 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/validators.py:103 +msgid "Must be a postive integer" +msgstr "Ha de ser un valor enter positiu" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "Usuari {0} no autoritzat a actualitzar l'usuari {1}" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Format de la data incorrecte" -#: ckan/logic/auth/update.py:216 -#, 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/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "No es permeten enllaços al missatge de registre" + +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "L'identificador del conjunt de dades ja existeix" + +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Recurs" + +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Aquest nom o identificador de grup no existeix." -#: ckan/logic/auth/update.py:225 +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Tipus d'activitat" + +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Els noms han de ser cadenes de text" + +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Aquest nom no es pot fer servir" + +#: ckan/logic/validators.py:338 #, 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" +msgid "Must be at least %s characters long" +msgstr "Ha de tenir al menys %s caràcters" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "User %s not authorized to update term_translation table" +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:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" msgstr "" -"L'usuari %s no està autoritzat a actualitzar la taula term_translation" +"Ha de ser en minúscules i només contenir números i lletres sense caràcters " +"especials (excepte -_)" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Es necessita una clau API vàlida per editar un conjunt de dades" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Aquesta URL ja està en ús." -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Es necessita una clau API vàlida per editar un grup" +#: ckan/logic/validators.py:366 +#, 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/model/license.py:222 -msgid "License not specified" -msgstr "No s'ha especificat la llicència" +#: ckan/logic/validators.py:370 +#, 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/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:376 +#, 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/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:394 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Clau duplicada \"%s\"" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Aquest nom de grup ja existeix a la base de dades" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:416 +#, 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/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:420 +#, 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/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:428 +#, 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/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "L'etiqueta \"%s\" ha d'estar en minúscules" -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Altres (Oberta)" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Els noms d'usuari han de ser cadenes de text" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Altres (Public Domain)" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Aquest nom de registre no es troba disponible." -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Altres (Atribució)" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Si us plau, introduïu les dues contrasenyes" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Les contrasenyes han de ser cadenes de text" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "La vostra contrasenya ha de tenir 4 caràcters o més" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Altres (No comercial)" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Les contrasenyes introduïdes no coincideixen" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Altres (No oberta)" +#: ckan/logic/validators.py:611 +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/model/package_relationship.py:54 +#: ckan/logic/validators.py:620 #, python-format -msgid "depends on %s" -msgstr "depens de %s" +msgid "Name must be at least %s characters long" +msgstr "El nom ha de tenir al menys %s caràcters" -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is a dependency of %s" -msgstr "és una dependència de %s" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Aquest nom de vocabulari ja existeix." -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:634 #, python-format -msgid "derives from %s" -msgstr "deriva de %s" +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/model/package_relationship.py:55 -#, python-format -msgid "has derivation %s" -msgstr "té la derivació %s" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Vocabulari d'etiquetes no trobat." -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:656 #, python-format -msgid "links to %s" -msgstr "enllaça amb %s" +msgid "Tag %s does not belong to vocabulary %s" +msgstr "L'etiqueta %s no pertany al vocabulari %s" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "is linked from %s" -msgstr "és enllaçat des de %s" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Falta el nom de l'etiqueta" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:675 #, python-format -msgid "is a child of %s" -msgstr "és un fill de %s" +msgid "Tag %s already belongs to vocabulary %s" +msgstr "L'etiqueta %s ja pertany al vocabulari %s" -#: ckan/model/package_relationship.py:57 -#, python-format -msgid "is a parent of %s" -msgstr "és un progenitor de %s" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Si us plau, proporcioneu una URL vàlida" -#: ckan/model/package_relationship.py:61 -#, python-format -msgid "has sibling %s" -msgstr "té el germà %s" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "Aquest rol no existeix" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Carregant..." +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Els conjunts de dades sense organització no poden ser privats." -#: ckan/public/base/javascript/modules/api-info.js:20 -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/logic/validators.py:747 +msgid "Not a list" +msgstr "No és una llista" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Ha fallat la càrrega d'informació de l'API" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "No és text" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "No s'ha trobat coincidències" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Aquest progenitor crearia un bucle en la jerarquia" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Comenceu a escriure..." +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" i \"filter_values\" han de tenir la mateixa longitud" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "L'entrada de dades és massa curta, almenys ha de tenir un caràcter" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" és requerit quan s;usa \"filter_values\"" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Aquest formulari conté modificacions no desades" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" és requerit quan s'usa \"filter_fields\"" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Acció de confirmació" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Hi ha un altre camp amb el mateix nom" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Teniu tota la seguretat per a dur a terme aquesta acció?" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "El correu electrònic {email} no té un format vàlid" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Confirma" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "API REST: Creat objecte %s" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Cancel·lar" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "API REST: Creada relació entre paquets: %s %s %s" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Seguir" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "API REST: Crear objecte membre %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Deixar de seguir" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Esteu intentant crear una organizació com a grup" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Carregar" +#: ckan/logic/action/create.py:893 +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/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Enllaç" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Heu de proporcionar una valoració (paràmetre \"rating\")." -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Esborra" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "La valoració ha de ser un valor enter." -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Imatge" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "La valoració ha d'estar entre %i i %i." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/action/create.py:1064 +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/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Arxiu" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Cal que us identifiqueu per a seguir usuaris" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Pujar un arxiu des del vostre ordinador" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "No us podeu seguir a vosaltres mateixos" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Ja esteu seguint {0}" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Reordenar recursos" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Cal que us identifiqueu per a seguir un dataset" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Desar ordre" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "L'usuari {username} no existeix." -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Desant..." +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Cal que us identifiqueu per a seguir un grup" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Carregar un arxiu" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "Esborrar Usuari: {0}" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Ha tingut lloc un error" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "API REST: Esborrat Paquet: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "El recurs s'ha carregat" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "API REST: Esborrat %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "No es pot carregar l'arxiu" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "API REST: Esborrar el membre: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "No es pot autenticar la càrrega" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id no present a les dades" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "No es pot obtenir les dades per a l'arxiu carregat" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "No s'ha trobat el vocabulari \"%s\"" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Esteu pujant un arxiu. Esteu segurs que voleu marxar de la pàgina i aturar " -"la pujada?" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "No s'ha trobat l'etiqueta \"%s\"" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Reordenar vistes del recurs" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Cal que us identifiqueu per a seguir qualsevol cosa." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Editar" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "No esteu seguint {0}" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Mostra més" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Recurs no trobat" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Oculta" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "No ho especifiqueu si feu servir el paràmetre \"query\"" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Error %(error_code)s" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Ha de ser parelles de tipus :" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Sobre {0}" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Camp \"{field}\" no reconegut en resource_search." -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "API CKAN" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "No s'ha trobat el paquet." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "CKAN Association" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "API REST: Actualitzat objecte %s" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Suportat per CKAN" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "API REST: Actualitzada la relació entre paquets: %s %s %s" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Paràmetres sysadmin" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "No s'ha trobat l'estat de tasques" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Vegeu el perfil" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "No s'ha trobat l'organització." -#: ckan/templates/header.html:26 +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 #, 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:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Panell de control" +msgid "User %s not authorized to create packages" +msgstr "L'usuari %s no està autoritzat a crear conjunts de dades" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Modifica els paràmetres" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "L'usuari %s no està autoritzat a editar aquests grups" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Configuració" +#: 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/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Tancar sessió" +#: 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/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Identificació" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +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/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Registrar-se" +#: 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/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Conjunts de dades" +#: 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/templates/header.html:116 -msgid "Search Datasets" -msgstr "Cerca 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/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Cerca" +#: 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/templates/page.html:6 -msgid "Skip to content" -msgstr "Saltar al contingut" +#: 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/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Carrega menys" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "No autoritzat a crear usuaris" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Carrega més" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "No s'ha trobat el grup." -#: 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/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Es necessita una clau API vàlida per crear un conjunt de dades" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administració" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Es necessita una clau API vàlida per crear un grup" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Sysadmins" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "L'usuari %s no té autorització per a afegir membres" -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Configuració" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "L'usuari %s no està autoritzat a editar el grup %s" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Paperera" +#: 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/templates/admin/config.html:16 -#: 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/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "" +"No s'ha trobat la vista del recurs, no es pot comprovar l'autorització." -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Reinicia" +#: 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/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Actualitzar configuració" +#: 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/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "Opcions de configuració de CKAN" +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/delete.py:103 #, 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.

" +msgid "User %s not authorized to delete organizations" +msgstr "L'usuari %s no té autorització per a eliminar organitzacions" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Confirmeu el reinici" +#: 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/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Administrar CKAN" +#: 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/templates/admin/index.html:20 +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "No teniu autorització" + +#: ckan/logic/auth/get.py:109 #, 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 " +msgid "User %s not authorized to read these packages" +msgstr "L'usuari %s no està autoritzat a llegir aquests conjunts de dades" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Purgar" +#: 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/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" -"

Purgar conjunts de dades esborrats de forma permanent i " -"irreversible.

" +#: 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/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "API de dades de CKAN" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Usuari %s no autoritzat a llegir el grup %s" -#: ckan/templates/ajax_snippets/api_info.html:23 -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" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Cal que us identifiqueu per a accedir al vostre panell." -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

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

" +#: ckan/logic/auth/update.py:39 +#, 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/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Punts d'accés" +#: ckan/logic/auth/update.py:71 +#, 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/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" msgstr "" -"Es pot accedir a la API de dades a través de les següents accions de la API " -"de CKAN." +"L'usuari %s no està autoritzat a canviar l'estat del conjunt de dades %s" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Crea" +#: ckan/logic/auth/update.py:128 +#, 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/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Actualizar / Inserir" +#: ckan/logic/auth/update.py:145 +#, 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/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Consulta" +#: ckan/logic/auth/update.py:162 +#, 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/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Consulta (amb SQL)" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Cal haver iniciat sessió per editar l'usuari" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Consulta" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "L'usuari %s no està autoritzat a editar l'usuari %s" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Exemple de consulta (primers 5 resultats)" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "Usuari {0} no autoritzat a actualitzar l'usuari {1}" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Exemple de consulta (resultats que contenen 'jones')" +#: ckan/logic/auth/update.py:217 +#, 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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Exemple de consulta (amb SQL)" +#: ckan/logic/auth/update.py:226 +#, 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/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Exemple: Javascript" +#: ckan/logic/auth/update.py:240 +#, 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/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." +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Es necessita una clau API vàlida per editar un conjunt de dades" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Exemple: Python" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Es necessita una clau API vàlida per editar un grup" -#: 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/model/license.py:222 +msgid "License not specified" +msgstr "No s'ha especificat la llicència" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Cliqueu aquí per a obtenir més informació" - -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Descarregueu el recurs" - -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "El vostre navegador no suporta iframes." +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Previsualització no disponible." +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Més detalls..." +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: 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/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Estàndard" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Entrada Estàndard" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Mitjà" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Entrada de llargada mitja" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Altres (Oberta)" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Complerta" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Altres (Public Domain)" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Entrada de llargada complerta" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Altres (Atribució)" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Llarga" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Entrada llarga" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Afegir abans" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Altres (No comercial)" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Entrada d'afegir abans" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Altres (No oberta)" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Camp personalitzat (buit)" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "depens de %s" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Camp personalitzat" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "és una dependència de %s" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "deriva de %s" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Textarea" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "té la derivació %s" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Desplegable" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "enllaça amb %s" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Flux d'activitat" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "és enllaçat des de %s" -#: 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/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "és un fill de %s" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Afegir un grup" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "és un progenitor de %s" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Formulari de grup" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "té el germà %s" -#: 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/public/base/javascript/modules/api-info.js:96 +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/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/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Ha fallat la càrrega d'informació de l'API" -#: 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/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Comenceu a escriure..." -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Gestiona" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "No s'ha trobat coincidències" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Modifiqueu el grup" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/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/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Aquest formulari conté modificacions no desades" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Seguidors" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Acció de confirmació" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Historial" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Teniu tota la seguretat per a dur a terme aquesta acció?" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Afegeix grup" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Confirma" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Cercar grups..." +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Nom Ascendent" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Deixar de seguir" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Nom Descendent" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Seguir" -#: 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/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Enllaç" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "En voleu crear un?" +#: ckan/public/base/javascript/modules/image-upload.js:61 +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/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/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Carregar" -#: 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/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Esborra" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Afegeix un membre" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Pujar un arxiu des del vostre ordinador" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Usuari existent" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "Si voleu afegir un usuari existent, cerqueu el seu nom d'usuari." +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Arxiu" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "o" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Desar ordre" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Usuari nou" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Desant..." -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "Si voleu convidar un nou usuari, introduïu el seu correu electrònic. " +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Carregar un arxiu" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Rol" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Ha tingut lloc un error" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Segur que voleu eliminar aquest membre?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "No es pot carregar l'arxiu" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Esborrar" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "No es pot autenticar la càrrega" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Desar" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "El recurs s'ha carregat" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Què són els rols?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "No es pot obtenir les dades per a l'arxiu carregat" -#: ckan/templates/group/member_new.html:81 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"

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

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

" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" msgstr "" -"

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

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

" +"Esteu pujant un arxiu. Esteu segurs que voleu marxar de la pàgina i aturar " +"la pujada?" -#: 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/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Afegir filtre" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Modifica grup" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "Selecciona un camp" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Crea grup" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Editar" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Rellevància" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Mostra més" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Última modificació" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Oculta" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Popular" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Error %(error_code)s" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Cercar conjunts de dades..." +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Sobre {0}" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Conjunts de dades del grup: {group}" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API CKAN" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Història recent de revisions" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Nom" +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Suportat per CKAN" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "El meu grup" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Paràmetres sysadmin" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "el-meu-grup" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Vegeu el perfil" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Descripció" +#: ckan/templates/header.html:26 +#, 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/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Una mica d'informació sobre el meu grup..." +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Panell de control" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Segur que voleu eliminar aquest Grup?" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Modifica els paràmetres" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Desa grup" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Configuració" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} Conjunt de dades" -msgstr[1] "{num} Conjunts de dades" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Tancar sessió" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Conjunts de dades" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Identificació" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Vegeu {name}" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registrar-se" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Esborrar conjunt de dades del grup" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Conjunts de dades" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Què són els grups?" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Cerca conjunts de dades" -#: 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/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Cerca" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Comparar" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Saltar al contingut" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Esborrat" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Carrega menys" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "llegiu més" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Carrega més" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Revisió" +#: 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/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Marca horària" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administració" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Autor" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Sysadmins" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Missatge de registre" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Configuració" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Benvinguts" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Paperera" -#: ckan/templates/home/snippets/about_text.html:1 +#: ckan/templates/admin/config.html:16 +#: 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:16 +msgid "Reset" +msgstr "Reinicia" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Actualitzar configuració" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "Opcions de configuració de CKAN" + +#: ckan/templates/admin/config.html:33 +#, python-format 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/

" +"

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 é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/

" +"

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/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Benvinguts a CKAN" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Confirmeu el reinici" -#: ckan/templates/home/snippets/promoted.html:10 +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrar CKAN" + +#: ckan/templates/admin/index.html:20 +#, python-format 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 " +"

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 "" -"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." +"

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/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Aquesta és una secció destacada" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Purgar" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "p.ex. medi ambient" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "" +"

Purgar conjunts de dades esborrats de forma permanent i " +"irreversible.

" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Cercar dades" +#: 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/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Etiquetes freqüents" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Cliqueu aquí per a obtenir més informació" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} estadístiques" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Descarregueu el recurs" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "conjunt de dades" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Previsualització no disponible." -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "conjunts de dades" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Més detalls..." -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organitzacions" +#: 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/home/snippets/stats.html:23 -msgid "groups" -msgstr "grups" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Estàndard" -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" -"Podeu usar el format Markdown" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Entrada Estàndard" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Aquest camp és requerit" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Mitjà" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Personalitzat" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Entrada de llargada mitja" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "El formulari conté camps incorrectes:" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Complerta" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Camp requerit" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Entrada de llargada complerta" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Llarga" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL de la imatge" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Entrada llarga" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Esborrar pujada" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Afegir abans" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Formulari de l'organització" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Entrada d'afegir abans" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Modificar conjunts de dades" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Camp personalitzat (buit)" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Afegir conjunts de dades" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Camp personalitzat" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "trobats per \"{query}\"" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" -#: 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/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textarea" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Fer públic" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Desplegable" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Fer privat" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Flux d'activitat" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Esborrany" +#: 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/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Privat" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Afegir un grup" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Formulari de grup" + +#: 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/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:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Gestiona" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Modifiqueu el grup" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Aquesta organització no té conjunts de dades associats" +#: ckan/templates/group/edit_base.html:23 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/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/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Historial" -#: 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/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Afegeix grup" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Afegiu organització" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Cercar grups..." -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "Cercar organitzacions..." +#: 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/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/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "En voleu crear un?" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nom d'usuari" +#: ckan/templates/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/organization/member_new.html:50 -msgid "Email address" -msgstr "Adreça de correu electrònic" +#: 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/organization/member_new.html:62 -msgid "Update Member" -msgstr "Actualitzar membre" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Afegeix un membre" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Usuari existent" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Creeu una organització" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "Si voleu afegir un usuari existent, cerqueu el seu nom d'usuari." -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Afegiu una organització" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "o" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Creeu una organització" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Usuari nou" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Afegir conjunt de dades" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Si voleu convidar un nou usuari, introduïu el seu correu electrònic. " -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Conjunts de dades a l'organització: {group}" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Rol" -#: 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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Esborrar" -#: ckan/templates/organization/snippets/helper.html:8 +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Què són els rols?" + +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" 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ó" +"

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/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "la-meva-organitzacio" +#: 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/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Una mica d'informació sobre la meva organització..." +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Modifica grup" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" -"Esteu segurs que voleu eliminar aquesta organització? Això eliminarà tots " -"els seus conjunts de dades, tant públics com privats." +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Crea grup" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Desa l'organització" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Cercar conjunts de dades..." -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Veure {organization_name}" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Conjunts de dades del grup: {group}" -#: ckan/templates/package/base.html:22 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/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Història recent de revisions" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Què són els conjunts de dades?" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Nom" -#: 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/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "El meu grup" -#: 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/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "el-meu-grup" -#: 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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Una mica d'informació sobre el meu grup..." -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Mostra conjunt de dades" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Segur que voleu eliminar aquest Grup?" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Editar metadades" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Desa grup" -#: 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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Vegeu {name}" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Previsualització" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Esborrar conjunt de dades del grup" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Actualitza" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Què són els grups?" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Associar aquest grup amb aquest dataset" +#: 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/package/group_list.html:14 -msgid "Add to group" -msgstr "Afegeix al grup" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Comparar" -#: 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/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Esborrat" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Modifica el conjunt de dades" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "llegiu més" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Afegeix dades al conjunt de dades" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Revisió" -#: 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/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Marca horària" -#: 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/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Autor" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Recurs nou" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Missatge de registre" -#: 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/home/index.html:4 +msgid "Welcome" +msgstr "Benvinguts" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/home/snippets/about_text.html:1 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"

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 "" -"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 é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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Afegir" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Benvinguts a CKAN" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"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 "" -"Aquesta és una revisió antiga d'aquest conjunt de dades, tal i com s'edità " -"el %(timestamp)s. Pot diferir significativament de la revisió actual." +"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/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Pujar a DataStore" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Aquesta és una secció destacada" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Error en la pujada:" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "p.ex. medi ambient" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Error:" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Cercar dades" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "Traça de l'error:" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Etiquetes freqüents" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Estat" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} estadístiques" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Última actualització" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "conjunt de dades" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Mai" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "conjunts de dades" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Registre de pujada" +#: 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/autoform.html:62 +msgid "Site logo" +msgstr "Logotip del lloc" + +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Podeu usar el format Markdown" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Detalls" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Aquest camp és requerit" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "Fi del registre" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Personalitzat" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Tots els recursos" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "El formulari conté camps incorrectes:" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Mostra recurs" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Camp requerit" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Editar recurs" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL de la imatge" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Vistes" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Esborrar pujada" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "Punt final de la API" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Formulari de l'organització" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Anar al recurs" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Modificar conjunts de dades" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Descarregar" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Afegir conjunts de dades" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "trobats per \"{query}\"" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Del resum del conjunt de dades" +#: 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/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "Font: %(dataset)s" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Fer públic" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "No s'han creat vistes per a aquest recurs" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Fer privat" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "No veieu les vistes esperades?" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Esborrany" -#: ckan/templates/package/resource_read.html:121 -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/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Privat" -#: ckan/templates/package/resource_read.html:123 -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/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Aquesta organització no té conjunts de dades associats" -#: ckan/templates/package/resource_read.html:124 -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/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/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"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/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/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Informació addicional" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Afegiu organització" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Camp" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Cercar organitzacions..." -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Valor" +#: 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/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "desconegut" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nom d'usuari" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Creat" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Adreça de correu electrònic" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Format" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Actualitzar membre" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Llicència" +#: ckan/templates/organization/member_new.html:81 +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/package/resource_views.html:10 -msgid "New view" -msgstr "Nova vista" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} membre" +msgstr[1] "{count} membres" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Aquest recurs no té vistes" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Creeu una organització" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Afegir nou recurs" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Afegiu una organització" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

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

" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Creeu una organització" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Afegir conjunt de dades" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "Documentació de la API" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Conjunts de dades a l'organització: {group}" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "bolcat complert en {format}" +#: 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/package/search.html:56 -#, python-format +#: ckan/templates/organization/snippets/help.html:7 msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " +"

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 "" -"Podeu accedir també a aquest registre usant l'API %(api_link)s (vegeu " -"%(api_doc_link)s) o descarrega-ho a %(dump_link)s." +"

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/package/search.html:60 -#, python-format +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " +" 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 "" -"També podeu accedir a aquest registre usant l'API %(api_link)s (vegeu " -"%(api_doc_link)s)." +"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/package/view_edit_base.html:9 -msgid "All views" -msgstr "Totes les vistes" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "La meva organització" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "Veure vista" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "la-meva-organitzacio" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Previsualitzar vista" +#: 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/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Informació addicional" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Esteu segurs que voleu eliminar aquesta organització? Això eliminarà tots " +"els seus conjunts de dades, tant públics com privats." -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Font" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Desa l'organització" -#: 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/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/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Versió" +#: ckan/templates/package/base.html:22 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/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Estat" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Què són els conjunts de dades?" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Última actualització" +#: 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/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/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/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "Crear una nova organització" +#: 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/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/edit_base.html:16 +msgid "View dataset" +msgstr "Mostra 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/edit_base.html:20 +msgid "Edit metadata" +msgstr "Editar metadades" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "API de dades" +#: 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/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Títol" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Previsualització" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "ex. Un títol descriptiu" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Actualitza" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "ex. el-meu-conjunt-de-dades" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Associar aquest grup amb aquest dataset" -#: 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/group_list.html:14 +msgid "Add to group" +msgstr "Afegeix al grup" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "ex. economia, salut mental, govern" +#: 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/snippets/package_basic_fields.html:41 -msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" -"Les definicions de llicències i la informació addicional la podeu trobar a " -"opendefinition.org " +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Modifica el conjunt de dades" -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organització" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Afegeix dades al conjunt de dades" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Cap organització" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Visibilitat" +#: 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/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Públic" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Recurs nou" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Actiu" +#: 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/snippets/package_form.html:28 +#: ckan/templates/package/new_view.html:19 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." +" Data Explorer views may be slow and unreliable unless the DataStore " +"extension is enabled. For more information, please see the Data Explorer " +"documentation. " 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?" +"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/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Següent: Afegeix Dades" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Afegir" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "" +"Aquesta és una revisió antiga d'aquest conjunt de dades, tal i com s'edità " +"el %(timestamp)s. Pot diferir significativament de la revisió actual." -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Tots els recursos" -#: 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/resource_edit_base.html:19 +msgid "View resource" +msgstr "Mostra recurs" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Email de l'autor" +#: 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/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/resource_edit_base.html:26 +msgid "Views" +msgstr "Vistes" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Email del mantenidor" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "Punt final de la API" -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Modifica el recurs" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Anar al recurs" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" -msgstr "Dades" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Descarregar" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "http://example.com/external-data.csv" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "ex. Preu de l'or el Gener de 2011" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Del resum del conjunt de dades" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Algunes notes útils sobre les dades" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Font: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "ex. CSV, XML o JSON" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "No s'han creat vistes per a aquest recurs" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "Es detectarà automàticament. Podeu deixar-ho en blanc." +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "No veieu les vistes esperades?" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "ex. 2012-06-05" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Mida de l'arxiu" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "ex. 1024" +#: ckan/templates/package/resource_read.html:121 +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/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "Tipus MIME" +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "ex. application/json" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Informació addicional" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Segur que voleu eliminar aquest recurs?" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Camp" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Anterior" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valor" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Desa i afegeix-ne un altre" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "Última actualització de les dades" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Finalitzar" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "desconegut" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Què és un recurs?" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "Última actualització de les metadades" -#: 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/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Creat" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Explora" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Format" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Més informació" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Llicència" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Incrustar" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nova vista" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "La vista del recurs no està disponible en aquest moment." +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Aquest recurs no té vistes" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Incrustar vista del recurs" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Afegir nou recurs" -#: ckan/templates/package/snippets/resource_view.html:66 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, python-format msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +"

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

" 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:69 -msgid "Width" -msgstr "Amplada" - -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Altura" - -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Codi" +"

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

" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Previsualització del recurs" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Dada i recursos" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Documentació de la API" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Aquest conjunt de dades no té dades" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "bolcat complert en {format}" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/search.html:56 #, python-format -msgid "Read dataset as of %s" -msgstr "Llegir el conjunt de dades com a %s" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Crea conjunt de dades" +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/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/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/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "p.ex. Vista" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Totes les vistes" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "p.ex. Informació sobre la vista" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Veure vista" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Afegir filtre" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Previsualitzar vista" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Eliminar filtre" +#: 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/view_form_filters.html:46 -msgid "Filters" -msgstr "Filtres" +#: 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/view_help.html:2 -msgid "What's a view?" -msgstr "Què és una vista?" +#: 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/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/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versió" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Diferències" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Estat" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Diferències entre revisions" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Última actualització" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Diferència" +#: 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/revision/diff.html:54 -msgid "No Differences" -msgstr "Sense diferències" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Crear una nova organització" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Historial de revisions" +#: 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/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Revisions" +#: 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/revision/read.html:30 -msgid "Undelete" -msgstr "Restaurar" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Títol" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Canvis" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "ex. Un títol descriptiu" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Etiquetes dels conjunts de dades" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "ex. el-meu-conjunt-de-dades" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entitat" +#: 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/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Nou element d'activitat" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "ex. economia, salut mental, govern" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Incrustar visor de dades" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Les definicions de llicències i la informació addicional la podeu trobar a " +"opendefinition.org " -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Insereix aquesta vista copiant-la a la teva pàgina web:" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organització" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Escolliu l'amplada i l'alçada en píxels:" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Cap organització" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Amplada:" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Visibilitat" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Alçada:" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Públic" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Estat del DataPusher: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Actiu" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "URL de trackback" +#: 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/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Mostra més {facet_type}" +#: 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/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Mostra només {facet_type} populars" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Següent: Afegeix Dades" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "No hi ha {facet_type} per a aquesta consulta" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Inici" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Idioma" +#: 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/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Vés" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email de l'autor" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "No s'ha indicat la llicència" +#: 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/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Aquest conjunt de dades satisfà la Open Definition." +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email del mantenidor" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "No hi ha cap descripció per a aquesta organització" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Modifica el recurs" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Aquest conjunt de dades no té descripció" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Dades" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Enviar" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Ordena per" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "ex. Preu de l'or el Gener de 2011" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filtrar resultats" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Algunes notes útils sobre les dades" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Prova una altra cerca.

" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "ex. CSV, XML o JSON" -#: ckan/templates/snippets/search_form.html:86 -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/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Es detectarà automàticament. Podeu deixar-ho en blanc." -#: 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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "ex. 2012-06-05" -#: 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/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Mida de l'arxiu" -#: 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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "ex. 1024" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "No s'ha trobat cap conjunt de dades" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "Tipus MIME" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "ex. application/json" -#: 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/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Segur que voleu eliminar aquest recurs?" -#: 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/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Anterior" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "No s'ha trobat cap grup" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Desa i afegeix-ne un altre" -#: 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/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Finalitzar" -#: 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/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Què és un recurs?" -#: 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/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/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "No s'ha trobat cap organització" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Explora" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Social" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Més informació" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Subscriure" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Incrustar" -#: 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:82 -msgid "Email" -msgstr "Correu electrònic" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "La vista del recurs no està disponible en aquest moment." -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Incrustar vista del recurs" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Edicions" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Podeu copiar i enganxar el codi d'incrustació en un CMS o blog que suporti " +"codi HTML" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Etiquetes de la cerca" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Amplada" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Font de notícies" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Altura" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Els meus conjunts de dades" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Codi" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Les meves organitzacions" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Previsualització del recurs" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "El meus grups" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Dada i recursos" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Activitat dels elements que segueixo" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Aquest conjunt de dades no té dades" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "No has creat conjunts de dades." +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Llegir el conjunt de dades com a %s" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Vos crear-ne un ara?" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Crea conjunt de dades" -#: 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/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/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "No sóu membre de cap organització." +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "p.ex. Vista" -#: 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/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "p.ex. Informació sobre la vista" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Informació del compte" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Eliminar filtre" -#: 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/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Què és una vista?" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Canviar detalls" +#: 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/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Nom complet" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Diferències" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "ex. Joe Bloggs" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Diferències entre revisions" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "eg. joan@exemple.com" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Diferència" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Una mica d'informació sobre tu" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Sense diferències" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Subscriu-me als correus de notificació" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Historial de revisions" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Canviar contrasenya" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Revisions" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "Contrasenya d'administrador" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Restaurar" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Contrasenya" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Canvis" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Confirma la contrasenya" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Etiquetes dels conjunts de dades" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Esteu segurs que voleu eliminar aquest usuari?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entitat" -#: ckan/templates/user/edit_user_form.html:51 -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/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Nou element d'activitat" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Regenerar clau de la API" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Incrustar visor de dades" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Actualitza el perfil" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Insereix aquesta vista copiant-la a la teva pàgina web:" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Tots els usuaris" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Escolliu l'amplada i l'alçada en píxels:" -#: 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/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Amplada:" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Necessites un compte?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Alçada:" -#: 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/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Estat del DataPusher: {status}." -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Crea un compte." +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "URL de trackback" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Heu oblidat la contrasenya?" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Mostra més {facet_type}" -#: 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/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Mostra només {facet_type} populars" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Heu oblidat la contrasenya?" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "No hi ha {facet_type} per a aquesta consulta" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Desconnectat" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Inici" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Us heu desconnectat." +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Idioma" -#: 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/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Vés" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Tancar sessió" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "No s'ha indicat la llicència" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Recorda'm" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Aquest conjunt de dades satisfà la Open Definition." -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Ja estàs identificat" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "No hi ha cap descripció per a aquesta organització" -#: ckan/templates/user/logout_first.html:24 -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/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Aquest conjunt de dades no té descripció" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Desconnecta'm ara" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Enviar" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Registre" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Ordena per" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Registra'm amb un Compte" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filtrar resultats" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Per què registrar-me?" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Prova una altra cerca.

" -#: 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/snippets/search_form.html:86 +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/user/new_user_form.html:5 -msgid "username" -msgstr "usuari" +#: 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/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Nom complet" +#: 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/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Crea compte" +#: 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/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Reinicia la teva contrasenya" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "No s'ha trobat cap conjunt de dades" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Reinicia la contrasenya" +#: 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/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Modifica la contrasenya" +#: 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/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Com funciona això?" +#: 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/user/perform_reset.html:40 -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/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "No s'ha trobat cap grup" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "L'usuari no ha creat encara conjunts de dades." +#: 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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "No has proporcionat una biografia." +#: 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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Aquest usuari no té biografia." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "No s'ha trobat cap organització" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Significa que només tu pots veure'l" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Membre des de" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Subscriure" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "Clau API" +#: 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:82 +msgid "Email" +msgstr "Correu electrònic" -#: 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/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Reiniciar contrasenya" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Edicions" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Sol·licitar reinici" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Etiquetes de la cerca" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Entra el teu nom d'usuari dins del quadre i t'enviarem un correu amb un " -"enllaç per a entrar la contrasenya" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Font de notícies" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Activitat des de:" +#: 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/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Llista de resultats..." +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Les meves organitzacions" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "No esteu seguint res" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "El meus grups" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Cap seguidor" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Activitat dels elements que segueixo" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Cercar usuaris" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "No has creat conjunts de dades." -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Complet" +#: 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:16 +msgid "Create one now?" +msgstr "Vos crear-ne un ara?" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Pendent" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "No sóu membre de cap grup." -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Enviant" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "No sóu membre de cap organització." -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Encara no pujat" +#: 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" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Recurs de la DataStore no trobat" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informació del compte" -#: ckanext/datastore/db.py:663 +#: ckan/templates/user/edit.html:19 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -"Les dades són invàlides (per exemple: un valor numèric fora del seu rang o " -"que ha sigut afegit en un camp de text)." - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -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}" +"El teu perfil permet a d'altres usuaris de CKAN que sàpigan qui ets i què " +"fas." -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Conjunts de dades per pàgina" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Canviar detalls" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Configuració de prova" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Nom complet" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Camp personalitzat ascendent" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "ex. Joe Bloggs" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Camp personalitzat descendent" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "eg. joan@exemple.com" -#: 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" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Una mica d'informació sobre tu" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "text personalitzat" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Subscriu-me als correus de notificació" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Codi de país" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Canviar contrasenya" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "Text personalitzat" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "Contrasenya d'administrador" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "This is an untranslated string" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Contrasenya" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Aquest grup no té descripció" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Confirma la contrasenya" -#: ckanext/example_theme/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/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Esteu segurs que voleu eliminar aquest usuari?" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "URL de la imatge" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Esteu segurs de que voleu regenerar la clau de la API?" -#: 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)" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Regenerar clau de la API" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Explorador de dades" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Actualitza el perfil" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Taula" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Tots els usuaris" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Gràfic" +#: 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ó" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Mapa" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Necessites un compte?" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "Error carregant la vista" +#: 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." -#: 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" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Crea un compte." -#: 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" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Heu oblidat la contrasenya?" -#: 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" +#: 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." -#: 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" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Heu oblidat la contrasenya?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Tipus de gràfic" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Desconnectat" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Grup (Eix 1)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Us heu desconnectat." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Sèrie (Eix 2)" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Ja estàs identificat com a {user}" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Tipus de camp" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Tancar sessió" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Camp de latitud" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Recorda'm" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Camp de longitud" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Ja estàs identificat" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "Camp GeoJSON" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Zoom autòmatic" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Desconnecta'm ara" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Agregar marcadors" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registre" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Nombre total de conjunts de dades" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registra'm amb un Compte" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Data" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Per què registrar-me?" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Total de conjunts de dades" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Crea conjunts de dades, grups i altres coses excitants" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Revisions setmanals del conjunt de dades" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "usuari" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Totes les revisions del conjunt de dades" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nom complet" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Nous conjunts de dades" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Crea compte" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Conjunts de dades més ben valorats" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Reinicia la teva contrasenya" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Valoració mitjana" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Reinicia la contrasenya" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Nombre de valoracions" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Modifica la contrasenya" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Sense valoracions" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Com funciona això?" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Conjunts de dades més editats" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "" +"Simplement introdueix una nova contrasenya i modificarem el teu compte" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Nombre d'edicions" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "L'usuari no ha creat encara conjunts de dades." -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Conjunts de dades sense editar" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "No has proporcionat una biografia." -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Grups més grans" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Aquest usuari no té biografia." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Nombre de conjunts de dades" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "No hi ha grups" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Significa que només tu pots veure'l" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Etiquetes més freqüents" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Membre des de" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Nom de l'etiqueta" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "Clau API" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Nombre de conjunts de dades" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Reinicieu la vostra contrasenya" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "Usuaris que han creat més conjunts de dades" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Reiniciar contrasenya" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Menu d'estadístiques" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Sol·licitar reinici" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Nombre total de conjunts de dades" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "" +"Entra el teu nom d'usuari dins del quadre i t'enviarem un correu amb un " +"enllaç per a entrar la contrasenya" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Text" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Activitat des de:" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" -msgstr "S'ha produït un error: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Llista de resultats..." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Lloc web" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "No esteu seguint res" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "URL del lloc web" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Cap seguidor" -#: 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/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Cercar usuaris" diff --git a/ckan/i18n/ckan.pot b/ckan/i18n/ckan.pot index 8fab9bd06f8..353ed3f7d1f 100644 --- a/ckan/i18n/ckan.pot +++ b/ckan/i18n/ckan.pot @@ -1,4402 +1,4499 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.3.4\n" +"Generated-By: Babel 2.4.0\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" msgstr "" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" msgstr "" -#: ckan/authz.py:195 -msgid "Editor" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" msgstr "" -#: ckan/authz.py:199 -msgid "Member" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" msgstr "" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" msgstr "" -#: ckan/controllers/admin.py:50 -msgid "Site Title" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" msgstr "" -#: ckan/controllers/admin.py:51 -msgid "Style" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" msgstr "" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" msgstr "" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" msgstr "" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" msgstr "" -#: ckan/controllers/admin.py:54 -msgid "About page text" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" msgstr "" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" msgstr "" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" msgstr "" -#: ckan/controllers/admin.py:57 -msgid "Homepage" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" msgstr "" -#: ckan/controllers/admin.py:160 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" msgstr "" -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" msgstr "" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" +#: ckanext/datastore/controller.py:46 +#, python-format +msgid "format: must be one of %s" msgstr "" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" msgstr "" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." msgstr "" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" msgstr "" -#: ckan/controllers/api.py:134 -msgid "Bad request" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" msgstr "" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" msgstr "" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" msgstr "" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" msgstr "" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "The Data API can be accessed via the following actions of the CKAN action API." msgstr "" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" msgstr "" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" msgstr "" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" msgstr "" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" msgstr "" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" msgstr "" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" msgstr "" -#: ckan/controllers/api.py:498 -msgid "No revision specified" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" msgstr "" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." msgstr "" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" msgstr "" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 ckan/templates/package/base.html:14 -msgid "Organizations" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 ckan/templates/revision/diff.html:16 -#: ckan/templates/revision/read.html:84 -msgid "Groups" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 ckan/templates/tag/index.html:3 -#: ckan/templates/tag/index.html:6 ckan/templates/tag/index.html:12 -msgid "Tags" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" msgstr "" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" msgstr "" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" msgstr "" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" msgstr "" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" msgstr "" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:626 -msgid "Organization has been deleted." +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:628 -msgid "Group has been deleted." +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" msgstr "" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" msgstr "" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" msgstr "" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" msgstr "" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." +#: 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 "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" msgstr "" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" msgstr "" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" msgstr "" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" msgstr "" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" +#: 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/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -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/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" +#: 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 "" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." +#: 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/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" msgstr "" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" msgstr "" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" msgstr "" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported (template" -" file {file} not found)." +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" msgstr "" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" msgstr "" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" msgstr "" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" msgstr "" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" msgstr "" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" msgstr "" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" msgstr "" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" msgstr "" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" msgstr "" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" msgstr "" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" msgstr "" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" msgstr "" -#: ckan/controllers/package.py:1167 -msgid "No download is available" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" msgstr "" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" msgstr "" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" msgstr "" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" msgstr "" -#: ckan/controllers/package.py:1495 -msgid "View not found" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" msgstr "" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" msgstr "" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" msgstr "" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" msgstr "" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" msgstr "" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" msgstr "" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" msgstr "" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" msgstr "" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" msgstr "" -#: ckan/controllers/tag.py:60 -msgid "Other" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" msgstr "" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" msgstr "" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" msgstr "" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" msgstr "" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" msgstr "" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" msgstr "" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" msgstr "" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" msgstr "" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" msgstr "" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" msgstr "" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" msgstr "" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" msgstr "" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" msgstr "" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" msgstr "" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" msgstr "" -#: ckan/controllers/user.py:386 -msgid "incorrect password" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." msgstr "" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" msgstr "" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" msgstr "" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" +#: ckan/authz.py:198 +msgid "Editor" msgstr "" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" +#: ckan/authz.py:202 +msgid "Member" msgstr "" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" msgstr "" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" +#: ckan/controllers/admin.py:50 +msgid "Site Title" msgstr "" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." +#: ckan/controllers/admin.py:51 +msgid "Style" msgstr "" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" msgstr "" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" msgstr "" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:565 -msgid "The passwords you entered do not match." +#: ckan/controllers/admin.py:55 +msgid "About page text" msgstr "" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" msgstr "" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" msgstr "" -#: ckan/controllers/user.py:640 -msgid "{0} not found" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" msgstr "" -#: ckan/controllers/user.py:654 -msgid "Everything" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" msgstr "" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" +#: ckan/controllers/admin.py:58 +msgid "Homepage" msgstr "" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" msgstr "" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" msgstr "" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" msgstr "" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." msgstr "" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" msgstr "" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" msgstr "" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" msgstr "" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" msgstr "" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" msgstr "" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" msgstr "" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" msgstr "" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" msgstr "" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" msgstr "" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" msgstr "" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" msgstr "" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" msgstr "" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" msgstr "" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" msgstr "" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" msgstr "" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" msgstr "" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" msgstr "" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" msgstr "" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" 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:19 -msgid "January" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." msgstr "" -#: ckan/lib/formatters.py:23 -msgid "February" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" msgstr "" -#: ckan/lib/formatters.py:27 -msgid "March" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" msgstr "" -#: ckan/lib/formatters.py:31 -msgid "April" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" msgstr "" -#: ckan/lib/formatters.py:35 -msgid "May" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 ckan/templates/package/base.html:14 +msgid "Organizations" msgstr "" -#: ckan/lib/formatters.py:39 -msgid "June" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 ckan/templates/group/edit_base.html:10 +#: 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:105 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 ckan/templates/revision/diff.html:16 +#: ckan/templates/revision/read.html:84 +msgid "Groups" msgstr "" -#: ckan/lib/formatters.py:43 -msgid "July" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 ckan/templates/tag/index.html:3 +#: ckan/templates/tag/index.html:6 ckan/templates/tag/index.html:12 +msgid "Tags" msgstr "" -#: ckan/lib/formatters.py:47 -msgid "August" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" msgstr "" -#: ckan/lib/formatters.py:51 -msgid "September" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" msgstr "" -#: ckan/lib/formatters.py:55 -msgid "October" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" msgstr "" -#: ckan/lib/formatters.py:59 -msgid "November" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/lib/formatters.py:63 -msgid "December" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" msgstr "" -#: ckan/lib/formatters.py:116 -msgid "Just now" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" msgstr "" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." msgstr "" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." msgstr "" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" msgstr "" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." msgstr "" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." msgstr "" -#: ckan/lib/formatters.py:189 -msgid "{n}" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" msgstr "" -#: ckan/lib/formatters.py:191 -msgid "{k}k" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " msgstr "" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "" - -#: ckan/lib/formatters.py:195 -msgid "{g}G" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " msgstr "" -#: ckan/lib/formatters.py:197 -msgid "{t}T" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" msgstr "" -#: ckan/lib/formatters.py:199 -msgid "{p}P" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" msgstr "" -#: ckan/lib/formatters.py:201 -msgid "{e}E" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." msgstr "" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " msgstr "" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" msgstr "" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" msgstr "" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" msgstr "" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/mailer.py:39 +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 #, python-format -msgid "%s <%s>" +msgid "Unauthorized to read package %s" msgstr "" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" msgstr "" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " msgstr "" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" msgstr "" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" msgstr "" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." msgstr "" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." msgstr "" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." msgstr "" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." msgstr "" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" msgstr "" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" msgstr "" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" +#: ckan/controllers/package.py:1159 +msgid "No download is available" msgstr "" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" msgstr "" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" msgstr "" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." +#: ckan/controllers/package.py:1486 +msgid "View not found" msgstr "" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" msgstr "" -#: ckan/logic/validators.py:199 -msgid "Resource" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" msgstr "" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" msgstr "" -#: ckan/logic/validators.py:267 -msgid "Activity type" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." msgstr "" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" msgstr "" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." msgstr "" -#: ckan/logic/validators.py:337 +#: ckan/controllers/revision.py:110 #, python-format -msgid "Must be at least %s characters long" +msgid "Datasets affected: %s.\n" msgstr "" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" msgstr "" -#: ckan/logic/validators.py:342 -msgid "Must be purely lowercase alphanumeric (ascii) characters and these symbols: -_" +#: ckan/controllers/tag.py:60 +msgid "Other" msgstr "" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." +#: ckan/controllers/tag.py:74 +msgid "Tag not found" msgstr "" -#: ckan/logic/validators.py:365 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." msgstr "" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" msgstr "" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "" + +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" msgstr "" -#: ckan/logic/validators.py:393 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Duplicate key \"%s\"" +msgid "Unauthorized to edit user %s" msgstr "" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" msgstr "" -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" msgstr "" -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:245 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" +msgid "Unauthorized to create user %s" msgstr "" -#: ckan/logic/validators.py:427 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." msgstr "" -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:265 #, python-format -msgid "Tag \"%s\" must not be uppercase" +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." msgstr "" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." +#: ckan/controllers/user.py:320 +#, python-format +msgid "User %s not authorized to edit %s" msgstr "" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" msgstr "" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" msgstr "" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" +#: ckan/controllers/user.py:386 +msgid "incorrect password" msgstr "" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." msgstr "" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." msgstr "" -#: ckan/logic/validators.py:619 +#: ckan/controllers/user.py:490 #, python-format -msgid "Name must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." +msgid "\"%s\" matched several users" msgstr "" -#: ckan/logic/validators.py:633 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" +msgid "No such user: %s" msgstr "" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." msgstr "" -#: ckan/logic/validators.py:655 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag %s does not belong to vocabulary %s" +msgid "Could not send reset link: %s" msgstr "" -#: ckan/logic/validators.py:661 -msgid "No tag name" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." msgstr "" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." msgstr "" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." msgstr "" -#: ckan/logic/validators.py:711 -msgid "role does not exist." +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." msgstr "" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." msgstr "" -#: ckan/logic/validators.py:746 -msgid "Not a list" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" msgstr "" -#: ckan/logic/validators.py:749 -msgid "Not a string" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" msgstr "" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" +#: ckan/controllers/user.py:640 +msgid "{0} not found" msgstr "" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" +#: ckan/controllers/user.py:654 +msgid "Everything" msgstr "" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" msgstr "" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." msgstr "" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" msgstr "" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" msgstr "" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" msgstr "" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" msgstr "" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" msgstr "" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" msgstr "" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" msgstr "" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" msgstr "" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" msgstr "" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" msgstr "" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" msgstr "" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" msgstr "" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" msgstr "" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" msgstr "" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" msgstr "" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -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/logic/action/delete.py:613 -msgid "You are not following {0}." +#: ckan/lib/formatters.py:19 +msgid "January" msgstr "" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." +#: ckan/lib/formatters.py:23 +msgid "February" msgstr "" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" +#: ckan/lib/formatters.py:27 +msgid "March" msgstr "" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" +#: ckan/lib/formatters.py:31 +msgid "April" msgstr "" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." +#: ckan/lib/formatters.py:35 +msgid "May" msgstr "" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." +#: ckan/lib/formatters.py:39 +msgid "June" msgstr "" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" +#: ckan/lib/formatters.py:43 +msgid "July" msgstr "" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" +#: ckan/lib/formatters.py:47 +msgid "August" msgstr "" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." +#: ckan/lib/formatters.py:51 +msgid "September" msgstr "" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." +#: ckan/lib/formatters.py:55 +msgid "October" msgstr "" -#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 -#, python-format -msgid "User %s not authorized to create packages" +#: ckan/lib/formatters.py:59 +msgid "November" msgstr "" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" +#: ckan/lib/formatters.py:63 +msgid "December" msgstr "" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" +#: ckan/lib/formatters.py:114 +msgid "Just now" msgstr "" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" msgstr "" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" msgstr "" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" msgstr "" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" msgstr "" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" msgstr "" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" msgstr "" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." +#: ckan/lib/formatters.py:187 +msgid "{n}" msgstr "" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" +#: ckan/lib/formatters.py:189 +msgid "{k}k" msgstr "" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" +#: ckan/lib/formatters.py:191 +msgid "{m}M" msgstr "" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" +#: ckan/lib/formatters.py:193 +msgid "{g}G" msgstr "" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" +#: ckan/lib/formatters.py:195 +msgid "{t}T" msgstr "" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" +#: ckan/lib/formatters.py:197 +msgid "{p}P" msgstr "" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." +#: ckan/lib/formatters.py:199 +msgid "{e}E" msgstr "" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" msgstr "" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" msgstr "" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" msgstr "" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" msgstr "" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." msgstr "" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." msgstr "" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." msgstr "" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/auth/get.py:149 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to read resource %s" +msgid "%s <%s>" msgstr "" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" msgstr "" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" msgstr "" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" msgstr "" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" msgstr "" -#: ckan/logic/auth/update.py:100 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to change state of package %s" +msgid "The input field %(name)s was not expected." msgstr "" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" msgstr "" -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" msgstr "" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" msgstr "" -#: ckan/logic/auth/update.py:197 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit user %s" +msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" msgstr "" -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" msgstr "" -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" msgstr "" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" msgstr "" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" msgstr "" -#: ckan/model/license.py:222 -msgid "License not specified" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" msgstr "" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" msgstr "" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." msgstr "" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" msgstr "" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" +#: ckan/logic/validators.py:200 +msgid "Resource" msgstr "" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." msgstr "" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:268 +msgid "Activity type" msgstr "" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" msgstr "" -#: ckan/model/license.py:301 -msgid "Other (Open)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" msgstr "" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" msgstr "" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:343 +msgid "Must be purely lowercase alphanumeric (ascii) characters and these symbols: -_" msgstr "" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." msgstr "" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" +#: ckan/logic/validators.py:366 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" +#: ckan/logic/validators.py:370 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:376 #, python-format -msgid "depends on %s" +msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:394 #, python-format -msgid "is a dependency of %s" +msgid "Duplicate key \"%s\"" msgstr "" -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "derives from %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" msgstr "" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:416 #, python-format -msgid "has derivation %s" +msgid "Tag \"%s\" length is less than minimum %s" msgstr "" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:420 #, python-format -msgid "links to %s" +msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:428 #, python-format -msgid "is linked from %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:436 #, python-format -msgid "is a child of %s" +msgid "Tag \"%s\" must not be uppercase" msgstr "" -#: ckan/model/package_relationship.py:57 -#, python-format -msgid "is a parent of %s" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" msgstr "" -#: ckan/model/package_relationship.py:61 -#, python-format -msgid "has sibling %s" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." msgstr "" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" msgstr "" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" +#: ckan/logic/validators.py:662 +msgid "No tag name" msgstr "" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" +#: ckan/logic/validators.py:712 +msgid "role does not exist." msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 ckan/templates/snippets/search_form.html:68 -msgid "Remove" +#: ckan/logic/validators.py:747 +msgid "Not a list" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" +#: ckan/logic/validators.py:750 +msgid "Not a string" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." msgstr "" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" msgstr "" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" msgstr "" -#: ckan/templates/footer.html:9 -msgid "About {0}" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" msgstr "" -#: ckan/templates/footer.html:15 -msgid "CKAN API" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." msgstr "" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." msgstr "" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -#: ckan/templates/header.html:19 -msgid "View profile" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" msgstr "" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" +msgid "REST API: Delete %s" msgstr "" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/templates/header.html:37 -msgid "Settings" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" msgstr "" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 ckan/templates/package/base.html:7 -#: ckan/templates/package/base.html:17 ckan/templates/package/base.html:21 -#: ckan/templates/package/search.html:4 ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 ckan/templates/user/read.html:5 -#: ckan/templates/user/read_base.html:19 ckan/templates/user/read_base.html:53 -msgid "Datasets" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." msgstr "" -#: ckan/templates/header.html:116 -msgid "Search Datasets" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." msgstr "" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/templates/page.html:6 -msgid "Skip to content" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" msgstr "" -#: ckan/templates/admin/base.html:3 -msgid "Administration" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" msgstr "" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." msgstr "" -#: ckan/templates/admin/base.html:9 -msgid "Config" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." msgstr "" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" msgstr "" -#: ckan/templates/admin/config.html:16 ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" msgstr "" -#: ckan/templates/admin/config.html:17 -msgid "Reset" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" msgstr "" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." msgstr "" -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:76 #, 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.

" +msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" msgstr "" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" msgstr "" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:129 #, 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

" +msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "The Data API can be accessed via the following actions of the CKAN action API." +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:100 #, python-format -msgid "No handler defined for data type: %(type)s." +msgid "User %s not authorized to change state of package %s" msgstr "" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" msgstr "" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" msgstr "" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" msgstr "" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" msgstr "" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" msgstr "" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" msgstr "" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" msgstr "" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" msgstr "" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" msgstr "" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" +#: ckan/model/license.py:222 +msgid "License not specified" msgstr "" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 ckan/templates/user/read_base.html:20 -msgid "Activity Stream" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" 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" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" msgstr "" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" msgstr "" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" msgstr "" -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:16 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -msgid "Confirm Delete" +#: ckan/model/license.py:301 +msgid "Other (Open)" msgstr "" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" 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}?" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" 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:14 -#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 -#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 -msgid "Manage" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" 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" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" msgstr "" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" msgstr "" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" msgstr "" -#: ckan/templates/group/index.html:13 ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" msgstr "" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" msgstr "" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" msgstr "" -#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 -msgid "How about creating one?" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" msgstr "" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" 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" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" msgstr "" -#: ckan/templates/group/member_new.html:10 ckan/templates/group/member_new.html:65 -#: ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" msgstr "" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" msgstr "" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" msgstr "" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" msgstr "" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" msgstr "" -#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" msgstr "" -#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" msgstr "" -#: ckan/templates/group/member_new.html:59 ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 ckan/templates/user/edit_user_form.html:46 -msgid "Delete" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" msgstr "" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" msgstr "" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" msgstr "" -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" msgstr "" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" msgstr "" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 ckan/templates/snippets/search_form.html:68 +msgid "Remove" msgstr "" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" msgstr "" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" msgstr "" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" msgstr "" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" msgstr "" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." msgstr "" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" msgstr "" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" msgstr "" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" msgstr "" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" msgstr "" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +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:12 +msgid "Sysadmin settings" +msgstr "" + +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "" + +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" msgstr[0] "" msgstr[1] "" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" msgstr "" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" msgstr "" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" +#: ckan/templates/header.html:37 +msgid "Settings" msgstr "" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" 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. " +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" msgstr "" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" msgstr "" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 ckan/templates/package/base.html:7 +#: ckan/templates/package/base.html:17 ckan/templates/package/base.html:21 +#: ckan/templates/package/search.html:4 ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 ckan/templates/user/read.html:5 +#: ckan/templates/user/read_base.html:19 ckan/templates/user/read_base.html:53 +msgid "Datasets" msgstr "" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" +#: ckan/templates/header.html:116 +msgid "Search Datasets" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" +#: ckan/templates/page.html:6 +msgid "Skip to content" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" msgstr "" -#: ckan/templates/home/index.html:4 -msgid "Welcome" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" 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/

" +#: ckan/templates/admin/base.html:3 +msgid "Administration" msgstr "" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" msgstr "" -#: ckan/templates/home/snippets/promoted.html:10 +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "" + +#: ckan/templates/admin/config.html:16 ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "" + +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:33 +#, python-format 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 " +"

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/home/snippets/promoted.html:19 -msgid "This is a featured section" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" msgstr "" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" msgstr "" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" +#: 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/home/snippets/search.html:16 -msgid "Popular tags" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" msgstr "" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." msgstr "" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" msgstr "" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." msgstr "" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "" + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 #, python-format -msgid "" -"You can use Markdown formatting here" +msgid "No handler defined for data type: %(type)s." msgstr "" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" msgstr "" -#: ckan/templates/macros/form.html:265 -msgid "Custom" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" msgstr "" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" msgstr "" -#: ckan/templates/macros/form.html:395 -msgid "Required field" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" msgstr "" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" msgstr "" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" msgstr "" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" msgstr "" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" +#: 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/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" msgstr "" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" msgstr "" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" msgstr "" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" msgstr "" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" msgstr "" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 ckan/templates/user/read_base.html:20 +msgid "Activity Stream" msgstr "" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 ckan/templates/snippets/package_item.html:40 -msgid "Draft" +#: 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/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 -#: ckan/templates/user/read_base.html:96 -msgid "Private" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" msgstr "" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" msgstr "" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" +#: 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/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" msgstr "" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" +#: 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/organization/index.html:20 -msgid "Search organizations..." +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 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:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 +msgid "Manage" msgstr "" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" msgstr "" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" +#: ckan/templates/group/edit_base.html:23 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" msgstr "" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" msgstr "" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" +#: ckan/templates/group/index.html:13 ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" msgstr "" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." msgstr "" -#: ckan/templates/organization/new.html:3 ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 ckan/templates/organization/new.html:12 -msgid "Create an Organization" +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 +msgid "How about creating one?" msgstr "" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" msgstr "" -#: ckan/templates/organization/read.html:5 ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" +#: 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/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" +#: ckan/templates/group/member_new.html:10 ckan/templates/group/member_new.html:64 +#: 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" msgstr "" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" 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).

" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -#: ckan/templates/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. " +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 ckan/templates/user/edit_user_form.html:45 +msgid "Delete" msgstr "" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" msgstr "" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" +#: ckan/templates/group/member_new.html:80 +msgid "" +"

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

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

" msgstr "" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" +#: 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/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. " +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" msgstr "" -#: ckan/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" msgstr "" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." msgstr "" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" msgstr "" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" 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" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" msgstr "" -#: ckan/templates/package/edit_view.html:20 ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" msgstr "" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" msgstr "" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." msgstr "" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" msgstr "" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" msgstr "" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" msgstr "" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" msgstr "" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" msgstr "" -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" +#: 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/package/new_resource_not_draft.html:16 -msgid "New resource" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" 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" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" 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. " +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" msgstr "" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" msgstr "" -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" msgstr "" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" msgstr "" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" msgstr "" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" +#: ckan/templates/home/index.html:4 +msgid "Welcome" msgstr "" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" +#: 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/package/resource_data.html:48 -msgid "Status" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" msgstr "" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" +#: 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/package/resource_data.html:56 -msgid "Never" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" msgstr "" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" msgstr "" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" msgstr "" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" msgstr "" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" msgstr "" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" msgstr "" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" msgstr "" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" msgstr "" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" msgstr "" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" msgstr "" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" msgstr "" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" msgstr "" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" +#: ckan/templates/macros/form.html:265 +msgid "Custom" msgstr "" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" msgstr "" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" +#: ckan/templates/macros/form.html:395 +msgid "Required field" msgstr "" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" msgstr "" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" msgstr "" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" msgstr "" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" msgstr "" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" msgstr "" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, or" -" the data may not have been pushed to the DataStore, or the DataStore hasn't " -"finished processing the data yet" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" msgstr "" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" msgstr "" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" msgstr "" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" msgstr "" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" msgstr "" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 ckan/templates/snippets/package_item.html:40 +msgid "Draft" msgstr "" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 +msgid "Private" msgstr "" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" msgstr "" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" msgstr "" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" +#: 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/package/resources.html:8 -msgid "Add new resource" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" msgstr "" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." msgstr "" -#: ckan/templates/package/search.html:52 -msgid "API" +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" msgstr "" -#: ckan/templates/package/search.html:53 -msgid "API Docs" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" msgstr "" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" 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. " +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" msgstr "" -#: ckan/templates/package/search.html:60 -#, python-format +#: ckan/templates/organization/member_new.html:81 msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " +"

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/package/view_edit_base.html:9 -msgid "All views" -msgstr "" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" +#: ckan/templates/organization/new.html:3 ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 ckan/templates/organization/new.html:12 +msgid "Create an Organization" msgstr "" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" +#: ckan/templates/organization/read.html:5 ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" msgstr "" -#: ckan/templates/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" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" +#: 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/package/snippets/additional_info.html:62 -msgid "Last Updated" +#: 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/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:19 -msgid "Ask a system administrator to create an organization before you can continue." +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." msgstr "" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" +#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" +#: 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/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:41 -msgid "" -" License definitions and additional information can be found at opendefinition.org " +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" +#: 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/snippets/package_basic_fields.html:92 -msgid "Public" +#: ckan/templates/package/edit_view.html:20 ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" 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." +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" msgstr "" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" msgstr "" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" 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" +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" +#: 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/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" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" +#: 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/snippets/resource_form.html:24 -msgid "Data" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." msgstr "" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this 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." +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_item.html:36 -msgid "More information" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" msgstr "" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" msgstr "" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" msgstr "" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, python-format +msgid "" +"

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

" 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" +#: ckan/templates/package/search.html:52 +msgid "API" msgstr "" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" +#: ckan/templates/package/search.html:53 +msgid "API Docs" msgstr "" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" +#: 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/snippets/view_form_filters.html:28 -msgid "Remove Filter" +#: 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/snippets/view_form_filters.html:46 -msgid "Filters" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" msgstr "" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" msgstr "" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" msgstr "" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" msgstr "" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" msgstr "" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" +#: 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/revision/diff.html:54 -msgid "No Differences" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" msgstr "" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" msgstr "" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" msgstr "" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" +#: 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/revision/read.html:64 -msgid "Changes" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" msgstr "" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." msgstr "" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" +#: 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/snippets/activity_item.html:3 -msgid "New activity item" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" msgstr "" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" msgstr "" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" msgstr "" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" msgstr "" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" msgstr "" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" +#: 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/snippets/language_selector.html:4 -msgid "Language" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" msgstr "" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" msgstr "" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" msgstr "" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" msgstr "" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" +#: 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/snippets/package_item.html:57 -msgid "This dataset has no description" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" msgstr "" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" +#: 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/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" msgstr "" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" msgstr "" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" msgstr "" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" 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/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" msgstr "" -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" 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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" msgstr "" -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" msgstr "" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" msgstr "" -#: ckan/templates/snippets/social.html:5 -msgid "Social" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" msgstr "" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" 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:82 -msgid "Email" +#: 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/snippets/subscribe.html:5 -msgid "RSS" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" msgstr "" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" msgstr "" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" msgstr "" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." msgstr "" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" msgstr "" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" msgstr "" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" msgstr "" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" msgstr "" -#: ckan/templates/user/dashboard_datasets.html:17 ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" msgstr "" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" msgstr "" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" 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" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" msgstr "" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" msgstr "" -#: ckan/templates/user/edit.html:19 -msgid " Your profile lets other CKAN users know about who you are and what you do. " +#: 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/user/edit_user_form.html:7 -msgid "Change details" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" msgstr "" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" msgstr "" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" msgstr "" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" msgstr "" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" msgstr "" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" msgstr "" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" msgstr "" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" msgstr "" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" msgstr "" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" +#: ckan/templates/revision/read.html:64 +msgid "Changes" msgstr "" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" msgstr "" -#: ckan/templates/user/list.html:3 ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" 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" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" msgstr "" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" msgstr "" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" msgstr "" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" msgstr "" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" msgstr "" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" msgstr "" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." msgstr "" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" msgstr "" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" msgstr "" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" msgstr "" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" msgstr "" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" msgstr "" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" msgstr "" -#: ckan/templates/user/new.html:6 -msgid "Registration" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." msgstr "" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" msgstr "" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" msgstr "" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" msgstr "" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" msgstr "" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" msgstr "" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" msgstr "" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" msgstr "" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -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/user/perform_reset.html:24 -msgid "Update Password" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" msgstr "" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" msgstr "" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -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/user/read_base.html:39 -msgid "You have not provided a biography." +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" msgstr "" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" msgstr "" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" +#: 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/user/read_base.html:87 -msgid "Member Since" +#: 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/user/read_base.html:96 -msgid "API Key" +#: ckan/templates/snippets/social.html:5 +msgid "Social" msgstr "" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" msgstr "" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" +#: 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:82 +msgid "Email" msgstr "" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" msgstr "" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link to" -" enter a new password." +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" msgstr "" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" msgstr "" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" msgstr "" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" msgstr "" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" msgstr "" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" msgstr "" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" msgstr "" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" +#: ckan/templates/user/dashboard_datasets.html:17 ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." msgstr "" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" +#: 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:16 +msgid "Create one now?" msgstr "" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." msgstr "" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." msgstr "" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +#: 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 "" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." +#: ckan/templates/user/edit.html:17 +msgid "Account Info" msgstr "" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" +#: ckan/templates/user/edit.html:19 +msgid " Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" 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" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" msgstr "" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" msgstr "" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" +#: ckan/templates/user/list.html:3 ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" msgstr "" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: 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 "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" +#: ckan/templates/user/new.html:6 +msgid "Registration" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link to" +" enter a new password." msgstr "" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" msgstr "" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" msgstr "" diff --git a/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo b/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo index a472ae3a5a4..94eecce8080 100644 Binary files a/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo and b/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po b/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po index e923f36d1d0..1b2b088b919 100644 --- a/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po +++ b/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po @@ -1,4613 +1,4716 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Jakub Klímek , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Autorizační funkce nebyla nalezena: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Dokončit" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administrátor" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Čekající na zpracování" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Redaktor" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Nahrávání" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Člen" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Chyba" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Pro provádění správy musíte být systémový administrátor" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Dosud nenahráno" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Název portálu" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Datový zdroj nebyl nalezen" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Styl" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Nemáte oprávnění vidět tuto stránku" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Popisek portálu" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Nahrát do DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Malé logo portálu" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Chyba při náhrávání:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Chyba:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Text stránky „O portálu“" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Výpis chyby:" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Úvodní text" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Stav" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Text na domovské stránce" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Naposledy aktualizováno" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Vlastní nebo upravené CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nikdy" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Upravené CSS vkládané do záhlaví stránky" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Záznam nahrávání" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Hlavní stránka" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Podrobnosti" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Konec záznamu" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" -#: ckan/controllers/admin.py:160 +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "formát: musí být jeden z: %s" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Požadovaný zdroj z DataStore nebyl nalezen" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Balíček %s nelze vymazat, dokud propojená revize %s obsahuje nesmazané " -"balíčky %s" +"Data byla nevalidní (příklad: číselná hodnota je mimo rozsah nebo byla " +"vložena do textového pole)" -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Problém při odstraňování revize %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Zdroj \"{0}\" nenalezen." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Vymazat celé" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Uživatel {0} nemá oprávnění upravovat zdroj {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Tato akce není implementována." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "Datové CKAN API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Nemáte oprávnění vidět tuto stránku" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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í" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Přístup zamítnut" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

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

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Nenalezeno" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Přístupové body" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Chybný požadavek" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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í." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Název akce není znám: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Vytvořit" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Chyba JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Aktualizovat / vložit" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Neplatný požadavek na data: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Dotaz" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Nelze vypsat prvky tohoto typu: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Dotaz (pomocí SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Nelze číst prvky tohoto typu: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Zpracování dotazu" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Nelze vytvořit nový prvek tohoto typu: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Příklad dotazu (5 prvních výsledků)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Do vyhledávacího indexu nelze přidat balíček" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Příklad dotazu (výsledky obsahující 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Nelze aktualizovat prvek tohoto typu: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Příklad dotazu (pomocí jazyka SQL)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Vyhledávací index nelze aktualizovat" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Příklad: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Nelze smazat prvek tohoto typu: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +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." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Nebyla vybrána žádná verze" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Příklad: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Revize s id %s neexistuje" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "Pole {num}." -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" -"Chybějící parametr vyhledávání ('since_id=UUID' nebo 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Název" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Nelze číst parametry: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Popis" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Chybný parametr vyhledávání: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Uložit" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Neznamý registr: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Datový slovník" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Špatně naformátovaná hodnota pomocí qjson: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Sloupec" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Parametry požadavku musí mít formu kódování slovníku JSON." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "Typ" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Skupina nebyla nalezena" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Nahrávám..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organizace nebyla nalezena" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Datové API" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Špatný typ skupiny" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tabulka" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organizace" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Responzivní displej" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Skupiny" - -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Tagy" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Zobrazit sloupce" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formáty" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "Skrýt/Zobrazit sloupce" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licence" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Počet datových sad na stránce" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Nemáte oprávnění k provedení hromádné aktualizace" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testovací konfigurace" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Nemáte oprávnění vytvořit skupinu" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevance" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Uživatel %r nemá oprávnění měnit %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Integritní chyba" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:600 -#, 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/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Naposledy změněné" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Nemáte oprávnění odstranit skupinu %s" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Vzestupně dle vlastního pole" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organizace byla odstraněna." +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Sestupně dle vlastního pole" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Skupina byla odstraněna." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Populární" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "Skupina %s byla smazána." +#: 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" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Nemáte oprávnění přidat člena do skupiny %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "vlastní text" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Nemáte oprávnění odstranit členy skupiny %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Kód země" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Člen skupiny byl odstraněn" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "vlastní text zdroje" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Pro porovnání musíte vybrat dvě verze" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Toto je nepřeložený řetězec" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Historie verzí skupiny CKAN" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Nedávné změny skupiny CKAN: " +#: 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" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Zpráva logu: " +#: 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" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Nyní sledujete {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 "Nástroj pro náhled dat CKAN má mnoho mocných funkcí" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Přestal(-a) jste sledovat {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Následovníci" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Nemáte oprávnění zobrazit následovníky %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Zdroje" -#: ckan/controllers/home.py:36 -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/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Obrázek" -#: ckan/controllers/home.py:81 -#, 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. " +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Url obrázku" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -"%s používá Vaši emailovou adresu v případě, že potřebujete obnovit heslo." +"např. http://example.com/image.jpg (používá url zdroje pokud je prázdné)" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Prohlížeč dat" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parametr s názvem \"{parameter_name}\" není celé číslo" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Graf" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Datová sada nenalezena" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Mapa" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Neplatný formát verze: %r" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "Chyba při načítání pohledu" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" -"Zobrazení datasetů typu {package_type} ve formátu {format} není podporováno " -"(soubor šablony {file} nebyl nalezen)." +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "Nelze načíst pohled" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Nemáte oprávnění číst balíček %s" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "Nastala chyba v DataStore" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Historie revizí datových sad CKAN" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "Nastala chyba v DataProxy" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Nedávné změny v datové sadě CKAN: " +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "Mřížka" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Nemáte oprávnění vytvořit balíček" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filtry" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Nemáte oprávnění upravovat tento zdroj" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Posunutí řádků" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Datový zdroj nebyl nalezen" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "např.: 0" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Nemáte oprávnění upravovat datovou sadu" +#: 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" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Datová sada {id} nebyla nalezena" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "např.: 100" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Musíte přidat alespoň jeden datový zdroj" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Typ grafu" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Chyba" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Skupina (Osa 1)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Nemáte oprávnění vytvořit datový zdroj" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Řada (Osa 2)" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Nemáte oprávnění vytvořit zdroj pro tento balíček" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Typ pole" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Do vyhledávacího indexu nelze přidat balíček." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Pole zeměpisné šířky" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Vyhledávací index nelze aktualizovat." +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Pole zeměpisné délky" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Datová sada byla smazána." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Pole GeoJSON" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Nemáte oprávnění smazat balíček %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Automaticky zoomovat na funkce" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Datový zdroj byl odstraněn." +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Značky shluku" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Nemáte oprávnění odstranit datový zdroj %s" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Celkový počet datových sad" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Zobrazení datového zdroje nebylo nalezeno" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Datum" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Data z datového zdroje nebyla nalezena" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Datových sad celkem" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Žádné soubory ke stažení nejsou k dispozici" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Revize datových sad za týden" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Nemáte oprávnění ke čtení datové sady %s" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Všechny revize datových sad" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Nemáte oprávnění číst nebo přistupovat k datovému zdroji %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Nové datové sady" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Nemáte povolení upravovat datový zdroj" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Nejlépe hodnocené datové sady" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Zobrazení nebylo nalezeno" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Průměrné hodnocení" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Typ zobrazení nebyl nalezen" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Počet hodnocení" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Chybná data zobrazení datového zdroje" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Žádná hodnocení" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Zobrazení datového zdroje nebylo dodáno" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Nejčastěji upravované datové sady" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Žádný náhled nebyl definován." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Datová sada" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Historie revizí úložiště CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Počet úprav" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Poslední změny v úložišti CKAN." +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Žádné datové sady nebyly upraveny" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Ovlivněné datové sady: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Největší skupiny" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Revize aktualizována" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Skupina" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Jiné" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Počet datových sad" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Tag nebyl nalezen" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Žádné skupiny" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Uživatel nebyl nalezen" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Nejpoužívanější tagy" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Nemáte oprávnění se registrovat jako uživatel." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Název tagu" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Nemáte oprávnění vytvářet uživatele" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Počet Datových sad" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Nemáte oprávnění smazat uživatele s identifikátorem \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "Uživatelé, kteří tvoří nejvíce datových sad" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Nebyl vybrán žádný uživatel" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Uživatel" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Nemáte oprávnění upravovat uživatele %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Menu statistiky" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profil upraven" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Celkový počet datových sad" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Nemáte oprávnění vytvořit uživatele %s" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Text" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Chybný kontrolní kód. Zkuste to prosím znovu." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Webová stránka" -#: ckan/controllers/user.py:265 -#, 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\"" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL webové stránky" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Nemáte oprávnění upravovat uživatele." +#: 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/controllers/user.py:320 +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Váš prohlížeč nepodporuje iframes." + +#: ckan/authz.py:182 #, python-format -msgid "User %s not authorized to edit %s" -msgstr "Uživatel %s není oprávněn upravovat %s" +msgid "Authorization function not found: %s" +msgstr "Autorizační funkce nebyla nalezena: %s" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Heslo bylo zadáno špatně" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administrátor" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Staré heslo" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Redaktor" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "nesprávné heslo" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Člen" -#: ckan/controllers/user.py:427 -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/admin.py:34 +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/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Nemáte oprávnění požadovat obnovu hesla." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Název portálu" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" odpovídá několika uživatelům" - -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Žádné podobný uživatel: %s" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Styl" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Zkontrolujte prosím, zda nemáte v doručené poště kód pro obnovení." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Popisek portálu" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Nepodařilo se odeslat odkaz pro obnovení: %s" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Malé logo portálu" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Nemáte oprávnění obnovit heslo." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Neplatný obnovovaní klíč. Zkuste to prosím znovu." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Text stránky „O portálu“" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Vaše heslo bylo obnoveno." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Úvodní text" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Vaše heslo musí mít alespoň 4 znaky." +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Text na domovské stránce" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Zadaná hesla se neshodují." +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Vlastní nebo upravené CSS" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Musíte zadat heslo" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Upravené CSS vkládané do záhlaví stránky" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Sledovaná položka nebyla nalezena" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Hlavní stránka" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "Nepodařilo se najít {0}" +#: ckan/controllers/admin.py:161 +#, 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/user.py:654 -msgid "Everything" -msgstr "Vše" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problém při odstraňování revize %s: %s" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Chybějící hodnota" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Vymazat celé" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Přesměrování na externí stránky není povoleno" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Tato akce není implementována." -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} přidal(-a) tag {tag} k datasetu {dataset}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Přístup zamítnut" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} upravil(-a) skupinu {group}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Nenalezeno" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} upravil(-a) organizaci {organization}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Chybný požadavek" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} upravil(-a) datovou sadu {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Název akce není znám: %s" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} změnil(-a) rozšiřující atribut {extra} datové sady {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Chyba JSON: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} upravil(-a) zdroj {resource} datové sady {dataset}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Neplatný požadavek na data: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} aktualizoval(-a) profil" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Nelze vypsat prvky tohoto typu: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} odstranil(-a) skupinu {group}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Nelze číst prvky tohoto typu: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} odstranil(-a) organizaci {organization}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Nelze vytvořit nový prvek tohoto typu: %s %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} smazal(-a) datovou sadu {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Do vyhledávacího indexu nelze přidat balíček" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" -"{actor} odstranil(-a) rozšiřující atribut {extra} z datové sady {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Nelze aktualizovat prvek tohoto typu: %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} odstranil(-a) zdroj {resource} z datové sady {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Vyhledávací index nelze aktualizovat" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} vytvořil(-a) skupinu {group}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Nelze smazat prvek tohoto typu: %s %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} vytvořil(-a) organizaci {organization}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Nebyla vybrána žádná verze" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} vytvořil(-a) datovou sadu {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Revize s id %s neexistuje" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -"{actor} přidal(-a) rozšiřující atribut {extra} k datové sadě {dataset}" +"Chybějící parametr vyhledávání ('since_id=UUID' nebo 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} přidal(-a) zdroj {resource} k datové sadě {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Nelze číst parametry: %r" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} se přihlásil(a)" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Chybný parametr vyhledávání: %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} odstranil(-a) tag {tag} z datové sady {dataset}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Neznamý registr: %s" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} nyní sleduje {dataset}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Špatně naformátovaná hodnota pomocí qjson: %r" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} nyní sleduje {user}" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Parametry požadavku musí mít formu kódování slovníku JSON." -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} nyní sleduje {group}" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Skupina nebyla nalezena" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Zobrazení" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organizace nebyla nalezena" -#: 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/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Špatný typ skupiny" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Leden" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organizace" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Únor" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Skupiny" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Březen" - -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Duben" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Tagy" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Květen" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formáty" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Červen" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licence" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Červenec" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Uživatel %r nemá oprávnění měnit %s" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Srpen" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Nemáte oprávnění k provedení hromádné aktualizace" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Září" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Nemáte oprávnění vytvořit skupinu" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Říjen" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Integritní chyba" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Listopad" +#: ckan/controllers/group.py:594 +#, 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/lib/formatters.py:63 -msgid "December" -msgstr "Prosinec" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nemáte oprávnění odstranit skupinu %s" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Právě teď" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organizace byla odstraněna." -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "před {mins} minutou" -msgstr[1] "před {mins} minutami" -msgstr[2] "před {mins} minutami" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Skupina byla odstraněna." -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "před {hours} hodinou" -msgstr[1] "před {hours} hodinami" -msgstr[2] "před {hours} hodinami" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "Skupina %s byla smazána." -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "před {days} dnem" -msgstr[1] "před {days} dny" -msgstr[2] "před {days} dny" +#: ckan/controllers/group.py:653 +#, 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/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "před {months} měsícem" -msgstr[1] "před {months} měsíci" -msgstr[2] "před {months} měsíci" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Nemáte oprávnění přidat člena do skupiny %s" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "před více než {years} rokem" -msgstr[1] "před více než {years} roky" -msgstr[2] "před více než {years} roky" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Nemáte oprávnění odstranit členy skupiny %s" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Člen skupiny byl odstraněn" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Pro porovnání musíte vybrat dvě verze" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytů" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Historie verzí skupiny CKAN" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Nedávné změny skupiny CKAN: " -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Zpráva logu: " -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Nyní sledujete {0}" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Přestal(-a) jste sledovat {0}" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Nemáte oprávnění zobrazit následovníky %s" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: 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/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/home.py:73 +#, 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/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "Chybný dotaz: {error_message}" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametr s názvem \"{parameter_name}\" není celé číslo" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Datová sada nenalezena" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Neplatný formát verze: %r" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:396 +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/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Prosím, aktualizujte svého avatara na webu gravatar.com" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Nemáte oprávnění číst balíček %s" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Neznámo" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Historie revizí datových sad CKAN" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Nepojmenovaný datový zdroj" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Nedávné změny v datové sadě CKAN: " -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Vytvořit novou datovou sadu." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Nemáte oprávnění vytvořit balíček" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Upravené datové zdroje." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Nemáte oprávnění upravovat tento zdroj" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Upravená nastavení." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Nemáte oprávnění upravovat datovou sadu" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} shlédnutí" -msgstr[1] "{number} shlédnutí" -msgstr[2] "{number} shlédnutí" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Datová sada {id} nebyla nalezena" -#: ckan/lib/helpers.py:1618 -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í" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Musíte přidat alespoň jeden datový zdroj" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Nemáte oprávnění vytvořit datový zdroj" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Není k dispozici žádná e-mailová adresa příjemce!" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Nemáte oprávnění vytvořit zdroj pro tento balíček" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organizace" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Do vyhledávacího indexu nelze přidat balíček." -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "skupina" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Vyhledávací index nelze aktualizovat." -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Chybějící hodnota" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Datová sada byla smazána." -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "Neočekávaný název vstupního pole %(name)s" +msgid "Unauthorized to delete package %s" +msgstr "Nemáte oprávnění smazat balíček %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Prosím, zadejte celočíselnou hodnotu" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Datový zdroj byl odstraněn." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Zdroje" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Nemáte oprávnění odstranit datový zdroj %s" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Neplatný zdroj balíčku" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Zobrazení datového zdroje nebylo nalezeno" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Vlastní položky" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Data z datového zdroje nebyla nalezena" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Slovník tagů \"%s\" neexistuje" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Žádné soubory ke stažení nejsou k dispozici" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Uživatel" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Nemáte oprávnění ke čtení datové sady %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Datová sada" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Nemáte oprávnění číst nebo přistupovat k datovému zdroji %s" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Skupina" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Nemáte povolení upravovat datový zdroj" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Vstup není platný JSON" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Zobrazení nebylo nalezeno" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Typ zobrazení nebyl nalezen" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organizace neexistuje" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Chybná data zobrazení datového zdroje" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Nemůžete přidat datovou sadu do této organizace" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Zobrazení datového zdroje nebylo dodáno" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Neplatné číslo" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Žádný náhled nebyl definován." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Hodnota musí být přirozené číslo" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Historie revizí úložiště CKAN" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Hodnota musí být kladné celé číslo" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Poslední změny v úložišti CKAN." -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Nesprávný formát data" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Ovlivněné datové sady: %s.\n" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "V log_message nejsou povoleny odkazy." +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Revize aktualizována" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "ID datové sady již existuje" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Jiné" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Datový zdroj" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Tag nebyl nalezen" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Skupina s takovýmto názvem nebo ID neexistuje." +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Nemáte oprávnění se registrovat jako uživatel." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Typ události" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Nemáte oprávnění vytvářet uživatele" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Jména musí být textové řetězece" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Nemáte oprávnění smazat uživatele s identifikátorem \"{user_id}\"." -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Takové jméno nemůže být použito" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Nebyl vybrán žádný uživatel" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Must be at least %s characters long" -msgstr "Musí být alespoň %s znaků" +msgid "Unauthorized to edit user %s" +msgstr "Nemáte oprávnění upravovat uživatele %s" + +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Uživatel nebyl nalezen" + +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profil upraven" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Jméno může mít nejvýše %i znaků" +msgid "Unauthorized to create user %s" +msgstr "Nemáte oprávnění vytvořit uživatele %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Chybný kontrolní kód. Zkuste to prosím znovu." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "Musí být čistě alfanumerické (ascii) malé znaky a tyto symboly: -_" +"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/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Toto URL je již používáno." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Nemáte oprávnění upravovat uživatele." -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, 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" +msgid "User %s not authorized to edit %s" +msgstr "Uživatel %s není oprávněn upravovat %s" -#: ckan/logic/validators.py:369 -#, 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/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Heslo bylo zadáno špatně" -#: ckan/logic/validators.py:375 -#, 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/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Staré heslo" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Duplicitní klíč \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "nesprávné heslo" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Název skupiny již v databázi existuje" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "" +"Přihlášení se nezdařilo. Zadali jste špatné uživatelské jméno nebo heslo." -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Tag \"%s\" je kratší než minimální počet %s znaků" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Nemáte oprávnění požadovat obnovu hesla." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Délka tag \"%s\" je větší než povolené maximum %i" +msgid "\"%s\" matched several users" +msgstr "\"%s\" odpovídá několika uživatelům" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, 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)" +msgid "No such user: %s" +msgstr "Žádné podobný uživatel: %s" -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Zkontrolujte prosím, zda nemáte v doručené poště kód pro obnovení." + +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Tag \"%s\" nesmí obsahovat velká písmena" +msgid "Could not send reset link: %s" +msgstr "Nepodařilo se odeslat odkaz pro obnovení: %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Uživatelská jména musí být textové řetězece" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Nemáte oprávnění obnovit heslo." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Toto přihlašovací jméno není k dispozici." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Neplatný obnovovaní klíč. Zkuste to prosím znovu." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Zadejte prosím obě hesla" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Vaše heslo bylo obnoveno." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Heslo musí být textový řetězec" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Vaše heslo musí mít alespoň 4 znaky." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Heslo musí mít alespoň 4 znaky" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Zadaná hesla se neshodují." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Zadaná hesla se neshodují" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Musíte zadat heslo" -#: ckan/logic/validators.py:610 -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/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Sledovaná položka nebyla nalezena" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Název musí být dlouhý alespoň %s znaků" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "Nepodařilo se najít {0}" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Jméno slovníku je již používáno" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Vše" -#: ckan/logic/validators.py:633 -#, 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/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Chybějící hodnota" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Slovník tagů nebyl nalezen." +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Přesměrování na externí stránky není povoleno" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Tag %s nepatří do slovníku %s" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} přidal(-a) tag {tag} k datasetu {dataset}" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Žádný název tagu" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} upravil(-a) skupinu {group}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Tag %s ve slovníku %s již existuje" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} upravil(-a) organizaci {organization}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Prosím, zadejte platný URL" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} upravil(-a) datovou sadu {dataset}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "role neexistuje." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} změnil(-a) rozšiřující atribut {extra} datové sady {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Datová sada, která nenáleží do žádné organizace, nemůže být soukromá." +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} upravil(-a) zdroj {resource} datové sady {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Toto není seznam" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} aktualizoval(-a) profil" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Toto není textový řetězec" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} odstranil(-a) skupinu {group}" -#: ckan/logic/validators.py:781 -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/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} odstranil(-a) organizaci {organization}" -#: ckan/logic/validators.py:791 -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/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} smazal(-a) datovou sadu {dataset}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" je vyžadováno když je vyplněno \"filter_values\"" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "" +"{actor} odstranil(-a) rozšiřující atribut {extra} z datové sady {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" je vyžadováno když je \"filter_fields\" vyplněno" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} odstranil(-a) zdroj {resource} z datové sady {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Pole schematu se stejným jménem již existuje" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} vytvořil(-a) skupinu {group}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Vytvořit objekt %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} vytvořil(-a) organizaci {organization}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Vytvořit vztah balíčků: %s %s %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} vytvořil(-a) datovou sadu {dataset}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Vytvořit příslušný objekt %s" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "" +"{actor} přidal(-a) rozšiřující atribut {extra} k datové sadě {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Vytvářím organizaci jako skupinu" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} přidal(-a) zdroj {resource} k datové sadě {dataset}" -#: ckan/logic/action/create.py:881 -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/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} se přihlásil(a)" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Musíte vyplnit hodnocení (parametr \"hodnocení\")." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} odstranil(-a) tag {tag} z datové sady {dataset}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Hodnocení musí být celé číslo." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} nyní sleduje {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Hodnocení musí být číslo mezi %i a %i." +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} nyní sleduje {user}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} nyní sleduje {group}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Abyste mohl(-a) sledovat uživatele, musíte se přihlásit" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Zobrazení" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Nemůžete sledovat sami sebe" +#: 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}" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "{0} již sledujete" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Leden" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Abyste mohl(-a) sledovat datovou sadu, musíte se přihlásit." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Únor" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Uživatel s uživatelským jménem {username} neexistuje." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Březen" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Abyste mohl(-a) sledovat skupinu, musíte se přihlásit." +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Duben" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Květen" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Smazat balíček: %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Červen" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Smazat %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Červenec" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Smazat člena: %s" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Srpen" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "data neobsahují id" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Září" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Nelze najít slovník \"%s\"" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Říjen" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Nelze najít tag \"%s\"" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Listopad" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Abyste mohl(-a) cokoli přestat sledovat, musí se přihlásit." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Prosinec" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Nesledujete {0}." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Právě teď" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Zdroj nebyl nalezen." +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "před {mins} minutou" +msgstr[1] "před {mins} minutami" +msgstr[2] "před {mins} minutami" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Neuvádět, pokud používáte parametr „vyhledávání“" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "před {hours} hodinou" +msgstr[1] "před {hours} hodinami" +msgstr[2] "před {hours} hodinami" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Je třeba uvést dvojici(-e) :" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "před {days} dnem" +msgstr[1] "před {days} dny" +msgstr[2] "před {days} dny" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Pole \"{field}\" nebylo rozpoznáno během vyhledávání zdrojů." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "před {months} měsícem" +msgstr[1] "před {months} měsíci" +msgstr[2] "před {months} měsíci" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Balíček nebyl nalezen." +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "před více než {years} rokem" +msgstr[1] "před více než {years} roky" +msgstr[2] "před více než {years} roky" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Aktualizovat objekt %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{day} {month} {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Aktualizovat vztah balíčků: %s %s %s" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus nenalezen." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytů" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organizace nenalezena." +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: 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/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Uživatel %s nemá oprávnění upravovat tyto skupiny" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: 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/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: 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/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Nemáte oprávnění vytvářet uživatelské účty" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Skupina nebyla nalezena." +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "K vytvoření balíčku je potřebný platný API klíč" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Prosím, aktualizujte svého avatara na webu gravatar.com" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "K vytvoření skupiny je potřebný platný API klíč" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Neznámo" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Uživatel %s nemá oprávnění přidávat členy" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Nepojmenovaný datový zdroj" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Uživatel %s nemá oprávnění upravovat skupinu %s" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Vytvořit novou datovou sadu." -#: 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/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Upravené datové zdroje." -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "Nebylo nalezeno zobrazení zdroje. Nelze autorizovat." +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Upravená nastavení." -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} shlédnutí" +msgstr[1] "{number} shlédnutí" +msgstr[2] "{number} shlédnutí" -#: 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/lib/helpers.py:1650 +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í" -#: ckan/logic/auth/delete.py:86 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete group %s" -msgstr "Uživatel %s nemá oprávnění smazat skupinu %s" +msgid "%s <%s>" +msgstr "%s <%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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Není k dispozici žádná e-mailová adresa příjemce!" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizace" -#: 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/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "skupina" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "K této akci nemáte oprávnění" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Chybějící hodnota" -#: ckan/logic/auth/get.py:108 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read these packages" -msgstr "Uživatel %s nemá oprávnění číst tyto balíčky" +msgid "The input field %(name)s was not expected." +msgstr "Neočekávaný název vstupního pole %(name)s" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "Uživatel %s nemá oprávnění číst balíček %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Prosím, zadejte celočíselnou hodnotu" -#: ckan/logic/auth/get.py:149 -#, 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/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "Toto musí být řetězec v Unicode" -#: ckan/logic/auth/get.py:176 -#, 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/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Neplatný zdroj balíčku" -#: ckan/logic/auth/get.py:258 -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/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Vlastní položky" -#: ckan/logic/auth/update.py:39 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit package %s" -msgstr "Uživatel %s nemá oprávnění upravovat balíček %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Slovník tagů \"%s\" neexistuje" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Uživatel %s nemá oprávnění upravovat zdroj %s" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Vstup není platný JSON" -#: ckan/logic/auth/update.py:100 -#, 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/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "Organizace musí být zadána" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "Uživatel %s nemá oprávnění upravovat organizaci %s" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Organizace neexistuje" -#: ckan/logic/auth/update.py:145 -#, 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/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Nemůžete přidat datovou sadu do této organizace" -#: ckan/logic/auth/update.py:162 -#, 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/validators.py:92 +msgid "Invalid integer" +msgstr "Neplatné číslo" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Abyste mohli upravovat uživatele, musíte se přihlásit" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Hodnota musí být přirozené číslo" -#: ckan/logic/auth/update.py:197 -#, 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/validators.py:103 +msgid "Must be a postive integer" +msgstr "Hodnota musí být kladné celé číslo" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "Uživatel {0} není oprávněn aktualizovat data uživatele {1}" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Nesprávný formát data" + +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "V log_message nejsou povoleny odkazy." + +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "ID datové sady již existuje" + +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Datový zdroj" -#: ckan/logic/auth/update.py:216 +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Skupina s takovýmto názvem nebo ID neexistuje." + +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Typ události" + +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Jména musí být textové řetězece" + +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Takové jméno nemůže být použito" + +#: ckan/logic/validators.py:338 #, python-format -msgid "User %s not authorized to change state of revision" -msgstr "Uživatel %s nemá oprávnění měnit stav verze" +msgid "Must be at least %s characters long" +msgstr "Musí být alespoň %s znaků" -#: ckan/logic/auth/update.py:225 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "User %s not authorized to update task_status table" -msgstr "Uživatel %s není oprávněn aktualizovat tabulku task_status" +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:343 +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:361 +msgid "That URL is already in use." +msgstr "Toto URL je již používáno." -#: ckan/logic/auth/update.py:239 +#: ckan/logic/validators.py:366 #, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "Uživatel %s není oprávněn aktualizovat tabulku term_translation" +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/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "K úpravě balíčku je potřebný platný API klíč" +#: ckan/logic/validators.py:370 +#, 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/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "K úpravě skupiny je potřebný platný API klíč" +#: ckan/logic/validators.py:376 +#, 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/model/license.py:222 -msgid "License not specified" -msgstr "Nebyla specifikována licence" +#: ckan/logic/validators.py:394 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Duplicitní klíč \"%s\"" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Název skupiny již v databázi existuje" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:416 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Tag \"%s\" je kratší než minimální počet %s znaků" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:420 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Délka tag \"%s\" je větší než povolené maximum %i" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:428 +#, 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/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Uveďte autora" +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tag \"%s\" nesmí obsahovat velká písmena" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Uveďte autora-Zachovejte licenci" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Uživatelská jména musí být textové řetězece" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Toto přihlašovací jméno není k dispozici." -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Ostatní (Otevřená licence)" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Zadejte prosím obě hesla" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Ostatní (Public Domain - volné dílo)" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Heslo musí být textový řetězec" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Ostatní (Licence s přiznáním autorství)" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Heslo musí mít alespoň 4 znaky" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Zadaná hesla se neshodují" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." msgstr "" -"Creative Commons Neužívejte dílo komerčně (jakákoli takováto CC licence)" +"Úprava nebyla povolena, protože vypadá jako spam. Vyhněte se prosím v popisu" +" odkazům." -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Ostatní (Licence pro nekomerční využití)" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Název musí být dlouhý alespoň %s znaků" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Ostatní (Uzavřená licence)" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Jméno slovníku je již používáno" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:634 #, python-format -msgid "depends on %s" -msgstr "závisí na %s" +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/model/package_relationship.py:54 -#, python-format -msgid "is a dependency of %s" -msgstr "má v závislosti %s" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Slovník tagů nebyl nalezen." -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:656 #, python-format -msgid "derives from %s" -msgstr "je odvozen od %s" +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Tag %s nepatří do slovníku %s" -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "has derivation %s" -msgstr "má odvozeno %s" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Žádný název tagu" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:675 #, python-format -msgid "links to %s" -msgstr "odkazuje na %s" +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tag %s ve slovníku %s již existuje" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "is linked from %s" -msgstr "je odkazován z %s" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Prosím, zadejte platný URL" -#: ckan/model/package_relationship.py:57 -#, python-format -msgid "is a child of %s" -msgstr "je potomkem %s" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "role neexistuje." -#: ckan/model/package_relationship.py:57 -#, python-format -msgid "is a parent of %s" -msgstr "je předkem %s" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Datová sada, která nenáleží do žádné organizace, nemůže být soukromá." -#: ckan/model/package_relationship.py:61 -#, python-format -msgid "has sibling %s" -msgstr "je příbuzné s %s" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Toto není seznam" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Nahrávám..." +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Toto není textový řetězec" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" msgstr "" -"Tento datový zdroj neobsahuje žádná data, která lze poskytnou přes API" +"Přidáním tohoto nadřazeného objektu vytvoříte v rámci hierarchie cyklickou " +"vazbu" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Pokus o získání informací pomocí API selhal" +#: ckan/logic/validators.py:792 +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/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Nenalezena žádná shoda" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" je vyžadováno když je vyplněno \"filter_values\"" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Začněte psát..." +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" je vyžadováno když je \"filter_fields\" vyplněno" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Zadaný vstup je příliš krátký, musíte zadat alespoň jeden znak" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Pole schematu se stejným jménem již existuje" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Tento formulář obsahuje neuložené změny" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "Email {email} není ve správném formátu" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Prosím potvrďte akci" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Vytvořit objekt %s" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Jste si jistí, že chcete provést tuto akci?" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Vytvořit vztah balíčků: %s %s %s" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Potvrdit" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Vytvořit příslušný objekt %s" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Zrušit" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Vytvářím organizaci jako skupinu" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Sledovat" +#: ckan/logic/action/create.py:893 +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/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Přestat sledovat" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Musíte vyplnit hodnocení (parametr \"hodnocení\")." -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Nahrát" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Hodnocení musí být celé číslo." -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Odkaz" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Hodnocení musí být číslo mezi %i a %i." -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Odstranit" +#: ckan/logic/action/create.py:1064 +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/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Obrázek" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Abyste mohl(-a) sledovat uživatele, musíte se přihlásit" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Nemůžete sledovat sami sebe" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Soubor" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "{0} již sledujete" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Nahrát soubor z počítače" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Abyste mohl(-a) sledovat datovou sadu, musíte se přihlásit." -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Uživatel s uživatelským jménem {username} neexistuje." -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Změnit pořadí zdrojů" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Abyste mohl(-a) sledovat skupinu, musíte se přihlásit." -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Uložit pořadí" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "Smazat uživatele: {0}" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Ukládám..." +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Smazat balíček: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Nahrát soubor" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Smazat %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Nastala chyba" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Smazat člena: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Datový zdroj nahrán" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "data neobsahují id" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Nelze nahrát soubor" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Nelze najít slovník \"%s\"" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Nastala chyba autentizace při nahrávání dat" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Nelze najít tag \"%s\"" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Nelze získat data z nahraného souboru" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Abyste mohl(-a) cokoli přestat sledovat, musí se přihlásit." -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Právě nahráváte soubor. Jste si opravdu jistí, že chcete tuto stránku " -"opustit a ukončit tak nahrávání?" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Nesledujete {0}." + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Zdroj nebyl nalezen." -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Změnit pořadí zobrazení datového zdroje" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Neuvádět, pokud používáte parametr „vyhledávání“" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Upravit" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Je třeba uvést dvojici(-e) :" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Ukázat více" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Pole \"{field}\" nebylo rozpoznáno během vyhledávání zdrojů." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Skrýt" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Balíček nebyl nalezen." -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 #, python-format -msgid "Error %(error_code)s" -msgstr "Chyba %(error_code)s" - -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "O {0}" +msgid "REST API: Update object %s" +msgstr "REST API: Aktualizovat objekt %s" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Aktualizovat vztah balíčků: %s %s %s" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus nenalezen." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Využíván CKAN" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organizace nenalezena." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Administrátorská nastavení" +#: 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/templates/header.html:19 -msgid "View profile" -msgstr "Zobrazit profil" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Uživatel %s nemá oprávnění upravovat tyto skupiny" -#: ckan/templates/header.html:26 +#: ckan/logic/auth/create.py:38 #, 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)" +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/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Přehled" +#: 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/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Upravit nastavení" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +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/templates/header.html:37 -msgid "Settings" -msgstr "Nastavení" +#: 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/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Odhlásit" +#: 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/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Přihlásit se" +#: 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/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Registrace" +#: 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/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Datové sady" +#: 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/templates/header.html:116 -msgid "Search Datasets" -msgstr "Vyhledat datasety" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Nemáte oprávnění vytvářet uživatelské účty" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Vyhledat" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Skupina nebyla nalezena." -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Přejít na obsah" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "K vytvoření balíčku je potřebný platný API klíč" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Zobrazit více" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "K vytvoření skupiny je potřebný platný API klíč" -#: 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/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Uživatel %s nemá oprávnění přidávat členy" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administrace" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Uživatel %s nemá oprávnění upravovat skupinu %s" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Administrátoři" +#: 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/templates/admin/base.html:9 -msgid "Config" -msgstr "Konfigurace" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "Nebylo nalezeno zobrazení zdroje. Nelze autorizovat." -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Koš" +#: 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/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "Opravdu chcete resetovat konfiguraci?" +#: 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/templates/admin/config.html:17 -msgid "Reset" -msgstr "Resetovat" +#: 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/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Upravit konfiguraci" +#: 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/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "Konfigurační volby CKAN" +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/delete.py:120 #, 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.

" +msgid "User %s not authorized to delete task_status" +msgstr "Uživatel %s není oprávněn smazat task_status" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Potvrďte reset" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "K této akci nemáte oprávnění" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Spravovat CKAN" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Uživatel %s nemá oprávnění číst tyto balíčky" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/get.py:124 #, 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

" +msgid "User %s not authorized to read package %s" +msgstr "Uživatel %s nemá oprávnění číst balíček %s" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Odstranit" +#: 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/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "

Odstranit smazané datové sady navždy a nevratně.

" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Uživatel %s není oprávněn ke čtení skupiny %s" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "Datové CKAN API" +#: ckan/logic/auth/get.py:252 +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/templates/ajax_snippets/api_info.html:23 -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í" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Uživatel %s nemá oprávnění upravovat balíček %s" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" -"Další informace naleznete v dokumentaci pro datové CKAN API a DataStore.

" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Uživatel %s nemá oprávnění upravovat zdroj %s" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Přístupové body" +#: ckan/logic/auth/update.py:100 +#, 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/templates/ajax_snippets/api_info.html:37 -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í." +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Uživatel %s nemá oprávnění upravovat organizaci %s" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Vytvořit" +#: ckan/logic/auth/update.py:145 +#, 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/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Aktualizovat / vložit" +#: ckan/logic/auth/update.py:162 +#, 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/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Dotaz" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Abyste mohli upravovat uživatele, musíte se přihlásit" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Dotaz (pomocí SQL)" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Uživatel %s nemá oprávnění upravovat uživatele %s" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Zpracování dotazu" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "Uživatel {0} není oprávněn aktualizovat data uživatele {1}" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Příklad dotazu (5 prvních výsledků)" +#: ckan/logic/auth/update.py:217 +#, 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Příklad dotazu (výsledky obsahující 'jones')" +#: ckan/logic/auth/update.py:226 +#, 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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Příklad dotazu (pomocí jazyka SQL)" +#: ckan/logic/auth/update.py:240 +#, 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/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Příklad: Javascript" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "K úpravě balíčku je potřebný platný API klíč" -#: ckan/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." +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "K úpravě skupiny je potřebný platný API klíč" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Příklad: Python" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Nebyla specifikována licence" -#: 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/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Pro více informací klikněte zde." +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Stáhnout zdroj" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Váš prohlížeč nepodporuje iframes." +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Žádný náhled není k dispozici." +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Uveďte autora" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Více podrobností..." +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Uveďte autora-Zachovejte licenci" -#: 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/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Standardní" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Ostatní (Otevřená licence)" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Standardní vstup" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Ostatní (Public Domain - volné dílo)" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Střední" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Ostatní (Licence s přiznáním autorství)" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Středně široký vstup" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Plný" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "" +"Creative Commons Neužívejte dílo komerčně (jakákoli takováto CC licence)" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Vstup plné šířky" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Ostatní (Licence pro nekomerční využití)" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Velký" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Ostatní (Uzavřená licence)" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Velký vstup" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "závisí na %s" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Předřazený" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "má v závislosti %s" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Předřazený vstup" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "je odvozen od %s" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Vlastní pole (prázdné)" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "má odvozeno %s" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Vlastní pole" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "odkazuje na %s" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "je odkazován z %s" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Textová oblast" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "je potomkem %s" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Výběr" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "je předkem %s" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Události" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "je příbuzné s %s" -#: 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/public/base/javascript/modules/api-info.js:96 +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/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Přidat skupinu" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Pokus o získání informací pomocí API selhal" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Formulář skupiny" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Začněte psát..." -#: 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/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Nenalezena žádná shoda" -#: 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/public/base/javascript/modules/autocomplete.js:204 +#, 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ů" -#: 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/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Tento formulář obsahuje neuložené změny" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Spravovat" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Prosím potvrďte akci" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Upravit skupinu" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Jste si jistí, že chcete provést tuto akci?" -#: 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/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Potvrdit" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Následovníci" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Historie" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Přestat sledovat" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Přidat skupinu" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Sledovat" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Vyhledat skupiny..." +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Odkaz" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Jména vzestupně" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Jména sestupně" - -#: 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/public/base/javascript/modules/image-upload.js:61 +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/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/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Nahrá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 "Upravit člena" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Odstranit" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Přidat člena" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Nahrát soubor z počítače" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Existující uživatel" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Pokud si přejete přidat existujícího uživatele, zadejte níže jeho " -"uživatelské jméno a vyhledejte ho." +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Soubor" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "nebo" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Uložit pořadí" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Nový uživatel" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Ukládám..." -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Pokud si přejete pozvat nové uživatele, zadejte jejich emailové adresy." +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Nahrát soubor" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Role" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Nastala chyba" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Jste si jist, že chcete smazat tohoto člena?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Nelze nahrát soubor" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Smazat" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Nastala chyba autentizace při nahrávání dat" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Uložit" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Datový zdroj nahrán" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Co jsou to role?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Nelze získat data z nahraného souboru" -#: ckan/templates/group/member_new.html:81 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"

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

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

" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" 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

" +"Právě nahráváte soubor. Jste si opravdu jistí, že chcete tuto stránku " +"opustit a ukončit tak nahrávání?" -#: 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/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Přidat filtr" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Upravit skupinu" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "Vyberte pole" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Vytvořit skupinu" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Upravit" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevance" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Ukázat více" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Naposledy změněné" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Skrýt" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Populární" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Chyba %(error_code)s" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Vyhledat datasety..." +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "O {0}" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Datové sady ve skupině: {group}" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Nedávná historie úprav" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "Asociace CKAN" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Název" +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Využíván CKAN" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Moje skupina" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Administrátorská nastavení" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "moje skupina" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Zobrazit profil" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Popis" +#: ckan/templates/header.html:26 +#, 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)" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Trochu údajů o mé skupině..." +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Přehled" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Jste si jistí, že chcete odstranit tuto skupinu?" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Upravit nastavení" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Uložit skupinu" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Nastavení" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} dataset" -msgstr[1] "{num} datasety" -msgstr[2] "{num} datových sad" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Odhlásit" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 datových sad" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Přihlásit se" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Zobrazit {name}" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registrace" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Odebrat dataset z této skupiny" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Datové sady" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Co jsou skupiny?" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Vyhledat datasety" -#: 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/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Vyhledat" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Porovnat" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Přejít na obsah" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Smazáno" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Zobrazit více" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "načíst další" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Načíst více" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Revize" +#: 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/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Časový údaj" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administrace" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Autor" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Administrátoři" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Zpráva logu" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Konfigurace" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Vítejte" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Koš" -#: 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/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Opravdu chcete resetovat konfiguraci?" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Vítejte v CKAN" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Resetovat" -#: ckan/templates/home/snippets/promoted.html:10 +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Upravit konfiguraci" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "Konfigurační volby CKAN" + +#: ckan/templates/admin/config.html:33 +#, python-format 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 " +"

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 "" -"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í" +"

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/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Toto je vybraná sekce" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Potvrďte reset" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "Např. prostředí" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Spravovat CKAN" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Hledat data" +#: 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/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Populární tagy" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Odstranit" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} - statistiky" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "

Odstranit smazané datové sady navždy a nevratně.

" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "datová sada" +#: 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/home/snippets/stats.html:11 -msgid "datasets" -msgstr "datových sad" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Pro více informací klikněte zde." -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organizace" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Stáhnout zdroj" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "skupiny" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Žádný náhled není k dispozici." -#: ckan/templates/macros/form.html:126 +#: 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 "" -"You can use Markdown formatting here" -msgstr "" -"Zde můžete použít formátování Markdown" +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/macros/form.html:265 -msgid "This field is required" -msgstr "Toto pole je povinné" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standardní" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Upravené" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standardní vstup" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Formulář obsahuje chybné položky:" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Střední" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Povinné pole" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Středně široký vstup" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Plný" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL obrázku" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Vstup plné šířky" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Vymazat nahrávání" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Velký" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Formulář organizace" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Velký vstup" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Upravit datové sady" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Předřazený" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Přidat datovou sadu" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Předřazený vstup" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "nalezeno jako výsledek pro dotaz \"{query}\"" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Vlastní pole (prázdné)" -#: 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/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Vlastní pole" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Zpřístupnit veřejnosti" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Přidat do soukromých" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textová oblast" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Předběžný návrh" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Výběr" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Soukromá" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Události" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Tato organizace u sebe nemá přiřazeny žádné datové sady" +#: 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/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/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Přidat skupinu" -#: 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/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Formulář skupiny" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Přidat organizaci" +#: 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/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/organization/index.html:20 -msgid "Search organizations..." -msgstr "Vyhledat organizace..." +#: 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/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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Spravovat" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Uživatelské jméno" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Upravit skupinu" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "Emailová adresa" +#: ckan/templates/group/edit_base.html:23 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/organization/member_new.html:62 -msgid "Update Member" -msgstr "Upravit údaje o členovi" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Historie" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Přidat skupinu" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Vytvořit organizaci" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Vyhledat skupiny..." -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Upravit organizaci" +#: 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/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Vytvořit organizaci" +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Nechcete jednu založit?" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Vytvořit Datovou sadu" +#: 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/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Datové sady v organizaci: {group}" +#: 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/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Co jsou organizace?" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Přidat člena" -#: 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/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Existující uživatel" -#: 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. " +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"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" +"Pokud si přejete přidat existujícího uživatele, zadejte níže jeho " +"uživatelské jméno a vyhledejte ho." -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "moje organizace" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "nebo" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Stručné informace o mé organizaci" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Nový uživatel" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -"Opravdu chcete smazat tuto organizaci? Smažete tak veškeré soukromé a " -"veřejné datové sady, které k ní náleží." +"Pokud si přejete pozvat nové uživatele, zadejte jejich emailové adresy." -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Uložit organizaci" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Role" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Zobrazit {organization_name}" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/package/base.html:22 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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Smazat" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Co jsou to datové sady?" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Co jsou to role?" -#: ckan/templates/package/base_form_page.html:25 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" 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/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:16 -msgid "View dataset" -msgstr "Zobrazit datovou sadu" +"

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/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Upravit metadata" +#: 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/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/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Upravit skupinu" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Náhled" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Vytvořit skupinu" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Aktualizovat" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Vyhledat datasety..." -#: 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/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Datové sady ve skupině: {group}" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Přidat do skupiny" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Nedávná historie úprav" -#: 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/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Název" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Upravit datovou sadu" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Moje skupina" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Přidat data k datové sadě" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "moje skupina" -#: 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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Trochu údajů o mé skupině..." -#: 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/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Jste si jistí, že chcete odstranit tuto skupinu?" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Nový datový zdroj" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Uložit skupinu" -#: 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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Zobrazit {name}" -#: 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/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Odebrat dataset z této skupiny" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Přidat" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Co jsou skupiny?" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/group/snippets/helper.html:8 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +" 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 "" -"Toto je stará revize tohoto dataset, která byla upravena %(timestamp)s. Může" -" se tak značně lišit od aktuální revize." +"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/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Nahrát do DataStore" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Porovnat" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Chyba při náhrávání:" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Smazáno" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Chyba:" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "načíst další" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Revize" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Stav" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Časový údaj" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Naposledy aktualizováno" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Autor" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Nikdy" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Zpráva logu" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Záznam nahrávání" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Vítejte" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Podrobnosti" +#: 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/package/resource_data.html:81 -msgid "End of log" -msgstr "Konec záznamu" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Vítejte v CKAN" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Všechny datové zdroje" +#: 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/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Zobrazit datový zdroj" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Toto je vybraná sekce" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Upravit datový zdroj" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Např. prostředí" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Hledat data" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Zobrazení" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Populární tagy" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "Přístupový bod API" +#: 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/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Přejít na datový zdroj" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datových sad" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Stáhnout" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizace" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "skupiny" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Z abstraktu uvedeného u datové sady" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Malé logo portálu" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Zdroj: %(dataset)s" +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Zde můžete použít formátování Markdown" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Pro tento zdroj ještě nejsou vytvořena žádná zobrazení" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Toto pole je povinné" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Nevidíte zobrazení které jste očekávali?" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Upravené" -#: ckan/templates/package/resource_read.html:121 -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/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Formulář obsahuje chybné položky:" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" -"Nebylo vytvořeno žádné zobrazení které by se hodilo pro tento datový zdroj" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Povinné pole" -#: ckan/templates/package/resource_read.html:124 -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/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"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/macros/form.html:411 +msgid "Image URL" +msgstr "URL obrázku" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Další informace" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Vymazat nahrávání" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Pole" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Formulář organizace" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Hodnota" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Upravit datové sady" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "neznámý" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Přidat datovou sadu" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Vytvořeno" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "nalezeno jako výsledek pro dotaz \"{query}\"" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Formát" +#: 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/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licence" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Zpřístupnit veřejnosti" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Nové zobrazení" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Přidat do soukromých" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Tento datový zdroj nemá žádná zobrazení" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Předběžný návrh" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Přidat nový datový zdroj" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Soukromá" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

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

" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Tato organizace u sebe nemá přiřazeny žádné datové sady" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: 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/package/search.html:53 -msgid "API Docs" -msgstr "Dokumentace API" +#: 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/package/search.html:55 -msgid "full {format} dump" -msgstr "úplný {format} obsah ke stažení" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Přidat organizaci" -#: 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/organization/index.html:20 +msgid "Search organizations..." +msgstr "Vyhledat organizace..." -#: 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/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/package/view_edit_base.html:9 -msgid "All views" -msgstr "Všechna zobrazení" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Uživatelské jméno" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "Zobrazit zobrazení" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Emailová adresa" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Zobrazit náhled" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Upravit údaje o členovi" -#: 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/organization/member_new.html:81 +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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Zdroj" +#: 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ů" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Vytvořit organizaci" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Verze" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Upravit organizaci" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Stav" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Vytvořit organizaci" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Naposledy aktualizováno" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Vytvořit Datovou sadu" -#: 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/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Datové sady v organizaci: {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Co jsou organizace?" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Datové API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Moje organizace" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Titulek" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "moje organizace" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "např. výstižné označení" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Stručné informace o mé organizaci" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "např. můj-dataset" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Opravdu chcete smazat tuto organizaci? Smažete tak veškeré soukromé a " +"veřejné datové sady, které k ní náleží." -#: 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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Uložit organizaci" -#: 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/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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"Znění jednotlivých licencí a další informace lze nalézt na webu opendefinition.org" +"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/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organizace" +#: 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/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Žádná organizace" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Viditelnost" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Zobrazit datovou sadu" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Veřejná" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Upravit metadata" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Aktivní" +#: 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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Náhled" -#: 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/edit_view.html:21 +msgid "Update" +msgstr "Aktualizovat" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Následující krok: přidat data" +#: 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/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Přidat do skupiny" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Upravit datovou sadu" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Email autora" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Přidat data k datové sadě" -#: 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/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/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Email správce" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Aktualizovat datový zdroj" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Nový datový zdroj" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: 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:81 +msgid "Add" +msgstr "Přidat" + +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Toto je stará revize tohoto dataset, která byla upravena %(timestamp)s. Může" +" se tak značně lišit od aktuální revize." -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Všechny datové zdroje" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "např. Ceny zlata leden 2011" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Zobrazit datový zdroj" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Nějaké užitečné poznámky ohledně dat" +#: 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/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "např. CSV, XML nebo JSON" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Zobrazení" -#: ckan/templates/package/snippets/resource_form.html:40 -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/resource_read.html:39 +msgid "API Endpoint" +msgstr "Přístupový bod API" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "např. 2012-06-05" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Přejít na datový zdroj" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Velikost souboru" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Stáhnout" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "např. 1024" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME Type" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Z abstraktu uvedeného u datové sady" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "např. application/json" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Zdroj: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Jste si jistí, že chcete odstranit tento datový zdroj?" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "Pro tento zdroj ještě nejsou vytvořena žádná zobrazení" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Předchozí" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Nevidíte zobrazení které jste očekávali?" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Uložit a přidat další" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Dokončit" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Co jsou to datové zdroje?" +#: ckan/templates/package/resource_read.html:121 +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/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:122 +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 "" -"Zdrojem může být libovolný soubor nebo odkaz na soubor, který obsahuje " -"nějaká užitečná data." +"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/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Prozkoumat" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Další informace" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Více informací" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Pole" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Zakomponovat" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Hodnota" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "Toto zobrazení zdroje není v tento okamžik k dispozici." +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "Datum aktualizace dat" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Embedovat zobrazení zdroje" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "neznámý" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" -"Můžete kopírovat a vložit kód embedu do CMS nebo blogovacího software který " -"podporuje čisté HTML" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "Datum aktualizace metadat" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Šířka" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Vytvořeno" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Výška" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Formát" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Kód" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licence" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Náhled zdroje" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nové zobrazení" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Data a zdroje" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Tento datový zdroj nemá žádná zobrazení" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Tato datová sada neobsahuje data" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Přidat nový datový zdroj" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format -msgid "Read dataset as of %s" -msgstr "Číst datovou sadu jak byla %s" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Vytvořit 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í" +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/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Přidat filtr" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Odstranit filtr" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Dokumentace API" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filtry" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "úplný {format} obsah ke stažení" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Co je zobrazení?" +#: 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/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/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/revision/diff.html:6 -msgid "Differences" -msgstr "Rozdíly" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Všechna zobrazení" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Rozdíly revizí" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Zobrazit zobrazení" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Rozdíl" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Zobrazit náhled" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Žádné rozdíly" +#: 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/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Historie verzí" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Zdroj" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Revize" +#: 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/revision/read.html:30 -msgid "Undelete" -msgstr "Obnovit smazané" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Verze" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Změny" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Stav" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Tagy datasetů" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Naposledy aktualizováno" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entita" +#: 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/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Nová událost" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Vytvořit organizaci" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Vložit prohlížeč dat" +#: 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/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." msgstr "" -"Zkopírováním následujícího kódu si můžete přidat tento pohled na Vaši " -"webovou stránku:" +"Před pokračováním požádejte systémového správce o vytvoření organizace." -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Zvolte šířku a výšku v pixelech:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titulek" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Šířka" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "např. výstižné označení" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Výška" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "např. můj-dataset" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Stav datové pumpy: {status}." +#: 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/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Sledovací URL" +#: 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/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Zobrazit další {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Znění jednotlivých licencí a další informace lze nalézt na webu opendefinition.org" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Zobrazit pouze populární {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizace" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Tomuto vyhledávání neodpovídají žádné {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Žádná organizace" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Domů" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Viditelnost" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Jazyk" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Veřejná" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Vpřed" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Aktivní" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "Licence neuvedena" +#: 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/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Tato datová sada vyhovuje Open Definition." +#: 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/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Tato organizace nemá uveden popis" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Následující krok: přidat data" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Tento dataset nemá uveden žádný popis" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Odeslat" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Seřadit dle" +#: ckan/templates/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/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filtrovat výsledky" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email autora" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Prosím, zkuste jiný dotaz.

" +#: 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/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email správce" -#: 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}\"" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Aktualizovat datový zdroj" -#: 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/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Data" -#: 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" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "https://priklad.cz/externí-data.csv" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Nebyly nalezeny žádné datové sady" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "např. Ceny zlata leden 2011" + +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Nějaké užitečné poznámky ohledně dat" + +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "např. CSV, XML nebo JSON" -#: 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}\"" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Toto bude uhádnuto automaticky. Můžete nechat prázdné." -#: 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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "např. 2012-06-05" -#: 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" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Velikost souboru" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Nebyly nazelezeny žádné skupiny" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "např. 1024" -#: 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}\"" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME Type" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "např. application/json" -#: 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" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Jste si jistí, že chcete odstranit tento datový zdroj?" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Nebyly nalezeny žádné organizace" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Předchozí" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Sdílet" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Uložit a přidat další" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Přihlásit se k odběru" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Dokončit" -#: 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:82 -msgid "Email" -msgstr "Email" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Co jsou to datové zdroje?" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: 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/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Úpravy" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Prozkoumat" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Vyhledat tagy" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Více informací" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Kanál novinek" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Zakomponovat" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Moje datové sady" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "Toto zobrazení zdroje není v tento okamžik k dispozici." -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Moje organizace" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Embedovat zobrazení zdroje" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Moje skupiny" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Můžete kopírovat a vložit kód embedu do CMS nebo blogovacího software který " +"podporuje čisté HTML" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Aktivita položek, které sleduji" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Šířka" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Zatím jste nevytvořili žádný dataset." +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Výška" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Chcete nějaký vytvořit?" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Kód" -#: 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/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Náhled zdroje" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Nejste členem ani členkou žádné organizace." +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Data a zdroje" -#: 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/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Tato datová sada neobsahuje data" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Informace o uživatelském účtu" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Číst datovou sadu jak byla %s" -#: 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/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Vytvořit datovou sadu" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Změnit údaje" +#: 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/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Celé jméno" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "např. Moje Zobrazení" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "např. Jan Novák" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "např. Informace o mém zobrazení" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "např. jan@příklad.cz" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Odstranit filtr" -#: 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/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Co je zobrazení?" -#: 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/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/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Změnit heslo" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Rozdíly" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Rozdíly revizí" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Heslo" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Rozdíl" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Potvrďte heslo" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Žádné rozdíly" + +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Historie verzí" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Opravdu chcete smazat tohoto uživatele?" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Revize" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "Jste si jisti že chcete znovu vygenerovat klíč API?" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Obnovit smazané" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Znovu vygenerovat klíč API" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Změny" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Upravit profil" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Tagy datasetů" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Všichni uživatelé" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entita" -#: 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/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Nová událost" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Potřebujete uživatelský účet?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Vložit prohlížeč dat" -#: 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/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "" +"Zkopírováním následujícího kódu si můžete přidat tento pohled na Vaši " +"webovou stránku:" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Vytvořit účet" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Zvolte šířku a výšku v pixelech:" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Zapomněli jste heslo?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Šířka" -#: 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/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Výška" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Zapomněli jste heslo?" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Stav datové pumpy: {status}." -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Nyní jste odhlášeni" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Sledovací URL" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Nyní jste odhlášeni" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Zobrazit další {facet_type}" -#: 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/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Zobrazit pouze populární {facet_type}" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Odhlásit" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Tomuto vyhledávání neodpovídají žádné {facet_type}" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Zapamatovat si mě" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Domů" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Už jste přihlášeni" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Jazyk" -#: ckan/templates/user/logout_first.html:24 -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/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Vpřed" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Odhlásit ihned" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Licence neuvedena" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Registrace" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Tato datová sada vyhovuje Open Definition." -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Registrujte se a vytvořte si účet" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Tato organizace nemá uveden popis" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Proč bych se měl přihlásit?" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Tento dataset nemá uveden žádný popis" -#: 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/snippets/search_form.html:17 +msgid "Submit" +msgstr "Odeslat" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "uživatelské jméno" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Seřadit dle" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Celé jméno" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filtrovat výsledky" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Vytvořit účet" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Prosím, zkuste jiný dotaz.

" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Resetovat heslo" +#: ckan/templates/snippets/search_form.html:86 +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/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Resetovat heslo" +#: 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}\"" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Změnit heslo" +#: 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/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Jak to funguje?" +#: 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" -#: ckan/templates/user/perform_reset.html:40 -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/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Nebyly nalezeny žádné datové sady" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Uživatel zatím nevytvořil žádnou datovou sadu." +#: 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}\"" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Nezadali jste svůj životopis." +#: 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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Tento uživatel nemá uveden životopis." +#: 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" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Nebyly nazelezeny žádné skupiny" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "To znamená, že to bude viditelné pouze Vá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} organizace nalezena na dotaz \"{query}\"" +msgstr[1] "{number} organizace nalezeny na dotaz \"{query}\"" +msgstr[2] "{number} organizací nalezeno na dotaz \"{query}\"" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Členem od" +#: 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/user/read_base.html:96 -msgid "API Key" -msgstr "Klíč k API" +#: 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" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Obnovit heslo" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Nebyly nalezeny žádné organizace" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Obnovení hesla" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Sdílet" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Žádost o obnovení" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Přihlásit se k odběru" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Zadejte uživatelské jméno do textového pole a bude Vám zaslán email s " -"odkazem, kde si budete moci zadat nové heslo." +#: 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:82 +msgid "Email" +msgstr "Email" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Událost související s:" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Prohledat seznam..." +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Úpravy" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Zatím nic nesledujete" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Vyhledat tagy" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Žádní sledující" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Kanál novinek" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Vyhledat uživatele" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Moje datové sady" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Dokončit" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Moje organizace" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Čekající na zpracování" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Moje skupiny" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Nahrávání" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktivita položek, které sleduji" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Dosud nenahráno" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Zatím jste nevytvořili žádný dataset." -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Požadovaný zdroj z DataStore nebyl nalezen" +#: 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:16 +msgid "Create one now?" +msgstr "Chcete nějaký vytvořit?" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" -"Data byla nevalidní (příklad: číselná hodnota je mimo rozsah nebo byla " -"vložena do textového pole)" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Nejste členem ani členkou žádné skupiny." -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "Zdroj \"{0}\" nenalezen." +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Nejste členem ani členkou žádné organizace." -#: 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}" +#: 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é" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Počet datových sad na stránce" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informace o uživatelském účtu" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Testovací konfigurace" +#: 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." -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Vzestupně dle vlastního pole" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Změnit údaje" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Sestupně dle vlastního pole" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Celé jméno" -#: 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" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "např. Jan Novák" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "vlastní text" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "např. jan@příklad.cz" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Kód země" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Něco málo informací o Vás" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "vlastní text zdroje" +#: 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í" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Změnit heslo" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Tato skupina nemá žádný popis" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "Heslo systémového správce" -#: ckanext/example_theme/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/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Heslo" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "Url obrázku" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Potvrďte heslo" -#: 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é)" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Opravdu chcete smazat tohoto uživatele?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Prohlížeč dat" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Jste si jisti že chcete znovu vygenerovat klíč API?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Tabulka" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Znovu vygenerovat klíč API" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Graf" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Upravit profil" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Mapa" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Všichni uživatelé" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -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 "Přihlášení" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "Posunutí řádků" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Potřebujete uživatelský účet?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "např.: 0" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Tak se zaregistrujte, zabere to jen minutku." -#: 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" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Vytvořit účet" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "např.: 100" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Zapomněli jste heslo?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Typ grafu" +#: 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é." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Skupina (Osa 1)" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Zapomněli jste heslo?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Řada (Osa 2)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Nyní jste odhlášeni" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Typ pole" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Nyní jste odhlášeni" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Pole zeměpisné šířky" +#: 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}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Pole zeměpisné délky" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Odhlásit" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "Pole GeoJSON" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Zapamatovat si mě" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Automaticky zoomovat na funkce" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Už jste přihlášeni" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Značky shluku" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Celkový počet datových sad" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Odhlásit ihned" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Datum" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registrace" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Datových sad celkem" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registrujte se a vytvořte si účet" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Revize datových sad za týden" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Proč bych se měl přihlásit?" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Všechny revize datových sad" +#: 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í" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Nové datové sady" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "uživatelské jméno" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Nejlépe hodnocené datové sady" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Celé jméno" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Průměrné hodnocení" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Vytvořit účet" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Počet hodnocení" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Resetovat heslo" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Žádná hodnocení" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Resetovat heslo" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Nejčastěji upravované datové sady" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Změnit heslo" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Počet úprav" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Jak to funguje?" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Žádné datové sady nebyly upraveny" +#: ckan/templates/user/perform_reset.html:40 +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" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Největší skupiny" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Uživatel zatím nevytvořil žádnou datovou sadu." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Počet datových sad" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Nezadali jste svůj životopis." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Žádné skupiny" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Tento uživatel nemá uveden životopis." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Nejpoužívanější tagy" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Název tagu" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "To znamená, že to bude viditelné pouze Vám" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Počet Datových sad" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Členem od" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "Klíč k API" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Menu statistiky" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Obnovit heslo" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Celkový počet datových sad" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Obnovení hesla" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Text" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Žádost o obnovení" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Zadejte uživatelské jméno do textového pole a bude Vám zaslán email s " +"odkazem, kde si budete moci zadat nové heslo." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Webová stránka" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Událost související s:" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "URL webové stránky" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Prohledat seznam..." -#: 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/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" diff --git a/ckan/i18n/da_DK/LC_MESSAGES/ckan.mo b/ckan/i18n/da_DK/LC_MESSAGES/ckan.mo index 9d0b23efbb4..f6a371aa9bc 100644 Binary files a/ckan/i18n/da_DK/LC_MESSAGES/ckan.mo and b/ckan/i18n/da_DK/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/da_DK/LC_MESSAGES/ckan.po b/ckan/i18n/da_DK/LC_MESSAGES/ckan.po index 371ab0fe0dd..e622ec12aed 100644 --- a/ckan/i18n/da_DK/LC_MESSAGES/ckan.po +++ b/ckan/i18n/da_DK/LC_MESSAGES/ckan.po @@ -1,4532 +1,4628 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Godkendelsesfunktionen blev ikke fundet: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Fuldført" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administrator" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Afventer" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Redaktør" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Indsender" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Medlem" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Fejl" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Du skal være systemadministrator for at administrere" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Ikke Uploadet Endnu" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Sites titel" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Ressourcen blev ikke fundet" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Style" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Ikke autoriseret til at se denne side" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Sitets tag-line" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Upload til DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Sitets tag-logo" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Fejl i upload:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Fejl:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Om side-tekst" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Introtekst" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Tekst på hjem-side" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Sidst opdateret" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Brugerdefineret CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Aldrig" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Brugerdefinérbart css indsat i sideheader" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Upload Log" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Hjemmeside" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detaljer" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Slut på log" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "DataStore-ressourcen ikke fundet" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." 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" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Ressource \"{0}\" blev ikke fundet." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Tømning fuldført" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Bruger {0} er ikke autoriseret til at opdatere ressourcen {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Handling ikke implementeret." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Ikke autoriseret til at se denne side" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "Tilgå ressourcens data via et web-API med kraftfuld query-support" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Adgang nægtet" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Ikke fundet" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Endpoints" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Fejl i forespørgslen" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Navn på handling er ukendt: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Opret" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON fejl: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Opdatér / indsæt" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Fejl på de forespurgte data: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Forespørg" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Kan ikke liste enhed af denne type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Forespørg (via SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Kan ikke læse enhed af denne type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Forespørger" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Kan ikke oprette ny enhed af denne type: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Forespørgselseksempel (første fem resultater)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Kan ikke føje datakilde til søgeindeks" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Forespørgselseksempel (resultater indeholdende 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Kan ikke opdatere enhed af denne type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Forespørgselseksempel (via SQL-sætning)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Kan ikke opdatere søgeindeks" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Eksempel: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Kan ikke slette denne type enhed: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +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." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Ingen revision specificeret" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Eksempel: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Der findes ingen revision med id: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Mangler søgeord ('since_id=UUID' eller 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Kunne ikke læse parametrene: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Beskrivelse" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Fejl i søgning: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Gem" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Ukendt register: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Fejl i udformning af qjson-værdi: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Forespurgte parametre skal være i form af et JSON-kodet dictionary." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Gruppe ikke fundet" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Loading..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Data API" + +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Ukorrekt gruppetype" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organisationer" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Grupper" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Tags" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formater" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licenser" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevans" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Ikke autoriseret til at udføre masseopdatering" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Ikke autoriseret til at oprette en gruppe" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Bruger %r ikke autoriseret til at redigere %s" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Sidst modificeret" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Integritetsfejl" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Bruger %r ikke autoriseret til at redigere rettighederne %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Ikke autoriseret til at slette gruppe %s" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Populære" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organisationen er blevet slettet." +#: 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" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Gruppen er blevet slettet." +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "Brugerdefineret tekst" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." +#: 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 "" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Ikke autoriseret til at føje et medlem til gruppe %s" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Ikke autoriseret til at slette gruppe %s medlemmer" +#: 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/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Gruppemedlem er blevet slettet." +#: 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/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Vælg to revisioner før sammenligning." +#: 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" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Revisionshistorik for CKAN-gruppen" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Nylige ændringer til CKAN gruppen:" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Følgere" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Log-besked:" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ressourcer" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Du følger nu {0}" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Billede" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Du følger ikke længere {0}" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Ikke autoriseret til at se følgere %s" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "Dette site er i øjeblikket offline. Databasen er ikke initialiseret." +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" msgstr "" -"Opdatér venligst din profil og tilføj din e-mail-adresse." -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" msgstr "" -"%s bruger din e-mail-adresse, hvis du ønsker at nulstille din adgangskode." -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Paramenter \"{parameter_name}\" er ikke et heltal" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Datasæt blev ikke fundet" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Ugyldigt revisionsformat: %r" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" msgstr "" -"Visning af {package_type} dataset i formatet {format} er ikke understøttet " -"(skabelon {file} ikke fundet)." -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Ikke autoriseret til at se datakilden %s" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Revisionshistorik for CKAN-datasæt" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Nylige ændringer til CKAN-datasæt:" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Ikke autoriseret til at oprette en datakilde" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Ikke autoriseret til at redigere denne ressource" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Ressourcen blev ikke fundet" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Ikke autoriseret til at opdatere dette datasæt" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Datasæt {id} blev ikke fundet." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Du skal tilføje mindst en dataressource" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Fejl" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Ikke autoriseret til at oprette en ressource" - -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" msgstr "" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Ikke muligt at føje datakilden til søgeindeks." - -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Ikke muligt at opdatere søgeindeks." - -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Datasæt er blevet slettet." - -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Ikke autoriseret til at slette datakilde %s" - -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Resource er blevet slettet." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Ikke autoriseret til at slette ressource %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" msgstr "" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Ressourcens data ikke fundet" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Antal datasæt i alt" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Download ikke tilgængelig" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Dato" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Ikke autoriseret til at læse datasæt %s" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Antal datasæt i alt" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Ikke autoriseret til at se ressourcen %s" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Datasæt-ændringer pr. uge" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Alle datasætrevisioner" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Nye datasæt" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Højest bedømte datasæt" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Gennemsnitsbedømmelse" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Antal bedømmelser" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Ingen forhåndsvisning er blevet defineret." +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Ingen bedømmelser" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "CKAN arkiv-historik" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Oftest redigerede datasæt" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Nylige ændringer i datakildearkivet." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Datasæt" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Datasæt berørt: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Antal ændringer" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Ændring er opdateret" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Ingen redigerede datasæt" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Andet" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Største grupper" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Tag ikke fundet" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Gruppe" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Bruger blev ikke fundet" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Antal datasæt" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Ikke autoriseret til at registrere som bruger" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Ingen grupper" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Ikke autoriseret til at oprette en bruger" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Top tags" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Ikke autoriseret til at slette bruger med id \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Tag-navn" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Ingen bruger specificeret" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Antal datasæt" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Ikke autoriseret til at redigere bruger %s" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profil opdateret" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Bruger" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Ikke autoriseret til at oprette bruger %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Statistik-menu" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Fejl i Captcha. Prøv venligst igen." +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Antal datasæt i alt" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" msgstr "" -"Bruger \"%s\" er nu registreret, men du er fortsat logget ind som \"%s\" fra" -" tidligere" - -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Ikke autoriseret til at redigere en bruger." -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "Bruger %s ikke autoriseret til at redigere %s" - -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" msgstr "" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" msgstr "" -#: ckan/controllers/user.py:386 -msgid "incorrect password" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" msgstr "" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Login mislykkedes. Forkert brugernavn eller adgangskode." - -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Ikke autoriseret til at anmode om nulstilling af adgangskode." - -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" passer med flere brugere" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Din browser understøtter ikke iframes." -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 +#: ckan/authz.py:182 #, python-format -msgid "No such user: %s" -msgstr "Brugeren findes ikke: %s" +msgid "Authorization function not found: %s" +msgstr "Godkendelsesfunktionen blev ikke fundet: %s" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Tjek venligst din indbakke for en nulstillingskode." +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administrator" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Kunne ikke sende link til nulstilling: %s" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Redaktør" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Ikke autoriseret til at nulstille adgangskode." +#: ckan/authz.py:202 +msgid "Member" +msgstr "Medlem" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Ugyldig nulstillingsnøgle. Prøv venligst igen." - -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Din adgangskode er blevet nulstillet." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Du skal være systemadministrator for at administrere" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Din adgangskode skal bestå af 4 tegn eller mere." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Sites titel" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "De adgangskoder du har angivet stemmer ikke overens." +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Style" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Du skal angive en adgangskode" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Sitets tag-line" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Følgende element blev ikke fundet" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Sitets tag-logo" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} ikke fundet" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:654 -msgid "Everything" -msgstr "Alting" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Om side-tekst" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Manglende værdi" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Introtekst" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Tekst på hjem-side" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} føjede tagget {tag} til datasættet {dataset}" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Brugerdefineret CSS" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} opdaterede gruppen {group}" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Brugerdefinérbart css indsat i sideheader" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} opdaterede organisationen {organization}" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Hjemmeside" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} opdaterede datasættet {dataset}" +#: ckan/controllers/admin.py:161 +#, 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/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} ændrede ekstra {extra} for datasættet {dataset}" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Fejl ved sletning af revision %s: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} opdaterede ressourcen {resource} i datasættet {dataset}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Tømning fuldført" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} opdaterede sin profil" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Handling ikke implementeret." -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} slettede gruppen {group}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Adgang nægtet" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} slettede organisationen {organization}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Ikke fundet" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} slettede datasættet {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Fejl i forespørgslen" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} slettede ekstra {extra} fra datasættet {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Navn på handling er ukendt: %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} slettede ressourcen {resource} fra datasættet {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON fejl: %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} oprettede gruppen {group}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Fejl på de forespurgte data: %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} oprettede organisationen {organization}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Kan ikke liste enhed af denne type: %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} oprettede datasættet {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Kan ikke læse enhed af denne type: %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} tilføjede ekstra {extra} til datasættet {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Kan ikke oprette ny enhed af denne type: %s %s" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} føjede ressourcen {resource} til datasættet {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Kan ikke føje datakilde til søgeindeks" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} registreret" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Kan ikke opdatere enhed af denne type: %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} fjernede tagget {tag} fra datasættet {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Kan ikke opdatere søgeindeks" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} følger nu {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Kan ikke slette denne type enhed: %s %s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} følger nu {user}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Ingen revision specificeret" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} følger nu {group}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Der findes ingen revision med id: %s" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Vis" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Mangler søgeord ('since_id=UUID' eller 'since_time=TIMESTAMP')" -#: 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/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Kunne ikke læse parametrene: %r" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Januar" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Fejl i søgning: %s" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Februar" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Ukendt register: %s" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Marts" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Fejl i udformning af qjson-værdi: %r" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "April" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Forespurgte parametre skal være i form af et JSON-kodet dictionary." -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Maj" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Gruppe ikke fundet" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Juni" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Juli" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Ukorrekt gruppetype" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "August" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organisationer" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "September" - -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Oktober" - -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "November" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Grupper" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "December" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Tags" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Netop nu" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formater" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} minut siden" -msgstr[1] "{mins} minutter siden" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licenser" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} time siden" -msgstr[1] "{hours} timer siden" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Bruger %r ikke autoriseret til at redigere %s" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} dag siden" -msgstr[1] "{days} dage siden" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Ikke autoriseret til at udføre masseopdatering" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} månede siden" -msgstr[1] "{months} måneder siden" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Ikke autoriseret til at oprette en gruppe" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "over {years} år siden" -msgstr[1] "over {years} år siden" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Integritetsfejl" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Bruger %r ikke autoriseret til at redigere rettighederne %s" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{day} {month} {year}" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Ikke autoriseret til at slette gruppe %s" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organisationen er blevet slettet." -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} Kb" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Gruppen er blevet slettet." -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} Mb" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} Gb" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} Tb" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Ikke autoriseret til at føje et medlem til gruppe %s" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Ikke autoriseret til at slette gruppe %s medlemmer" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Gruppemedlem er blevet slettet." -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Vælg to revisioner før sammenligning." -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Revisionshistorik for CKAN-gruppen" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Nylige ændringer til CKAN gruppen:" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Log-besked:" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Du følger nu {0}" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Du følger ikke længere {0}" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Ikke autoriseret til at se følgere %s" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Opdatér din avatar på gravatar.com" +#: 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/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Ukendt" +#: ckan/controllers/home.py:73 +#, 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/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Unavngivet ressource" +#: ckan/controllers/home.py:75 +#, 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/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Oprettede nyt datasæt." +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Redigerede ressourcer." +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Paramenter \"{parameter_name}\" er ikke et heltal" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Redigerede indstillinger." +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Datasæt blev ikke fundet" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} visning" -msgstr[1] "{number} visninger" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Ugyldigt revisionsformat: %r" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} nylig visning" -msgstr[1] "{number} nylige visninger" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/mailer.py:39 +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 #, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +msgid "Unauthorized to read package %s" +msgstr "Ikke autoriseret til at se datakilden %s" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Ingen modtager-e-mail tilgængelig!" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Revisionshistorik for CKAN-datasæt" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organisation" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Nylige ændringer til CKAN-datasæt:" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "gruppe" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Ikke autoriseret til at oprette en datakilde" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Manglende værdi" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Ikke autoriseret til at redigere denne ressource" -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "Feltet %(name)s var ikke ventet." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Ikke autoriseret til at opdatere dette datasæt" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Indsæt venligst et heltal" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Datasæt {id} blev ikke fundet." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Ressourcer" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Du skal tilføje mindst en dataressource" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Ugyldig(e) ressource(r) for datakilde" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Ikke autoriseret til at oprette en ressource" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Ekstra" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Tag type \"%s\" eksisterer ikke" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Ikke muligt at føje datakilden til søgeindeks." -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Bruger" - -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Datasæt" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Ikke muligt at opdatere søgeindeks." -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Gruppe" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Datasæt er blevet slettet." -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Kunne ikke fortolkes som valid JSON" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Ikke autoriseret til at slette datakilde %s" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Resource er blevet slettet." -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organisationen eksisterer ikke" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Ikke autoriseret til at slette ressource %s" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Du kan ikke føje et datasæt til denne organisation" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Invalidt heltal" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Ressourcens data ikke fundet" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Skal være et naturligt tal" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Download ikke tilgængelig" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Skal være et positivt heltal" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Ikke autoriseret til at læse datasæt %s" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Fejl i datoformat" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Ikke autoriseret til at se ressourcen %s" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Links i log_message ikke tilladt." +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" +#: ckan/controllers/package.py:1486 +msgid "View not found" msgstr "" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Ressource" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Det gruppenavn eller id eksisterer ikke." +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Aktivitetstype" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Navne skal være strenge" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Ingen forhåndsvisning er blevet defineret." -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Det navn kan ikke anvendes" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "CKAN arkiv-historik" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Nylige ændringer i datakildearkivet." -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/revision.py:110 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Navnet må indeholde maksimalt %i tegn" +msgid "Datasets affected: %s.\n" +msgstr "Datasæt berørt: %s.\n" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Ændring er opdateret" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Denne URL er allerede i brug." +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Andet" -#: ckan/logic/validators.py:365 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Navnet \"%s\" indeholder mindre end %s tegn" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Tag ikke fundet" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Navnet \"%s\" indeholder flere end %s tegn" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Ikke autoriseret til at registrere som bruger" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Versionen må indeholde maksimalt %i tegn" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Ikke autoriseret til at oprette en bruger" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Duplikeret nøgle \"%s\"" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Ikke autoriseret til at slette bruger med id \"{user_id}\"." -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Gruppenavnet findes allerede i databasen" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Ingen bruger specificeret" -#: ckan/logic/validators.py:415 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Længden på tag \"%s\" er kortere end minimum %s" +msgid "Unauthorized to edit user %s" +msgstr "Ikke autoriseret til at redigere bruger %s" -#: ckan/logic/validators.py:419 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Længden på tagget \"%s\" er mere end maksimalt %i" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Bruger blev ikke fundet" -#: ckan/logic/validators.py:427 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "Tagget \"%s\" må kun angives med alfanumeriske tegn og symbolerne: -_." +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profil opdateret" -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:245 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Tagget \"%s\" kan ikke skrives med store bogstaver" +msgid "Unauthorized to create user %s" +msgstr "Ikke autoriseret til at oprette bruger %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Brugernavne skal være strenge" +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Fejl i Captcha. Prøv venligst igen." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Det brugernavn er ikke tilgængeligt." +#: ckan/controllers/user.py:265 +#, 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/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Indtast venligst begge adgangskoder" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Ikke autoriseret til at redigere en bruger." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Adgangskoder skal være strenge" +#: ckan/controllers/user.py:320 +#, python-format +msgid "User %s not authorized to edit %s" +msgstr "Bruger %s ikke autoriseret til at redigere %s" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Din adgangskode skal være 4 tegn eller mere" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "De adgangskoder du har indtastet stemmer ikke overens" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." +#: ckan/controllers/user.py:386 +msgid "incorrect password" msgstr "" -"Ændring ikke godkendt, da indholdet ser ud til at ligne spam. Undgå venligst" -" links i din beskrivelse." -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Navnet skal være mindst %s tegn langt" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Login mislykkedes. Forkert brugernavn eller adgangskode." -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Dette navn er allerede i brug." +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Ikke autoriseret til at anmode om nulstilling af adgangskode." -#: ckan/logic/validators.py:633 +#: ckan/controllers/user.py:490 #, 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:642 -msgid "Tag vocabulary was not found." -msgstr "Tag vokabularium blev ikke fundet." +msgid "\"%s\" matched several users" +msgstr "\"%s\" passer med flere brugere" -#: ckan/logic/validators.py:655 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Tag %s tilhører ikke vokabulariet %s" +msgid "No such user: %s" +msgstr "Brugeren findes ikke: %s" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Intet tag-navn" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Tjek venligst din indbakke for en nulstillingskode." -#: ckan/logic/validators.py:674 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Tag %s tilhører allerede vokabularium %s" +msgid "Could not send reset link: %s" +msgstr "Kunne ikke sende link til nulstilling: %s" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Angiv venligst en valid URL" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Ikke autoriseret til at nulstille adgangskode." -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "rolle eksisterer ikke." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Ugyldig nulstillingsnøgle. Prøv venligst igen." -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Datasæt uden organisation kan ikke være privat." +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Din adgangskode er blevet nulstillet." -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Ikke en liste" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Din adgangskode skal bestå af 4 tegn eller mere." -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Ikke en streng" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "De adgangskoder du har angivet stemmer ikke overens." -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Denne parent ville skabe en løkke i hierarkiet" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Du skal angive en adgangskode" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Følgende element blev ikke fundet" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} ikke fundet" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Alting" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Manglende værdi" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Opret objekt %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Opret datakilde-relation: %s %s %s" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} føjede tagget {tag} til datasættet {dataset}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Tilføj medlemsobjekt %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} opdaterede gruppen {group}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Forsøger at oprette en organisation som en gruppe" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} opdaterede organisationen {organization}" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "Du skal angive et navn eller id for datakilden (parameter \"package\")." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} opdaterede datasættet {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Du skal angive en vurdering (parameter \"rating\")." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} ændrede ekstra {extra} for datasættet {dataset}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Bedømmelsen skal være en heltalsværdi." +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} opdaterede ressourcen {resource} i datasættet {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Bedømmelsen skal være mellem %i og %i." +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} opdaterede sin profil" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} slettede gruppen {group}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Du skal være logget ind for at følge brugere" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} slettede organisationen {organization}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Du kan ikke følge dig selv" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} slettede datasættet {dataset}" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Du følger allerede {0}" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} slettede ekstra {extra} fra datasættet {dataset}" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -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/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} slettede ressourcen {resource} fra datasættet {dataset}" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Bruger {username} eksisterer ikke." +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} oprettede gruppen {group}" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Du skal være logget ind for at følge en gruppe." +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} oprettede organisationen {organization}" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} oprettede datasættet {dataset}" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Slet datakilde: %s" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} tilføjede ekstra {extra} til datasættet {dataset}" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Slet %s" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} føjede ressourcen {resource} til datasættet {dataset}" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Slet medlem: %s" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} registreret" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "Id findes ikke i data" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} fjernede tagget {tag} fra datasættet {dataset}" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Kan ikke finde vokabularium \"%s\"" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} følger nu {dataset}" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Kan ikke finde tagget \"%s\"" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} følger nu {user}" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -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/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} følger nu {group}" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Du følger ikke {0}." +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Vis" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Ressourcen blev ikke fundet." +#: 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/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Specificér ikke, hvis der benyttes \"query\" parameter" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Januar" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "skal være : -par" +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Februar" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Felt \"{field}\" ikke genkendt i resource_search." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Marts" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Datakilden blev ikke fundet." +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "April" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Opdatér objekt %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Maj" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Opdatér datakilde-relation: %s %s %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Juni" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus blev ikke fundet." +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Juli" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organisationen blev ikke fundet." +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "August" -#: 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/lib/formatters.py:51 +msgid "September" +msgstr "September" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Bruger %s ikke autoriseret til at redigere disse grupper" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Oktober" -#: 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/lib/formatters.py:59 +msgid "November" +msgstr "November" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "December" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "" -"Ingen datakilde fundet til denne ressource, kan ikke tjekke autorisation." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Netop nu" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} minut siden" +msgstr[1] "{mins} minutter siden" -#: ckan/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/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} time siden" +msgstr[1] "{hours} timer siden" -#: 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/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} dag siden" +msgstr[1] "{days} dage siden" -#: 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/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} månede siden" +msgstr[1] "{months} måneder siden" -#: ckan/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/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "over {years} år siden" +msgstr[1] "over {years} år siden" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Ikke autoriseret til at oprette brugere" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Gruppen blev ikke fundet." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{day} {month} {year}" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Gyldig API-nøgle påkrævet for at oprette en datakilde" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Gyldig API-nøgle påkrævet for at oprette en gruppe" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} Kb" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Bruger %s ikke autoriseret til at tilføje medlemmer" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} Mb" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Bruger %s ikke autoriseret til at redigere gruppen %s" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} Gb" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} Tb" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: 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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: 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/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Ikke autoriseret" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: 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/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "Bruger %s ikke autoriseret til at læse datakilden %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Opdatér din avatar på gravatar.com" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Bruger %s ikke autoriseret til at læse ressourcen %s" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Ukendt" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Unavngivet ressource" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "Du skal være logget ind for at tilgå dit dashboard." +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Oprettede nyt datasæt." -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "Bruger %s ikke autoriseret til at redigere datakilden %s" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Redigerede ressourcer." -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Bruger %s ikke autoriseret til at redigere ressourcen %s" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Redigerede indstillinger." -#: ckan/logic/auth/update.py:100 -#, 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} visning" +msgstr[1] "{number} visninger" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "Bruger %s ikke autoriseret til at redigere organisationen %s" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} nylig visning" +msgstr[1] "{number} nylige visninger" -#: ckan/logic/auth/update.py:145 +#: ckan/lib/mailer.py:39 #, 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" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/update.py:162 -#, 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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Ingen modtager-e-mail tilgængelig!" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Skal være logget ind for at rette en bruger" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organisation" + +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "gruppe" + +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Manglende værdi" -#: ckan/logic/auth/update.py:197 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to edit user %s" -msgstr "Bruger %s ikke autoriseret til at redigere bruger %s" +msgid "The input field %(name)s was not expected." +msgstr "Feltet %(name)s var ikke ventet." -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Indsæt venligst et heltal" + +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -#: ckan/logic/auth/update.py:216 -#, 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/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Ugyldig(e) ressource(r) for datakilde" -#: ckan/logic/auth/update.py:225 -#, 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/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Ekstra" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "Bruger %s ikke autoriseret til at opdatere tabellen term_translation" - -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Gyldig API-nøgle påkrævet for at redigere en datakilde" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Tag type \"%s\" eksisterer ikke" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Gyldig API-nøgle påkrævet for at redigere en gruppe" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Kunne ikke fortolkes som valid JSON" -#: ckan/model/license.py:222 -msgid "License not specified" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" msgstr "" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Organisationen eksisterer ikke" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Du kan ikke føje et datasæt til denne organisation" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Invalidt heltal" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Skal være et naturligt tal" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Skal være et positivt heltal" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Fejl i datoformat" -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Andet (Open)" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Links i log_message ikke tilladt." -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Andet (Public Domain)" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Andet (Attribution)" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Ressource" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Det gruppenavn eller id eksisterer ikke." -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Aktivitetstype" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Andet (ikke-kommerciel)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Navne skal være strenge" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Andet (Ikke-åben)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Det navn kan ikke anvendes" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:338 #, python-format -msgid "depends on %s" -msgstr "Afhængig af %s" +msgid "Must be at least %s characters long" +msgstr "" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "is a dependency of %s" -msgstr "er afhængig af %s" +msgid "Name must be a maximum of %i characters long" +msgstr "Navnet må indeholde maksimalt %i tegn" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Denne URL er allerede i brug." + +#: ckan/logic/validators.py:366 #, python-format -msgid "derives from %s" -msgstr "stammer fra %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Navnet \"%s\" indeholder mindre end %s tegn" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:370 #, python-format -msgid "has derivation %s" -msgstr "afleder %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Navnet \"%s\" indeholder flere end %s tegn" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:376 #, python-format -msgid "links to %s" -msgstr "Linker til %s" +msgid "Version must be a maximum of %i characters long" +msgstr "Versionen må indeholde maksimalt %i tegn" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:394 #, python-format -msgid "is linked from %s" -msgstr "Er linket fra %s" +msgid "Duplicate key \"%s\"" +msgstr "Duplikeret nøgle \"%s\"" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Gruppenavnet findes allerede i databasen" + +#: ckan/logic/validators.py:416 #, python-format -msgid "is a child of %s" -msgstr "Er underelement af %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Længden på tag \"%s\" er kortere end minimum %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a parent of %s" -msgstr "er overelement for %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Længden på tagget \"%s\" er mere end maksimalt %i" -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:428 #, python-format -msgid "has sibling %s" -msgstr "Har sideordnet element %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Tagget \"%s\" må kun angives med alfanumeriske tegn og symbolerne: -_." -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Loading..." +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tagget \"%s\" kan ikke skrives med store bogstaver" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Der er ingen API-data at indlæse for denne ressource" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Brugernavne skal være strenge" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Kunne ikke indlæse data-API-information" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Det brugernavn er ikke tilgængeligt." -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Ingen resultater fundet" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Indtast venligst begge adgangskoder" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Begynd indtastning..." +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Adgangskoder skal være strenge" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Input er for kort, skal være mindst én karakter" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Din adgangskode skal være 4 tegn eller mere" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Der er ændringer til denne formular som ikke er gemt" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "De adgangskoder du har indtastet stemmer ikke overens" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Bekræft venligst handling" +#: ckan/logic/validators.py:611 +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/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Er du sikker på, at du vil udføre denne handling?" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Navnet skal være mindst %s tegn langt" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Bekræft" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Dette navn er allerede i brug." -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Annullér" +#: ckan/logic/validators.py:634 +#, 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/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Følg" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Tag vokabularium blev ikke fundet." -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Følg ikke" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Tag %s tilhører ikke vokabulariet %s" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Upload" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Intet tag-navn" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Link" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tag %s tilhører allerede vokabularium %s" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Fjern" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Angiv venligst en valid URL" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Billede" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "rolle eksisterer ikke." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Datasæt uden organisation kan ikke være privat." -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Fil" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Ikke en liste" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Upload en fil fra din computer" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Ikke en streng" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Denne parent ville skabe en løkke i hierarkiet" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Skift rækkefølge på ressourcer" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Gem rækkefølge" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Gemmer..." +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Upload en fil" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Der opstod en fejl" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Ressource uploadet" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Opret objekt %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Ude af stand til at uploade fil" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Opret datakilde-relation: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Ude af stand til at autentificere upload" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Tilføj medlemsobjekt %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Ude af stand til at hente data for uploadet fil" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Forsøger at oprette en organisation som en gruppe" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Du uploader en fil. Er du sikker på, du vil navigere væk og standse upload?" - -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Redigér" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Du skal angive et navn eller id for datakilden (parameter \"package\")." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Vis mere" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Du skal angive en vurdering (parameter \"rating\")." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Skjul" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Bedømmelsen skal være en heltalsværdi." -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/action/create.py:905 #, 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" +msgid "Rating must be between %i and %i." +msgstr "Bedømmelsen skal være mellem %i og %i." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Du skal være logget ind for at følge brugere" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Sysadmin-indstillinger" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Du kan ikke følge dig selv" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Vis profil" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Du følger allerede {0}" -#: ckan/templates/header.html:26 -#, 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/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +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/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Dashboard" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Bruger {username} eksisterer ikke." -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Redigér indstillinger" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Du skal være logget ind for at følge en gruppe." -#: ckan/templates/header.html:37 -msgid "Settings" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Log ud" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Slet datakilde: %s" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Log ind" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Slet %s" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Registrér" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Slet medlem: %s" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Datasæt" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "Id findes ikke i data" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Søg datasæt" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Kan ikke finde vokabularium \"%s\"" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Søg" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Kan ikke finde tagget \"%s\"" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +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/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Indlæs færre" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Du følger ikke {0}." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Indlæs flere" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Ressourcen blev ikke fundet." -#: 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/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Specificér ikke, hvis der benyttes \"query\" parameter" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administration" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "skal være : -par" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Sysadmins" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Felt \"{field}\" ikke genkendt i resource_search." -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Konfiguration" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Datakilden blev ikke fundet." -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Affald" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Opdatér objekt %s" -#: ckan/templates/admin/config.html:16 -#: 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/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Opdatér datakilde-relation: %s %s %s" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Nulstil" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus blev ikke fundet." -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Opdater konfigurering" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organisationen blev ikke fundet." -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN konfigurationsindstillinger" +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 #, 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.

" +msgid "User %s not authorized to edit these groups" +msgstr "Bruger %s ikke autoriseret til at redigere disse grupper" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Bekræft nulstilling" +#: 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/templates/admin/index.html:15 -msgid "Administer CKAN" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +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 "" -"

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

" +msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -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/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +#: 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/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" +#: 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/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "Tilgå ressourcens data via et web-API med kraftfuld query-support" +#: 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/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Ikke autoriseret til at oprette brugere" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Endpoints" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Gruppen blev ikke fundet." -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "Data-API'et kan tilgås via følgende actions fra CKAN action API'et." +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Gyldig API-nøgle påkrævet for at oprette en datakilde" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Opret" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Gyldig API-nøgle påkrævet for at oprette en gruppe" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Opdatér / indsæt" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Bruger %s ikke autoriseret til at tilføje medlemmer" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Forespørg" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Bruger %s ikke autoriseret til at redigere gruppen %s" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Forespørg (via SQL)" +#: 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Forespørger" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Forespørgselseksempel (første fem resultater)" +#: 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Forespørgselseksempel (resultater indeholdende 'jones')" +#: 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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Forespørgselseksempel (via SQL-sætning)" +#: 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/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Eksempel: Javascript" +#: 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/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." +#: 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/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Eksempel: Python" +#: 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/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/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Ikke autoriseret" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Klik her for mere information." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Bruger %s ikke autoriseret til at læse disse datakilder" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Download ressource" +#: 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/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Din browser understøtter ikke iframes." +#: 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/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Eksempel ikke tilgængeligt." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Flere detaljer..." +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Du skal være logget ind for at tilgå dit dashboard." -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:39 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Ingen handler defineret for datatypen: %(type)s." +msgid "User %s not authorized to edit package %s" +msgstr "Bruger %s ikke autoriseret til at redigere datakilden %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Standard" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Bruger %s ikke autoriseret til at redigere ressourcen %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Standard input" +#: ckan/logic/auth/update.py:100 +#, 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/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Medium" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Bruger %s ikke autoriseret til at redigere organisationen %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Medium bredde input" +#: ckan/logic/auth/update.py:145 +#, 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/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Fuld" +#: ckan/logic/auth/update.py:162 +#, 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/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Fuld bredde input" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Skal være logget ind for at rette en bruger" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Stor" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Bruger %s ikke autoriseret til at redigere bruger %s" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Stort input" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Tilføj i starten" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Bruger %s ikke autoriseret til at ændre status for revisionen" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Tilføj input i starten" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Bruger %s ikke autoriseret til at opdatere tabellen task_status" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Brugerdefineret felt (tomt)" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Bruger %s ikke autoriseret til at opdatere tabellen term_translation" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Brugerdefineret felt" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Gyldig API-nøgle påkrævet for at redigere en datakilde" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Gyldig API-nøgle påkrævet for at redigere en gruppe" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Tekstområde" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Vælg" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Aktivitetsstrøm" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: 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/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Tilføj en gruppe" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Gruppeformular" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: 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/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: 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/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: 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/model/license.py:301 +msgid "Other (Open)" +msgstr "Andet (Open)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Administrer" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Andet (Public Domain)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Redigér gruppe" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Andet (Attribution)" -#: 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/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Følgere" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Historik" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Andet (ikke-kommerciel)" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Tilføj gruppe" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Andet (Ikke-åben)" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Søg grupper..." +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "Afhængig af %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Navn stigende" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "er afhængig af %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Navn faldende" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "stammer fra %s" -#: 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/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "afleder %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Hvad med at oprette en?" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "Linker til %s" -#: 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/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "Er linket fra %s" -#: 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/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "Er underelement af %s" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Tilføj medlem" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "er overelement for %s" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Eksisterende bruger" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "Har sideordnet element %s" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Hvis du vil tilføje en eksisterende burger, søg efter brugernavnet herunder." +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Der er ingen API-data at indlæse for denne ressource" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "eller" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Kunne ikke indlæse data-API-information" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Ny bruger" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Begynd indtastning..." -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "Hvis du vil invitere en ny bruger, indtast dennes e-mail-adresse." +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Ingen resultater fundet" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Rolle" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Er du sikker på, at du vil slette dette medlem?" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Der er ændringer til denne formular som ikke er gemt" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Slet" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Bekræft venligst handling" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Gem" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Er du sikker på, at du vil udføre denne handling?" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Hvad er roller?" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Bekræft" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

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:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevans" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Sidst modificeret" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Følg ikke" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Populære" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Følg" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Søg datasæt..." +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Link" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Datasæt i gruppe: {group}" +#: ckan/public/base/javascript/modules/image-upload.js:61 +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/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Seneste revisionshistorik" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Upload" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Navn" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Fjern" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Min gruppe" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Upload en fil fra din computer" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "min-gruppe" +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Beskrivelse" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Fil" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Lidt information om min gruppe..." +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Gem rækkefølge" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Er du sikker på, at du vil slette denne gruppe?" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Gemmer..." -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Gem gruppe" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Upload en fil" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} datasæt" -msgstr[1] "{num} datasæt" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Der opstod en fejl" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 datasæt" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Ude af stand til at uploade fil" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Se {name}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Ude af stand til at autentificere upload" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Fjern datasæt fra denne gruppe" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Ressource uploadet" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Hvad er grupper?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Ude af stand til at hente data for uploadet fil" -#: ckan/templates/group/snippets/helper.html:8 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 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. " +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" 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." +"Du uploader en fil. Er du sikker på, du vil navigere væk og standse upload?" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Sammenlign" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Slettet" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "Læs mere" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Redigér" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Revision" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Vis mere" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Tidsstempel" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Skjul" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Forfatter" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Fejl %(error_code)s" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Logmeddelse" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Om {0}" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Velkommen" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" -#: 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/

" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" 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 +#: ckan/templates/footer.html:24 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 " +"Powered by CKAN" 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" +"Powered by CKAN" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Dette er en udvalgt sektion" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Sysadmin-indstillinger" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Vis profil" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "" +#: ckan/templates/header.html:26 +#, 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/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Dashboard" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} statistik" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Redigér indstillinger" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "datasæt" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "datasæt" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Log ud" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organisationer" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Log ind" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "grupper" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registrér" -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Datasæt" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Feltet er påkrævet" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Søg datasæt" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Brugerdefineret" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Søg" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Skemaet indeholder ugyldige informationer:" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Påkrævet felt" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Indlæs færre" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Indlæs flere" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "Billede-URL" +#: 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/macros/form.html:424 -msgid "Clear Upload" -msgstr "Nulstil Upload" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administration" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Organisationsformular" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Sysadmins" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Redigér datasæt" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Konfiguration" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Tilføj datasæt" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Affald" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "fundet for \"{query}\"" +#: ckan/templates/admin/config.html:16 +#: 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/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Desværre blev ingen datasæt fundet for \"{query}\"" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Nulstil" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Gør offentlig" +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Opdater konfigurering" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Gør privat" +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN konfigurationsindstillinger" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Udkast" +#: ckan/templates/admin/config.html:33 +#, 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/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Privat" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Bekræft nulstilling" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Denne organisation har ingen datasæt associeret med sig" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "" -#: 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:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Brugernavn" - -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" +#: 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/organization/member_new.html:62 -msgid "Update Member" -msgstr "Opdater medlem" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" 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/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Opret en organisation" +#: 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/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Opdatér organisation" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Klik her for mere information." -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Opret organisation" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Download ressource" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Tilføj datasæt" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Eksempel ikke tilgængeligt." -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Flere detaljer..." -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Hvad er organisationer?" +#: 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/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/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" -#: 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/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standard input" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Min organisation" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medium" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "min-organisation" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Medium bredde input" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Lidt information om min organisation..." +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Fuld" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" -"Er du sikker på, du vil slette denne organisation? Dette vil slette alle " -"offentlige og private datasæt, der tilhører denne organisation." +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Fuld bredde input" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Gem organisation" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Stor" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Se {organization_name}" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Stort input" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Opret datasæt" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Tilføj i starten" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Hvad er datasæt?" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Tilføj input i starten" -#: 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/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Brugerdefineret felt (tomt)" -#: 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/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Brugerdefineret felt" -#: 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/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Se datasæt" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Tekstområde" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Redigér metadata" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Vælg" -#: 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/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Aktivitetsstrøm" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Preview/eksempel" +#: 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/package/edit_view.html:21 -msgid "Update" -msgstr "Opdatér" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Tilføj en gruppe" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Forbind denne gruppe med dette datasæt" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Gruppeformular" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Tilføj til gruppe" +#: 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/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/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/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Opdatér datasæt" +#: 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/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Tilføj data til datasættet" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Administrer" -#: 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/group/edit.html:12 +msgid "Edit Group" +msgstr "Redigér gruppe" -#: 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/group/edit_base.html:23 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/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Ny ressource" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Historik" + +#: 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:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Tilføj medlem" + +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Eksisterende bruger" + +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Hvis du vil tilføje en eksisterende burger, søg efter brugernavnet herunder." + +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "eller" + +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Ny bruger" + +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Hvis du vil invitere en ny bruger, indtast dennes e-mail-adresse." + +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Rolle" + +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Slet" + +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Hvad er roller?" + +#: ckan/templates/group/member_new.html:80 +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:21 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:3 +msgid "Datasets in group: {group}" +msgstr "Datasæt i gruppe: {group}" + +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Seneste revisionshistorik" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Navn" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Min gruppe" + +#: ckan/templates/group/snippets/group_form.html:18 +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:60 +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:63 +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/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Sammenlign" + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Slettet" + +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "Læs mere" + +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Revision" + +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Tidsstempel" + +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Forfatter" + +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Logmeddelse" + +#: 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/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/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Velkommen til CKAN" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/home/snippets/promoted.html:10 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Tilføj" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Dette er en udvalgt sektion" -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" msgstr "" -"Dette er en gammel version af dette datasæt (ændret %(timestamp)s). Det kan " -"afvige markant fra den aktuelle version." - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Upload til DataStore" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Fejl i upload:" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Fejl:" - -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" msgstr "" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Status" - -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Sidst opdateret" - -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Aldrig" - -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Upload Log" - -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Detaljer" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "Slut på log" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistik" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Alle ressourcer" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "datasæt" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Se ressource" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datasæt" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Redigér ressource" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisationer" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupper" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" msgstr "" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API Endpoint" - -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Gå til ressource" - -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Download" - -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" - -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Fra datasæt-forklaringen" - -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Kilde: %(dataset)s" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." +msgid "" +"You can use Markdown formatting here" msgstr "" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Feltet er påkrævet" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Brugerdefineret" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Skemaet indeholder ugyldige informationer:" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Påkrævet felt" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Yderligere information" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "Billede-URL" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Felt" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Nulstil Upload" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Værdi" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Organisationsformular" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "ukendt" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Redigér datasæt" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Oprettet" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Tilføj datasæt" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Format" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "fundet for \"{query}\"" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licens" +#: 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/package/resource_views.html:10 -msgid "New view" -msgstr "" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Gør offentlig" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Gør privat" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Tilføj ny ressource" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Udkast" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

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

" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Privat" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Denne organisation har ingen datasæt associeret med sig" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API-dokumenter" +#: 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/package/search.html:55 -msgid "full {format} dump" -msgstr "fuldt {format} dump" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Søg organisationer..." -#: 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/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/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/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Brugernavn" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" msgstr "" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Opdater medlem" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" +#: ckan/templates/organization/member_new.html:81 +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/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/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Opret en organisation" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Version" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Opdatér organisation" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Status" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Opret organisation" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Tilføj datasæt" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -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/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Data API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Min organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Titel" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "min-organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "f.eks. en beskrivende titel" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Lidt information om min organisation..." -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "f.eks. mit-datasæt" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Er du sikker på, du vil slette denne organisation? Dette vil slette alle " +"offentlige og private datasæt, der tilhører denne organisation." -#: 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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Gem organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "e.g. økonomi, miljø, trafik" +#: 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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"Licens-definitioner og yderligere information kan findes på opendefinition.org" - -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organisation" +"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/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Ingen organisation" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Synlighed" +#: 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/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Offentlig" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Se datasæt" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Aktiv" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Redigér metadata" -#: 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." +#: 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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Preview/eksempel" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Næste: Tilføj data" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Opdatér" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: 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/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Opdatér datasæt" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Forfatters e-mail" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Tilføj data til datasættet" -#: 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/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/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Vedligeholders e-mail" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Opdatér ressource" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Ny ressource" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: 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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: 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/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "f.eks. guldpriser for januar 2011" - -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Brugbare noter om data" - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "f.eks. CSV, XML eller JSON" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Tilføj" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Dette er en gammel version af dette datasæt (ændret %(timestamp)s). Det kan " +"afvige markant fra den aktuelle version." -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "f.eks. 2012-06-05" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Alle ressourcer" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Filstørrelse" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Se ressource" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "f.eks. 1024" +#: 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/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME type" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "f.eks. application/json" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API Endpoint" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Er du sikker på, at du vil slette denne ressource?" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Gå til ressource" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Forrige" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Download" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Gem og tilføj en mere" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Afslut" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Fra datasæt-forklaringen" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Hvad er en ressource?" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Kilde: %(dataset)s" -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." 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:24 -msgid "Explore" -msgstr "Udforsk" - -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Mere information" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Inkludér (embed)" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 +#: ckan/templates/package/resource_read.html:122 msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +"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/snippets/resource_view.html:69 -msgid "Width" -msgstr "" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Yderligere information" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Felt" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Kode" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Værdi" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Data og ressourcer" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "ukendt" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "Læs datasæt fra %s" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Oprettet" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Opret datasæt" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Format" -#: 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/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licens" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" msgstr "" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Tilføj ny ressource" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, 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/snippets/view_form_filters.html:16 -msgid "Add Filter" +#: 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/snippets/view_form_filters.html:28 -msgid "Remove Filter" +#: 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/snippets/view_form_filters.html:46 -msgid "Filters" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" msgstr "" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" msgstr "" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" msgstr "" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Forskelle" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Revisionsforskelle" - -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Forskel" - -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Ingen forskelle" - -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Revisionshistorik" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Yderligere info" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Nylige ændringer" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Kilde" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Fortryd sletning" +#: 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/revision/read.html:64 -msgid "Changes" -msgstr "Ændringer" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Version" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Datasæt tags" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Status" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entitet" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Nyt aktivitetselement" +#: 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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Integrér Data Viewer" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Embed dette view ved at kopiere dette ind på din webside:" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Vælg bredde og højde i pixels:" +#: 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/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Bredde:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titel" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Højde:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "f.eks. en beskrivende titel" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Datapusher status: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "f.eks. mit-datasæt" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Trackback URL" +#: 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/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Vis mere {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "e.g. økonomi, miljø, trafik" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Vis kun populære {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Licens-definitioner og yderligere information kan findes på opendefinition.org" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Der er ingen {facet_type} der matcher denne søgning" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisation" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Hjem" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Ingen organisation" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Sprog" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Synlighed" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Go" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Offentlig" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "Licens ikke angivet" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Aktiv" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Dette datasæt opfylder Open Definition." +#: 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/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Der er ingen beskrivelse for denne organisation" +#: 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/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Dette datasæt har ingen beskrivelse" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Næste: Tilføj data" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Indsend" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Sortér efter" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filtrér resultater" +#: 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/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Prøv venligst en anden søgning.

" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Forfatters e-mail" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" -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 "peter@eksempel.com" -#: 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/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Vedligeholders e-mail" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "Ingen datasæt fundet for \"{query}\"" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Opdatér ressource" -#: 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/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Ingen datasæt fundet" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +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} gruppe fundet for \"{query}\"" -msgstr[1] "{number} grupper fundet for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "f.eks. guldpriser for januar 2011" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Ingen grupper fundet for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Brugbare noter om data" -#: 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/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "f.eks. CSV, XML eller JSON" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Ingen grupper fundet" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +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} organisation fundet for \"{query}\"" -msgstr[1] "{number} organisationer fundet for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "f.eks. 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "Ingen organisationer fundet for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Filstørrelse" -#: 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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "f.eks. 1024" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Ingen organisationer fundet" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME type" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Social" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "f.eks. application/json" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Tilmeld" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Er du sikker på, at du vil slette denne ressource?" -#: 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:82 -msgid "Email" -msgstr "E-mail" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Forrige" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Gem og tilføj en mere" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Redigeringer" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Afslut" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Søg tags" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Hvad er en ressource?" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Nyhedsstrøm" +#: 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/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Mine datasæt" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Udforsk" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Mine organisationer" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Mere information" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Mine grupper" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Inkludér (embed)" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Aktiviteter fra emner, jeg følger" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Du har ikke oprettet nogle datasæt." +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Opret et nu?" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "Du er ikke medlem af nogle grupper." +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Du er ikke medlem af nogle organisationer." +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +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 "Brugere" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Kode" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Kontoinformation" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" -#: 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/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Data og ressourcer" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Ændringsdetaljer" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Fulde navn" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Læs datasæt fra %s" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "f.eks. Peter Petersen" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Opret datasæt" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "f.eks. peter@eksempel.com" +#: 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/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Lidt information om dig selv" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Skriv dig op til e-mail-notifikationer" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Skift adgangskode" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" +#: 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/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Adgangskode" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Forskelle" + +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Revisionsforskelle" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Bekræft adgangskode" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Forskel" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Er du sikker på, at du vil slette denne bruger?" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Ingen forskelle" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Revisionshistorik" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Nylige ændringer" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Opdatér profil" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Fortryd sletning" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Alle brugere" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Ændringer" -#: 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/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Datasæt tags" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Brug for en konto?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entitet" -#: 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/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Nyt aktivitetselement" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Opret en konto" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Integrér Data Viewer" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Har du glemt din adgangskode?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Embed dette view ved at kopiere dette ind på din webside:" -#: 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/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Vælg bredde og højde i pixels:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Har du glemt din adgangskode?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Bredde:" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Logget ud" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Højde:" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Du er nu logget ud." +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher status: {status}." -#: 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/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Log ud" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Vis mere {facet_type}" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Husk mig" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Vis kun populære {facet_type}" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Du er allerede logget ind" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Der er ingen {facet_type} der matcher denne søgning" -#: ckan/templates/user/logout_first.html:24 -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/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Hjem" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Log ud nu" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Sprog" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Registrering" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Go" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Opret en konto" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Licens ikke angivet" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Hvorfor oprette sig?" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Dette datasæt opfylder Open Definition." -#: 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/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Der er ingen beskrivelse for denne organisation" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Dette datasæt har ingen beskrivelse" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Fulde navn" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Indsend" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Opret konto" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Sortér efter" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Nulstil din adgangskode" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filtrér resultater" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Nulstil adgangskode" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Prøv venligst en anden søgning.

" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Opdatér adgangskode" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Hvordan fungerer dette?" +#: 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/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "Skriv en ny adgangskode og vi opdaterer din konto" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Ingen datasæt fundet for \"{query}\"" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Bruger har ikke oprettet nogen datasæt." +#: 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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Du har ikke angivet en biografi." +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Ingen datasæt fundet" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Denne bruger har ingen biografi." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Ingen grupper fundet for \"{query}\"" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Det betyder, at kun du kan se dette" +#: 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/user/read_base.html:87 -msgid "Member Since" -msgstr "Medlem siden" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Ingen grupper fundet" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API-nøgle" +#: 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/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Nulstil din adgangskode" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Ingen organisationer fundet for \"{query}\"" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" +#: 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/user/request_reset.html:19 -msgid "Request reset" -msgstr "" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Ingen organisationer fundet" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Skriv dit brugernavn i feltet og vi sender dig en e-mail med et link, hvor " -"du kan angive en ny adgangskode." +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Aktivitet fra:" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Tilmeld" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Søg liste..." +#: 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:82 +msgid "Email" +msgstr "E-mail" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Du følger ingenting" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Ingen følgere" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Redigeringer" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Søg efter brugere" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Søg tags" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Fuldført" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Nyhedsstrøm" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Afventer" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Mine datasæt" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Indsender" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mine organisationer" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Ikke Uploadet Endnu" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mine grupper" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "DataStore-ressourcen ikke fundet" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktiviteter fra emner, jeg følger" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Du har ikke oprettet nogle datasæt." -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "Ressource \"{0}\" blev ikke fundet." +#: 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:16 +msgid "Create one now?" +msgstr "Opret et nu?" -#: 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}" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Du er ikke medlem af nogle grupper." -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Du er ikke medlem af nogle organisationer." -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -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 "Brugere" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Kontoinformation" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "" +#: 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." -#: 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" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Ændringsdetaljer" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "Brugerdefineret tekst" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Fulde navn" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Landekode" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "f.eks. Peter Petersen" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "f.eks. peter@eksempel.com" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Lidt information om dig selv" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Denne gruppe har ingen beskrivelse" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Skriv dig op til e-mail-notifikationer" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Skift adgangskode" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Adgangskode" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Bekræft adgangskode" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Er du sikker på, at du vil slette denne bruger?" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Opdatér profil" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Alle brugere" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -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" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Brug for en konto?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Opret en konto" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Har du glemt din adgangskode?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: 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." -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Har du glemt din adgangskode?" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Logget ud" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Du er nu logget ud." -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Du er allerede logget ind som {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Log ud" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Husk mig" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Antal datasæt i alt" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Du er allerede logget ind" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Dato" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Antal datasæt i alt" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Log ud nu" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Datasæt-ændringer pr. uge" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registrering" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Alle datasætrevisioner" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Opret en konto" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Nye datasæt" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Hvorfor oprette sig?" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Højest bedømte datasæt" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Opret datasæt, grupper og andre spændende ting" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Gennemsnitsbedømmelse" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Antal bedømmelser" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Fulde navn" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Ingen bedømmelser" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Opret konto" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Oftest redigerede datasæt" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Nulstil din adgangskode" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Antal ændringer" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Nulstil adgangskode" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Ingen redigerede datasæt" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Opdatér adgangskode" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Største grupper" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Hvordan fungerer dette?" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Antal datasæt" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Skriv en ny adgangskode og vi opdaterer din konto" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Ingen grupper" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Bruger har ikke oprettet nogen datasæt." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Top tags" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Du har ikke angivet en biografi." -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Tag-navn" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Denne bruger har ingen biografi." -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Antal datasæt" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Det betyder, at kun du kan se dette" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Statistik-menu" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Medlem siden" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Antal datasæt i alt" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API-nøgle" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Nulstil din adgangskode" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Skriv dit brugernavn i feltet og vi sender dig en e-mail med et link, hvor " +"du kan angive en ny adgangskode." -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +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" diff --git a/ckan/i18n/de/LC_MESSAGES/ckan.mo b/ckan/i18n/de/LC_MESSAGES/ckan.mo index 9fdd43a1508..92adee23d10 100644 Binary files a/ckan/i18n/de/LC_MESSAGES/ckan.mo and b/ckan/i18n/de/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/de/LC_MESSAGES/ckan.po b/ckan/i18n/de/LC_MESSAGES/ckan.po index 02906497967..e41d12b22e6 100644 --- a/ckan/i18n/de/LC_MESSAGES/ckan.po +++ b/ckan/i18n/de/LC_MESSAGES/ckan.po @@ -1,567 +1,1193 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Ondics Githubler , 2016\n" +"Last-Translator: Ondics Githubler , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Berechtigungsfunktion nicht gefunden: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Fertig" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administrator" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Läuft noch" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Bearbeiter" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Absenden" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Mitglied" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Fehler" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Für diese Aufgabe werden Administratorrechte benötigt" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Noch nicht hochgeladen" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Seitentitel" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Ressource nicht gefunden" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Style" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Keine Berechtigung zum Anzeigen dieser Seite" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Seitenslogan" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Zum DataStore hochladen" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Seiten-Slogan-Logo" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Fehler beim Hochladen:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Fehler:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Text der \"Über uns\"-Seite" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Fehler-Verfolgung:" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Einführungstext" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Text der Startseite" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Zuletzt aktualisiert" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Angepasstes CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nie" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Anpassbares CSS, das in den Seitenkopf eingefügt wird" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Log hochladen" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Startseite" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Details" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Ende des Logs" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "Das Format muss eines der folgenden sein: %s" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "DataStore Ressource nicht gefunden" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Paket %s konnte nicht gelöscht werden, weil dazugehörige Revision %s nicht-" -"gelöschte Pakete %s beinhaltet " +"Die Daten waren ungültig (evtl. ist ein numerischer Wert außerhalb des " +"gültigen Bereichs oder wurde in ein Feld vom Typ \"Text\" eingefügt)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Fehler beim Löschen der Revision %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Ressource \"{0}\" wurde nicht gefunden." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Löschung abgeschlossen" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Benutzer {0} darf die Ressource {1} nicht ändern" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Befehl nicht implementiert." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Sie haben keine Autorisierung seite zu sehen" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Zugriff auf Ressourcen per Web-Schnittstelle mit umfangreichen " +"Suchmöglichkeiten" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Zugriff verweigert" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +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.

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Nicht gefunden" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "API-Schnittstelle" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Fehlerhafte Anfrage" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Aktionsname ist nicht bekannt: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Erstellen" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON Fehler: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Aktualisieren / Einfügen" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Fehlerhafte Daten in der Anforderung: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Abfrage" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Kann keine Entitäten dieses Typs auflisten: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Abfrage (mit SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Kann keine Entiät dieses Typs lesen: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Abfrage läuft" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Eine neue Entität des Typs %s %s konnte nicht angelegt werden" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Abfragebeispiel (erste 5 Ergebnisse)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Das Paket konnte dem Index nicht hinzugefügt werden" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Abfragebeispiel (Ergebnisse die 'jones' enthalten)" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Ein Update der Entität des Typs %s ist nicht möglich" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Abfragebeispiel (mit SQL Befehl)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Der Suchindex konnte nicht aktualisiert werden" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Beispiel: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Eine Entität des Typs %s %s konnte nicht entfernt werden" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Eine einfache AJAX (JSONP) Abfrage des Data API mit jQuery." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Keine Revisions spezifiziert" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Beispiel: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Es gibt keine Revision mit der ID: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "Feld {num}." -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Fehlender Suchbegriff ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Bezeichnung" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Konnte die Parameter nicht auslesen: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Beschreibung" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Falsche Suchoption: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Speichern" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Unbekannter Benutzer: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Datenverzeichnis" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "qjson Wert hat falsche Struktur: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Spalte" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "" -"Die Anfrageparameter müssen in der Form eines JASON-kodiertem-Wörterbuch " -"sein." - -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Gruppe nicht gefunden" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "Typ" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organisation nicht gefunden" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Lädt..." -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Ungültiger Gruppentyp" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Daten-API" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organisationen" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tabelle" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Gruppen" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Bildschirmabhängige Anzeige" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Tags" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Spalten anzeigen" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formate" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "Spalten ein-/ausblenden" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Lizenzen" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datensätze pro Seite" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Keine Berechtigung für Massenupdates" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Test-Konfiguration" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Nicht zum Anlegen einer Gruppe autorisiert" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevanz" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "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:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "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:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Follower" + +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ressourcen" + +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +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:101 +msgid "Data Explorer" +msgstr "Data Explorer" + +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Graph" + +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Karte" + +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "Fehler beim Laden der Ansicht" + +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "Ansicht konnte nicht geladen werden" + +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "DataStore gab einen Fehler zurück" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "DataProxy gab einen Fehler zurück" + +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "Raster" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +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/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Gesamtanzahl Datensätze" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Datum" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Gesamtanzahl Datensätze" + +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Datensatz-Versionen pro Woche" + +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Alle Datensatz-Versionen" + +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Neue Datensätze" + +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Beliebteste Datensätze" + +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Durchschnittliche Bewertung" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Anzahl Bewertungen" + +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Keine Bewertungen" + +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Meistbearbeitete Datensätze" + +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Datensatz" + +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Anzahl Änderungen" + +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Keine bearbeiteten Datensätze" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Größte Gruppen" + +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Gruppe" + +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Zahl der Datensätze" + +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Keine Gruppen" + +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Beliebteste Tags" + +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Tag-Name" + +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Anzahl der Datensätze" + +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "Benutzer mit den meisten Datensätzen" + +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Benutzer" + +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Statistik-Menü" + +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Gesamtanzahl der Datensätze" + +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Text" + +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +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:56 +#: 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:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Berechtigungsfunktion nicht gefunden: %s" + +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administrator" + +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Redakteur" + +#: ckan/authz.py:202 +msgid "Member" +msgstr "Mitglied" + +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Für diese Aufgabe werden Administratorrechte benötigt" + +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Seitentitel" + +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Stil" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Seitenslogan" + +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Seitenslogan-Logo" + +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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:55 +msgid "About page text" +msgstr "Text der \"Über uns\"-Seite" + +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Einführungstext" + +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Text der Startseite" + +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Angepasstes CSS" + +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Anpassbares CSS, das in den Seitenkopf eingefügt wird" + +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Startseite" + +#: ckan/controllers/admin.py:161 +#, 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:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Fehler beim Löschen der Revision %s: %s" + +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Löschung abgeschlossen" + +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Befehl nicht implementiert." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Zugriff verweigert" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Nicht gefunden" + +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Fehlerhafte Anfrage" + +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Befehl ist nicht bekannt: %s" + +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Fehler: %s" + +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Fehlerhafte Daten in der Anforderung: %s" + +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Kann Objekte vom Typ %s nicht auflisten" + +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Kann Objekte vom Typ %s nicht lesen" + +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Eine neues Objekt des Typs %s %s konnte nicht angelegt werden" + +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Das Paket konnte dem Suchindex nicht hinzugefügt werden" + +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Das Objekt des Typs %s kann nicht aktualisiert werden" + +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Der Suchindex konnte nicht aktualisiert werden" + +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Das Objekt des Typs %s %s kann nicht entfernt werden" + +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Keine Revision angegeben" + +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Es gibt keine Revision mit der ID %s" + +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Fehlender Suchbegriff ('since_id=UUID' oder 'since_time=TIMESTAMP')" + +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Konnte die Parameter nicht auslesen: %r" + +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Falsche Suchoption: %s" + +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Unbekanntes Register: %s" + +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "qjson Wert hat falsche Struktur: %r" + +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" +"Die Anfrageparameter müssen in der Form eines JSON-kodierten Objekts sein." + +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Gruppe nicht gefunden" + +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organisation nicht gefunden" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Ungültiger Gruppentyp" + +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organisationen" + +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Gruppen" + +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Tags" + +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formate" + +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Lizenzen" + +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 #, python-format msgid "User %r not authorized to edit %s" msgstr "Benutzer %r hat keine Berechtigung %s zu bearbeiten" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Keine Berechtigung für Massenupdates" + +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Nicht zum Anlegen einer Gruppe autorisiert" + +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 #: ckan/controllers/user.py:249 ckan/controllers/user.py:379 #: ckan/controllers/user.py:548 msgid "Integrity Error" msgstr "Integritätsfehler" -#: ckan/controllers/group.py:600 +#: ckan/controllers/group.py:594 #, 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:620 ckan/controllers/group.py:635 +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 #, python-format msgid "Unauthorized to delete group %s" msgstr "Keine Berechtigung die Gruppe %s zu löschen" -#: ckan/controllers/group.py:626 +#: ckan/controllers/group.py:620 msgid "Organization has been deleted." msgstr "Organisation wurde gelöscht." -#: ckan/controllers/group.py:628 +#: ckan/controllers/group.py:622 msgid "Group has been deleted." msgstr "Gruppe wurde gelöscht." -#: ckan/controllers/group.py:630 +#: ckan/controllers/group.py:624 #, python-format msgid "%s has been deleted." msgstr "%s wurde gelöscht." -#: ckan/controllers/group.py:704 +#: ckan/controllers/group.py:653 +#, 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:705 #, python-format msgid "Unauthorized to add member to group %s" -msgstr "Keine Berichtigung Mitglied zur Gruppe %s hinzuzufügen" +msgstr "Keine Berichtigung Mitglieder zur Gruppe %s hinzuzufügen" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Keine Berechtigung Mitglieder der Gruppe %s zu löschen" -#: ckan/controllers/group.py:730 +#: ckan/controllers/group.py:731 msgid "Group member has been deleted." msgstr "Gruppenmitglied wurde gelöscht." -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 msgid "Select two revisions before doing the comparison." msgstr "Wählen Sie zwei Revisionen um den Vergleich durchzuführen." -#: ckan/controllers/group.py:778 +#: ckan/controllers/group.py:779 msgid "CKAN Group Revision History" msgstr "CKAN Gruppen-Revisionshistorie" -#: ckan/controllers/group.py:782 +#: ckan/controllers/group.py:783 msgid "Recent changes to CKAN Group: " msgstr "Aktuelle Änderungen an der CKAN Gruppe:" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 msgid "Log message: " msgstr "Logeintrag:" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 #: ckan/controllers/user.py:715 msgid "You are now following {0}" msgstr "Sie folgen nun {0}" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 #: ckan/controllers/user.py:735 msgid "You are no longer following {0}" -msgstr "Sie folgen nicht mehr {0}" +msgstr "Sie folgen {0} nicht mehr" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 #, python-format msgid "Unauthorized to view followers %s" msgstr "Keine Berechtigung um die Follower %s anzuzeigen" -#: ckan/controllers/home.py:36 +#: 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:81 +#: ckan/controllers/home.py:73 #, python-format msgid "Please update your profile and add your email address. " msgstr "" -"Bitte aktualisiere Dein Profil und füge Deine " +"Bitte aktualisieren Sie Ihr Profil und fügen Sie Ihre " "Emailadresse hinzu." -#: ckan/controllers/home.py:83 +#: ckan/controllers/home.py:75 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "" -"%s verwendet Deine Emailadresse für den Fall, daß Du Dein Paßwort " -"zurücksetzen mußt." +"%s verwendet Ihre Emailadresse falls Sie Ihr Passwort zurücksetzen müssen." -#: ckan/controllers/package.py:290 +#: ckan/controllers/package.py:288 msgid "Invalid search query: {error_message}" msgstr "Ungültige Suchanfrage: {error_message}" -#: ckan/controllers/package.py:307 +#: ckan/controllers/package.py:304 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Parameter \"{parameter_name}\" ist kein Ganzzahlwert" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 msgid "Dataset not found" msgstr "Datensatz nicht gefunden" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 #, python-format msgid "Invalid revision format: %r" msgstr "Ungültiges Revisionsformat: %r" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -"Die Vorschau von {package_type}-Datensätzen im Format {format} wird nicht " -"unterstützt (Template-Datei {file} nicht vorhanden)." +"Eine Anzeige von Datensätze des Typs \"{package_type}\" wird nicht " +"unterstützt ({file_!r})." -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 #, python-format msgid "Unauthorized to read package %s" -msgstr "Keine Berechtigung Paket %s zu lesen" +msgstr "Keine Berechtigung zum Lesen von Paket %s" -#: ckan/controllers/package.py:448 +#: ckan/controllers/package.py:444 msgid "CKAN Dataset Revision History" msgstr "CKAN Datensatz-Änderungshistorie" -#: ckan/controllers/package.py:451 +#: ckan/controllers/package.py:447 msgid "Recent changes to CKAN Dataset: " msgstr "Letzte Änderungen im CKAN Datensatz:" -#: ckan/controllers/package.py:507 +#: ckan/controllers/package.py:503 msgid "Unauthorized to create a package" msgstr "Nicht zum Anlegen eines Pakets autorisiert" -#: ckan/controllers/package.py:577 +#: ckan/controllers/package.py:573 msgid "Unauthorized to edit this resource" msgstr "Keine Berechtigung um die Ressource zu bearbeiten" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Ressource nicht gefunden" - -#: ckan/controllers/package.py:654 +#: ckan/controllers/package.py:644 msgid "Unauthorized to update dataset" msgstr "Keine Berechtigung um den Datensatz zu aktualisieren" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 msgid "The dataset {id} could not be found." msgstr "Der Datensatz {id} konnte nicht gefunden werden." -#: ckan/controllers/package.py:660 +#: ckan/controllers/package.py:650 msgid "You must add at least one data resource" -msgstr "Du musst mindestens eine Daten-Ressource hinzufügen" - -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Fehler" +msgstr "Sie müsssen mindestens eine Daten-Ressource hinzufügen" -#: ckan/controllers/package.py:691 +#: ckan/controllers/package.py:681 msgid "Unauthorized to create a resource" msgstr "Keine Berechtigung um eine Ressource anzulegen" -#: ckan/controllers/package.py:727 +#: ckan/controllers/package.py:714 msgid "Unauthorized to create a resource for this package" msgstr "Nicht berechtigt, eine Ressource für dieses Package anzulegen" -#: ckan/controllers/package.py:941 +#: ckan/controllers/package.py:928 msgid "Unable to add package to search index." msgstr "Das Paket konnte dem Index nicht hinzugefügt werden" -#: ckan/controllers/package.py:989 +#: ckan/controllers/package.py:976 msgid "Unable to update search index." msgstr "Der Suchindex konnte nicht aktualisiert werden" -#: ckan/controllers/package.py:1026 +#: ckan/controllers/package.py:1013 msgid "Dataset has been deleted." msgstr "Datensatz wurde gelöscht." -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format msgid "Unauthorized to delete package %s" msgstr "Keine Berechtigung um das Paket %s zu löschen" -#: ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1041 msgid "Resource has been deleted." msgstr "Ressource wurde gelöscht." -#: ckan/controllers/package.py:1060 +#: ckan/controllers/package.py:1052 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Keine Berechtigung um die Ressource %s zu löschen" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 msgid "Resource view not found" msgstr "Ressourcen-View nicht gefunden" -#: ckan/controllers/package.py:1158 +#: ckan/controllers/package.py:1150 msgid "Resource data not found" msgstr "Ressource nicht gefunden" -#: ckan/controllers/package.py:1167 +#: ckan/controllers/package.py:1159 msgid "No download is available" msgstr "Kein Download verfügbar" -#: ckan/controllers/package.py:1305 +#: ckan/controllers/package.py:1296 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Keine Berechtigung um den Datensatz %s anzuzeigen" -#: ckan/controllers/package.py:1413 +#: ckan/controllers/package.py:1404 #, python-format msgid "Unauthorized to read resource %s" msgstr "Keine Leseberechtigung für Ressource %s" -#: ckan/controllers/package.py:1477 +#: ckan/controllers/package.py:1468 msgid "Unauthorized to edit resource" msgstr "Berechtigung fehlt, um Ressource zu ändern" -#: ckan/controllers/package.py:1495 +#: ckan/controllers/package.py:1486 msgid "View not found" msgstr "View nicht gefunden" -#: ckan/controllers/package.py:1501 +#: ckan/controllers/package.py:1492 msgid "View Type Not found" msgstr "View-Typ nicht gefunden" -#: ckan/controllers/package.py:1557 +#: ckan/controllers/package.py:1548 msgid "Bad resource view data" msgstr "Ungültige Ressource-View Daten" -#: ckan/controllers/package.py:1566 +#: ckan/controllers/package.py:1557 msgid "Resource view not supplied" msgstr "Ressourcen-View nicht angegeben" -#: ckan/controllers/package.py:1595 +#: ckan/controllers/package.py:1586 msgid "No preview has been defined." msgstr "Es wurde keine Vorschau definiert." @@ -590,13 +1216,6 @@ msgstr "Andere" msgid "Tag not found" msgstr "Tag nicht gefunden" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Benutzer nicht gefunden" - #: ckan/controllers/user.py:161 msgid "Unauthorized to register as a user." msgstr "Keine Berechtigung zur Registrierung als Benutzer." @@ -620,6 +1239,13 @@ msgstr "Kein Nutzer angegeben" msgid "Unauthorized to edit user %s" msgstr "Keine Berechtigung den Nutzer %s zu bearbeiten" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Benutzer nicht gefunden" + #: ckan/controllers/user.py:234 ckan/controllers/user.py:367 msgid "Profile updated" msgstr "Profil aktualisiert" @@ -639,7 +1265,7 @@ msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" msgstr "" -"Benutzer \"%s\" ist jetzt registriert, aber Du bist noch als \"%s\" " +"Benutzer \"%s\" ist jetzt registriert, aber Sie sind noch als \"%s\" " "angemeldet." #: ckan/controllers/user.py:293 @@ -713,7 +1339,7 @@ msgstr "Die eingegebenen Passwörter stimmen nicht überein." #: ckan/controllers/user.py:568 msgid "You must provide a password" -msgstr "Du musst ein Passwort angeben" +msgstr "Sie müssen ein Passwort angeben" #: ckan/controllers/user.py:636 msgid "Follow item not found" @@ -812,7 +1438,7 @@ msgstr "{actor} hat sich registriert" #: ckan/lib/activity_streams.py:115 msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} hat das Tag {tag} vom Datensatz {dataset} entfernt" +msgstr "{actor} hat den Tag {tag} vom Datensatz {dataset} entfernt" #: ckan/lib/activity_streams.py:118 msgid "{actor} started following {dataset}" @@ -826,7 +1452,7 @@ msgstr "{actor} folgt nun {user}" msgid "{actor} started following {group}" msgstr "{actor} folgt nun {group}" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -887,135 +1513,135 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: ckan/lib/formatters.py:116 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Gerade eben" -#: ckan/lib/formatters.py:118 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "Vor {mins} Minute" msgstr[1] "Vor {mins} Minuten" -#: ckan/lib/formatters.py:121 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "Vor {hours} Stunde" msgstr[1] "Vor {hours} Stunden" -#: ckan/lib/formatters.py:127 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "Vor {days} Tag" msgstr[1] "Vor {days} Tagen" -#: ckan/lib/formatters.py:130 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "Vor {months} Monat" msgstr[1] "Vor {months} Monaten" -#: ckan/lib/formatters.py:132 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "vor über {years} Jahr" msgstr[1] "vor über {years} Jahren" -#: ckan/lib/formatters.py:148 +#: ckan/lib/formatters.py:146 msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "{day}. {month}. {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:153 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{day}. {month} {year}" -#: ckan/lib/formatters.py:169 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} Byte" -#: ckan/lib/formatters.py:171 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:173 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:175 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:177 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:189 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:191 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k} Tsd." -#: ckan/lib/formatters.py:193 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m} Mio." -#: ckan/lib/formatters.py:195 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g} Mrd." -#: ckan/lib/formatters.py:197 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t} Bio." -#: ckan/lib/formatters.py:199 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p} Brd." -#: ckan/lib/formatters.py:201 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e} Trio." -#: ckan/lib/formatters.py:203 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z} Trd." -#: ckan/lib/formatters.py:205 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y} Qio." -#: ckan/lib/helpers.py:1018 +#: ckan/lib/helpers.py:1048 msgid "Update your avatar at gravatar.com" -msgstr "Aktualisiere Deinen Avatar auf gravatar.com" +msgstr "Aktualisieren Sie Ihren Avatar auf gravatar.com" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 msgid "Unknown" msgstr "Unbekannt" -#: ckan/lib/helpers.py:1330 +#: ckan/lib/helpers.py:1361 msgid "Unnamed resource" msgstr "Unbenannte Ressource" -#: ckan/lib/helpers.py:1370 +#: ckan/lib/helpers.py:1401 msgid "Created new dataset." msgstr "Neuer Datensatz erstellt." -#: ckan/lib/helpers.py:1372 +#: ckan/lib/helpers.py:1403 msgid "Edited resources." msgstr "Ressourcen bearbeitet." -#: ckan/lib/helpers.py:1374 +#: ckan/lib/helpers.py:1405 msgid "Edited settings." msgstr "Einstellungen bearbeitet." -#: ckan/lib/helpers.py:1616 +#: ckan/lib/helpers.py:1648 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} Aufruf" msgstr[1] "{number} Aufrufe" -#: ckan/lib/helpers.py:1618 +#: ckan/lib/helpers.py:1650 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} kürzlicher Aufruf" @@ -1047,7 +1673,8 @@ msgstr "Gruppe" #: ckan/lib/navl/dictization_functions.py:32 #: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 #: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 msgid "Missing value" msgstr "Fehlender Wert" @@ -1060,21 +1687,15 @@ msgstr "Das Eingabefeld %(name)s war nicht erwartet." msgid "Please enter an integer value" msgstr "Bitte gib eine Ganzzahl ein" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Ressourcen" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "Das dürfen nur Unicode-Zeichen sein" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 msgid "Package resource(s) invalid" msgstr "Paketressource(n) ungültig" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 #: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 msgid "Extras" msgstr "Extras" @@ -1082,178 +1703,159 @@ msgstr "Extras" #: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Tag-Vokabular \"%s\" existiert nicht" - -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Benutzer" - -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Datensatz" - -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Gruppe" +msgstr "Das Tag-Vokabular \"%s\" existiert nicht" #: ckan/logic/converters.py:180 msgid "Could not parse as valid JSON" msgstr "Kann nicht als gültiges JSON erkannt werden" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 msgid "An organization must be provided" msgstr "Eine Organisation muss angegeben werden" -#: ckan/logic/validators.py:46 +#: ckan/logic/validators.py:47 msgid "Organization does not exist" msgstr "Organisation nicht vorhanden" -#: ckan/logic/validators.py:51 +#: ckan/logic/validators.py:52 msgid "You cannot add a dataset to this organization" msgstr "Sie können dieser Organisation keinen Datensatz hinzufügen" -#: ckan/logic/validators.py:91 +#: ckan/logic/validators.py:92 msgid "Invalid integer" msgstr "Ungültige Ganzzahl" -#: ckan/logic/validators.py:96 +#: ckan/logic/validators.py:97 msgid "Must be a natural number" msgstr "Muss eine Ganzzahl sein" -#: ckan/logic/validators.py:102 +#: ckan/logic/validators.py:103 msgid "Must be a postive integer" msgstr "Muss eine positive und ganze Zahl sein" -#: ckan/logic/validators.py:129 +#: ckan/logic/validators.py:130 msgid "Date format incorrect" msgstr "Datumsformat ungültig." -#: ckan/logic/validators.py:138 +#: ckan/logic/validators.py:139 msgid "No links are allowed in the log_message." msgstr "Keine Links zulässig in der Log-Mitteilung." -#: ckan/logic/validators.py:158 +#: ckan/logic/validators.py:159 msgid "Dataset id already exists" msgstr "Datensatz ID gibt es schon" -#: ckan/logic/validators.py:199 +#: ckan/logic/validators.py:200 msgid "Resource" msgstr "Ressource" -#: ckan/logic/validators.py:253 +#: ckan/logic/validators.py:254 msgid "That group name or ID does not exist." msgstr "Dieser Gruppenname oder diese ID existieren nicht." -#: ckan/logic/validators.py:267 +#: ckan/logic/validators.py:268 msgid "Activity type" msgstr "Aktivitätstyp" -#: ckan/logic/validators.py:330 +#: ckan/logic/validators.py:331 msgid "Names must be strings" msgstr "Namen müssen Strings (Zeichenketten) sein" -#: ckan/logic/validators.py:334 +#: ckan/logic/validators.py:335 msgid "That name cannot be used" msgstr "Dieser Name kann nicht verwendet werden." -#: ckan/logic/validators.py:337 +#: ckan/logic/validators.py:338 #, python-format msgid "Must be at least %s characters long" msgstr "Muss mindestens %s Zeichen lang sein" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Name darf maximal %i Zeichen lang sein" -#: ckan/logic/validators.py:342 +#: ckan/logic/validators.py:343 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "Darf nur Kleinbuchstaben (ASCII) enthalten und diese Zeichen: -_" -#: ckan/logic/validators.py:360 +#: ckan/logic/validators.py:361 msgid "That URL is already in use." msgstr "Diese URL ist bereits vergeben." -#: ckan/logic/validators.py:365 +#: ckan/logic/validators.py:366 #, 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:369 +#: ckan/logic/validators.py:370 #, 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:375 +#: ckan/logic/validators.py:376 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Version darf maximal %i Zeichen lang sein" -#: ckan/logic/validators.py:393 +#: ckan/logic/validators.py:394 #, python-format msgid "Duplicate key \"%s\"" msgstr "Doppelter Schlüssel \"%s\"" -#: ckan/logic/validators.py:409 +#: ckan/logic/validators.py:410 msgid "Group name already exists in database" msgstr "Gruppenname exisitiert bereits in der Datenbank" -#: ckan/logic/validators.py:415 +#: ckan/logic/validators.py:416 #, python-format msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Die Länge des Tag \"%s\" ist kürzer als das Minimum von %s" +msgstr "Der Tag \"%s\" muss mindestens %s Zeichen lang sein" -#: ckan/logic/validators.py:419 +#: ckan/logic/validators.py:420 #, python-format msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Tag \"%s\" ist länger als maximal %i Zeichen" +msgstr "Der Tag \"%s\" darf nicht länger als %i Zeichen sein" -#: ckan/logic/validators.py:427 +#: ckan/logic/validators.py:428 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -"Tag \"%s\" muss aus alphnummerischen Zeichen oder diesen Symbolen bestehen: " -"-_. " +"Der Tag \"%s\" muss aus alphnummerischen Zeichen oder diesen Symbolen " +"bestehen: -_. " -#: ckan/logic/validators.py:435 +#: ckan/logic/validators.py:436 #, python-format msgid "Tag \"%s\" must not be uppercase" -msgstr "Schlagwort \"%s\" darf keine Buchstaben in Großschrift enthalten" +msgstr "Der Tag \"%s\" darf keine Großbuchstaben enthalten" -#: ckan/logic/validators.py:544 +#: ckan/logic/validators.py:545 msgid "User names must be strings" msgstr "Benutzernamen müssen Zeichenketten/Strings sein" -#: ckan/logic/validators.py:560 +#: ckan/logic/validators.py:561 msgid "That login name is not available." msgstr "Der Anmeldename ist nicht verfügbar." -#: ckan/logic/validators.py:569 +#: ckan/logic/validators.py:570 msgid "Please enter both passwords" msgstr "Bitte beide Passwörter angebens" -#: ckan/logic/validators.py:577 +#: ckan/logic/validators.py:578 msgid "Passwords must be strings" msgstr "Kennworte müssen Zeichenketten/Strings sein" -#: ckan/logic/validators.py:581 +#: ckan/logic/validators.py:582 msgid "Your password must be 4 characters or longer" msgstr "Ihr Passwort muss mindestens 4 Zeichen lang sein" -#: ckan/logic/validators.py:589 +#: ckan/logic/validators.py:590 msgid "The passwords you entered do not match" msgstr "Die angegebenen Passwörter stimmen nicht überein" -#: ckan/logic/validators.py:610 +#: ckan/logic/validators.py:611 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." @@ -1261,228 +1863,232 @@ msgstr "" "Diese Bearbeitung nicht zulassen, weil sie wie Spam aussieht. Bitte " "vermeiden Sie Links in der Beschreibung." -#: ckan/logic/validators.py:619 +#: ckan/logic/validators.py:620 #, python-format msgid "Name must be at least %s characters long" msgstr "Name muss mindestens %s Zeichen lang sein" -#: ckan/logic/validators.py:627 +#: ckan/logic/validators.py:628 msgid "That vocabulary name is already in use." msgstr "Dieser Vokabular-Name wird bereits verwendet." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:634 #, 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:642 +#: ckan/logic/validators.py:643 msgid "Tag vocabulary was not found." msgstr "Tag-Vokabular wurde nicht gefunden." -#: ckan/logic/validators.py:655 +#: ckan/logic/validators.py:656 #, python-format msgid "Tag %s does not belong to vocabulary %s" -msgstr "Tag %s gehört nicht zu Vokabular %s." +msgstr "Der Tag %s gehört nicht zum Vokabular %s." -#: ckan/logic/validators.py:661 +#: ckan/logic/validators.py:662 msgid "No tag name" msgstr "Kein Tag-Name" -#: ckan/logic/validators.py:674 +#: ckan/logic/validators.py:675 #, python-format msgid "Tag %s already belongs to vocabulary %s" -msgstr "Tag %s gehört bereits zu Vokabular %s" +msgstr "Der Tag %s gehört bereits zum Vokabular %s" -#: ckan/logic/validators.py:697 +#: ckan/logic/validators.py:698 msgid "Please provide a valid URL" msgstr "Bitte eine valide URL angeben" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:712 msgid "role does not exist." msgstr "Rolle ist nicht vorhanden." -#: ckan/logic/validators.py:740 +#: ckan/logic/validators.py:741 msgid "Datasets with no organization can't be private." msgstr "Datensätze ohne Organisation können nicht privat sein." -#: ckan/logic/validators.py:746 +#: ckan/logic/validators.py:747 msgid "Not a list" msgstr "Keine Liste" -#: ckan/logic/validators.py:749 +#: ckan/logic/validators.py:750 msgid "Not a string" msgstr "Keine Zeichenkette" -#: ckan/logic/validators.py:781 +#: ckan/logic/validators.py:782 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:791 +#: ckan/logic/validators.py:792 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:802 +#: ckan/logic/validators.py:803 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:805 +#: ckan/logic/validators.py:806 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:819 +#: ckan/logic/validators.py:820 msgid "There is a schema field with the same name" msgstr "Es gibt ein Vorlagefeld mit dem gleichen Namen" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "Email {email} ist kein gültiges Format" + +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Objekt %s anlegen" -#: ckan/logic/action/create.py:532 +#: ckan/logic/action/create.py:544 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Herstellen einer Paketbeziehung: %s %s %s" -#: ckan/logic/action/create.py:573 +#: ckan/logic/action/create.py:585 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Erstelle Mitgliedsobjekt %s" -#: ckan/logic/action/create.py:792 +#: ckan/logic/action/create.py:804 msgid "Trying to create an organization as a group" msgstr "Versuche eine Organisation als Gruppe anzulegen" -#: ckan/logic/action/create.py:881 +#: ckan/logic/action/create.py:893 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:884 +#: ckan/logic/action/create.py:896 msgid "You must supply a rating (parameter \"rating\")." msgstr "Sie müssen eine Bewertung angeben (parameter \"rating\")." -#: ckan/logic/action/create.py:889 +#: ckan/logic/action/create.py:901 msgid "Rating must be an integer value." msgstr "Die Bewertung muss einen integer Wert sein." -#: ckan/logic/action/create.py:893 +#: ckan/logic/action/create.py:905 #, python-format msgid "Rating must be between %i and %i." msgstr "Bewertung muss zwischen %i und %i sein." -#: ckan/logic/action/create.py:1052 +#: ckan/logic/action/create.py:1064 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:1265 ckan/logic/action/create.py:1272 +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 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:1285 +#: ckan/logic/action/create.py:1297 msgid "You cannot follow yourself" msgstr "Sie können nicht sich selbst folgen" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 msgid "You are already following {0}" msgstr "Sie folgen {0} bereits " -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 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:1390 +#: ckan/logic/action/create.py:1402 msgid "User {username} does not exist." msgstr "Benutzer {username} nicht gefunden." -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 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:45 +#: ckan/logic/action/delete.py:54 msgid " Delete User: {0}" msgstr " Benutzer löschen: {0}" -#: ckan/logic/action/delete.py:86 +#: ckan/logic/action/delete.py:92 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Paket löschen: %s" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Entfernen %s" -#: ckan/logic/action/delete.py:312 +#: ckan/logic/action/delete.py:318 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Entferne Mitglied: %s" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 msgid "id not in data" msgstr "ID nicht in Daten enthalten" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Vokabular \"%s\" konnte nicht gefunden werden" -#: ckan/logic/action/delete.py:572 +#: ckan/logic/action/delete.py:578 #, python-format msgid "Could not find tag \"%s\"" -msgstr "Tag \"%s\" konnte nicht gefunden werden" +msgstr "Der Tag \"%s\" konnte nicht gefunden werden" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 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:613 +#: ckan/logic/action/delete.py:619 msgid "You are not following {0}." msgstr "Sie folgen {0} nicht." -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 msgid "Resource was not found." msgstr "Ressource wurde nicht gefunden" -#: ckan/logic/action/get.py:2049 +#: ckan/logic/action/get.py:2087 msgid "Do not specify if using \"query\" parameter" msgstr "Nicht angeben, wenn \"query\"-Parameter genutzt wird" -#: ckan/logic/action/get.py:2058 +#: ckan/logic/action/get.py:2096 msgid "Must be : pair(s)" msgstr "Müssen : Paare sein" -#: ckan/logic/action/get.py:2090 +#: ckan/logic/action/get.py:2128 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Feld \"{field}\" wird von resource_search nicht erkannt." -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 msgid "Package was not found." msgstr "Paket wurde nicht gefunden." -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Update Objekt %s" -#: ckan/logic/action/update.py:380 +#: ckan/logic/action/update.py:401 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Neue Packetbeziehung: %s %s %s" -#: ckan/logic/action/update.py:740 +#: ckan/logic/action/update.py:761 msgid "TaskStatus was not found." msgstr "TaskStatus nicht gefunden." -#: ckan/logic/action/update.py:1038 +#: ckan/logic/action/update.py:1059 msgid "Organization was not found." msgstr "Organisation wurde nicht gefunden." @@ -1508,7 +2114,7 @@ msgid "No dataset id provided, cannot check auth." msgstr "Autorisierung kann nicht durchgeführt werden, da " #: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" "Kein Paket zu dieser Ressource gefunden, kann daher die " @@ -1543,24 +2149,24 @@ msgstr "Benutzer {user} darf keine Benutzer mit der API anlegen" msgid "Not authorized to create users" msgstr "Nicht berechtigt, Benutzer anzulegen" -#: ckan/logic/auth/create.py:191 +#: ckan/logic/auth/create.py:189 msgid "Group was not found." msgstr "Gruppe wurde nicht gefunden" -#: ckan/logic/auth/create.py:211 +#: ckan/logic/auth/create.py:209 msgid "Valid API key needed to create a package" msgstr "Gültiger API-Schlüssel notwendig, um ein Paket anzulegen" -#: ckan/logic/auth/create.py:219 +#: ckan/logic/auth/create.py:217 msgid "Valid API key needed to create a group" msgstr "Gültiger API-Schlüssel zum Anlegen einer Gruppe notwendig" -#: ckan/logic/auth/create.py:239 +#: ckan/logic/auth/create.py:237 #, 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:263 ckan/logic/auth/update.py:115 +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Benutzer %s hat keine Berechtigung die Gruppe %s zu bearbeiten" @@ -1606,33 +2212,33 @@ msgstr "Benutzer %s hat keine Berechtigung, um die Organisation %s zu löschen" msgid "User %s not authorized to delete task_status" msgstr "Benutzer %s ist nicht berechtigt, task_status zu löschen" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 msgid "Not authorized" msgstr "Keine Berechtigung" -#: ckan/logic/auth/get.py:108 +#: ckan/logic/auth/get.py:109 #, 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:130 +#: 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:149 +#: 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:176 +#: ckan/logic/auth/get.py:170 #, 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:258 +#: ckan/logic/auth/get.py:252 msgid "You must be logged in to access your dashboard." -msgstr "Du musst angemeldet sein, um die Übersichtsseite sehen zu können." +msgstr "Sie müssen angemeldet sein, um die Übersichtsseite sehen zu können." #: ckan/logic/auth/update.py:39 #, python-format @@ -1669,42 +2275,42 @@ msgstr "" "Benutzer %s hat keine Berechtigung die Berechtigungen an der Gruppe %s zu " "bearbeiten" -#: ckan/logic/auth/update.py:189 +#: ckan/logic/auth/update.py:190 msgid "Have to be logged in to edit user" msgstr "Eine Anmeldung ist erforderlich, um die Benutzerdaten zu ändern." -#: ckan/logic/auth/update.py:197 +#: ckan/logic/auth/update.py:198 #, 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:208 +#: ckan/logic/auth/update.py:209 msgid "User {0} not authorized to update user {1}" msgstr "Benutzer {0} darf den Benutzer {1} nicht ändern" -#: ckan/logic/auth/update.py:216 +#: ckan/logic/auth/update.py:217 #, 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:225 +#: ckan/logic/auth/update.py:226 #, 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:239 +#: ckan/logic/auth/update.py:240 #, 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/logic/auth/update.py:261 +#: ckan/logic/auth/update.py:262 msgid "Valid API key needed to edit a package" msgstr "Gültiger API-Schlüssel zum Bearbeiten des Pakets notwendig." -#: ckan/logic/auth/update.py:271 +#: ckan/logic/auth/update.py:272 msgid "Valid API key needed to edit a group" msgstr "Gültiger API-Schlüssel zum Bearbeiten der Gruppe notwendig." @@ -1813,100 +2419,98 @@ msgstr "ist ein Elternteil von %s" msgid "has sibling %s" msgstr "hat einen Zwilling %s" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Lädt..." - -#: ckan/public/base/javascript/modules/api-info.js:20 +#: ckan/public/base/javascript/modules/api-info.js:96 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:21 +#: ckan/public/base/javascript/modules/api-info.js:124 msgid "Failed to load data API information" msgstr "Informationen zur Daten-API konnten nicht geladen werden" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Keine Treffer" - -#: ckan/public/base/javascript/modules/autocomplete.js:32 +#: ckan/public/base/javascript/modules/autocomplete.js:195 msgid "Start typing…" msgstr "Gib etwas ein..." -#: ckan/public/base/javascript/modules/autocomplete.js:34 +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Keine Treffer" + +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, python-format msgid "Input is too short, must be at least one character" -msgstr "Eingabe ist zu kurz, muss mindestens ein Zeichen sein" +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 msgid "There are unsaved modifications to this form" msgstr "Dieses Formular hat ungespeicherte Änderungen" -#: ckan/public/base/javascript/modules/confirm-action.js:7 +#: ckan/public/base/javascript/modules/confirm-action.js:97 msgid "Please Confirm Action" msgstr "Bestätige bitte die Aktion" -#: ckan/public/base/javascript/modules/confirm-action.js:8 +#: ckan/public/base/javascript/modules/confirm-action.js:100 msgid "Are you sure you want to perform this action?" -msgstr "Bist du sicher, dass du diese Aktion ausführen willst?" +msgstr "Sind Sie sicher, dass Sie diese Aktion ausführen wollen?" -#: ckan/public/base/javascript/modules/confirm-action.js:9 +#: ckan/public/base/javascript/modules/confirm-action.js:102 #: ckan/templates/user/new_user_form.html:9 #: ckan/templates/user/perform_reset.html:21 msgid "Confirm" msgstr "Bestätigen" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 #: 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:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Folgen" +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Abbrechen" -#: ckan/public/base/javascript/modules/follow.js:24 +#: ckan/public/base/javascript/modules/follow.js:69 #: ckan/templates/snippets/follow_button.html:9 msgid "Unfollow" msgstr "Entfolgen" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Hochladen" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Folgen" -#: ckan/public/base/javascript/modules/image-upload.js:17 +#: ckan/public/base/javascript/modules/image-upload.js:60 msgid "Link" msgstr "Link" -#: ckan/public/base/javascript/modules/image-upload.js:18 +#: ckan/public/base/javascript/modules/image-upload.js:61 +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:68 +msgid "Upload" +msgstr "Hochladen" + +#: ckan/public/base/javascript/modules/image-upload.js:72 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 #: ckan/templates/snippets/search_form.html:68 msgid "Remove" msgstr "Entfernen" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Bild" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Datei von Ihrem Computer hochladen" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: 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 @@ -1914,86 +2518,78 @@ msgstr "Bild" msgid "URL" msgstr "URL" -#: ckan/public/base/javascript/modules/image-upload.js:21 +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 msgid "File" msgstr "Datei" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Datei von Ihrem Computer hochladen" - -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Ressourcen neu ordnen" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 msgid "Save order" msgstr "Reihenfolge speichern" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 msgid "Saving..." msgstr "Speichern..." -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 msgid "Upload a file" msgstr "Datei hochladen" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 msgid "An Error Occurred" msgstr "Es trat ein Fehler auf" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Ressource hochgeladen" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 msgid "Unable to upload file" msgstr "Datei konnte nicht hochgeladen werden" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 msgid "Unable to authenticate upload" msgstr "Upload konnte nicht autentifiziert werden" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Ressource hochgeladen" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 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:31 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 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-reorder.js:8 -msgid "Reorder resource view" -msgstr "Ressourcen neu ordnen" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: 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 +msgid "Select a field" +msgstr "Wählen Sie ein Feld" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 #: ckan/templates/organization/bulk_process.html:65 #: ckan/templates/organization/edit.html:3 #: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 +#: ckan/templates/organization/members.html:33 #: ckan/templates/package/edit_base.html:11 #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 +#: ckan/templates/package/snippets/resource_item.html:56 msgid "Edit" msgstr "Bearbeiten" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 msgid "Show more" msgstr "Mehr anzeigen" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 msgid "Hide" msgstr "Verstecken" @@ -2124,21 +2720,21 @@ msgstr "Papierkorb" #: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" -msgstr "Bist du sicher, dass du die Konfiguration zurücksetzen willst?" +msgstr "Sind Sie sicher, dass Sie die Konfiguration zurücksetzen wollen?" -#: ckan/templates/admin/config.html:17 +#: ckan/templates/admin/config.html:16 msgid "Reset" msgstr "Zurücksetzen" -#: ckan/templates/admin/config.html:18 +#: ckan/templates/admin/config.html:17 msgid "Update Config" msgstr "Konfiguration aktualisieren" -#: ckan/templates/admin/config.html:27 +#: ckan/templates/admin/config.html:26 msgid "CKAN config options" msgstr "Optionen der CKAN-Konfiguration" -#: ckan/templates/admin/config.html:34 +#: ckan/templates/admin/config.html:33 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2167,8 +2763,8 @@ msgstr "" "Dieser text erscheint in dieser CKAN Instanz Startseite als Willkommensseite für Besucher.

" "

Individuelles CSS: Dieser CSS-Block wird eingebunden in " -"<head> Schlagwort jeder Seite. Wenn Sie die Templates " -"noch besser anpassen wollen, lesen Sie die <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.

" @@ -2202,89 +2798,12 @@ msgstr "Löschen" msgid "

Purge deleted datasets forever and irreversibly.

" msgstr "Entfernte Datensätze endgültig und unwiderruflich löschen." -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" - -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "" -"Zugriff auf Ressourcen per Web-Schnittstelle mit umfangreichen " -"Suchmöglichkeiten" - -#: ckan/templates/ajax_snippets/api_info.html:24 -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.

" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Endpunkt, engl. Endpoint" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"Die Daten-Schnittstelle (Data-API) kann über folgende Schnittstellenbefehle " -"der CKAN Action API erreicht werden." - -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Erstellen" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Aktualisieren / Einfügen" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Abfrage" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Abfrage (mit SQL)" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Abfrage läuft" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Abfragebeispiel (erste 5 Ergebnisse)" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Abfragebeispiel (Ergebnisse enthalten 'jones')" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Abfragebeispiel (mit SQL Befehl)" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Beispiel: Javascript" - -#: ckan/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." - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Beispiel: Python" - #: 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:118 +#: ckan/templates/package/resource_read.html:115 #: ckan/templates/package/snippets/resource_view.html:26 msgid "Click here for more information." msgstr "Klick hier für mehr Informationen" @@ -2294,12 +2813,6 @@ msgstr "Klick hier für mehr Informationen" msgid "Download resource" msgstr "Ressource herunterladen" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Dein Browser unterstützt keine Iframes." - #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." msgstr "Keine Voransicht verfügbar." @@ -2425,15 +2938,15 @@ msgstr "Bestätige das Löschen" #: ckan/templates/group/confirm_delete.html:11 msgid "Are you sure you want to delete group - {name}?" -msgstr "Bist du sicher, dass du die Gruppe {name} löschen willst?" +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 "Bist du sicher, dass du das Mitglied {name} löschen willst?" +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/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 @@ -2448,26 +2961,12 @@ msgstr "Bearbeiten" msgid "Edit Group" msgstr "Bearbeite Gruppe" -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 +#: ckan/templates/group/edit_base.html:23 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/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Follower" - #: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 #: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 msgid "History" @@ -2482,28 +2981,6 @@ msgstr "Gruppe hinzufügen" msgid "Search groups..." msgstr "Gruppe suchen..." -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Name aufsteigend" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Name absteigend" - #: 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" @@ -2511,7 +2988,7 @@ 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 du eine erstellst?" +msgstr "Wie wäre es, wenn Sie eine erstellen?" #: ckan/templates/group/member_new.html:8 #: ckan/templates/organization/member_new.html:10 @@ -2525,11 +3002,11 @@ msgid "Edit Member" msgstr "Mitglied bearbeiten" #: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 +#: ckan/templates/group/member_new.html:64 ckan/templates/group/members.html:6 #: ckan/templates/organization/member_new.html:7 #: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 +#: ckan/templates/organization/member_new.html:65 +#: ckan/templates/organization/members.html:8 msgid "Add Member" msgstr "Mitglied hinzufügen" @@ -2562,44 +3039,40 @@ msgstr "" "Um einen neuen Benutzer einzuladen, geben Sie dessen Email-Adresse ein." #: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 +#: ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 +#: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Rolle" #: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 +#: ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 +#: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" -msgstr "Bist du sicher, dass du dieses Mitglied löschen willst?" +msgstr "Sind Sie sicher, dass Sie dieses Mitglied löschen wollen?" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 #: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 #: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 #: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 +#: ckan/templates/user/edit_user_form.html:45 msgid "Delete" msgstr "Löschen" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Speichern" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 msgid "What are roles?" msgstr "Was sind Rollen?" -#: ckan/templates/group/member_new.html:81 +#: ckan/templates/group/member_new.html:80 msgid "" "

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

Member: Can add/remove " @@ -2622,32 +3095,6 @@ msgstr "Aktualisiere Gruppe" msgid "Create Group" msgstr "Gruppe anlegen" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevanz" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Zuletzt geändert" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Beliebt" - #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." @@ -2676,42 +3123,18 @@ msgstr "Meine Gruppe" msgid "my-group" msgstr "meine-gruppe" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Beschreibung" - #: 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:60 msgid "Are you sure you want to delete this Group?" -msgstr "Bist du sicher, dass du diese Gruppe löschen willst?" +msgstr "Sind Sie sicher, dass Sie diese Gruppe löschen wollen?" -#: ckan/templates/group/snippets/group_form.html:64 +#: ckan/templates/group/snippets/group_form.html:63 msgid "Save Group" msgstr "Gruppe speichern" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{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/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "Keine Datensätze" - #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 msgid "View {name}" @@ -2861,7 +3284,7 @@ msgstr "Suchdaten" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "Beliebte Schlagworte" +msgstr "Beliebte Tags" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" @@ -2883,6 +3306,10 @@ msgstr "Organisationen" msgid "groups" msgstr "Gruppen" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Webseiten-Logo" + #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -2972,7 +3399,7 @@ 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 "Bist du sicher, dass du die Organisation {name} löschen willst?" +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 @@ -3007,11 +3434,11 @@ msgstr "Benutzername" msgid "Email address" msgstr "Email-Adresse" -#: ckan/templates/organization/member_new.html:62 +#: ckan/templates/organization/member_new.html:61 msgid "Update Member" msgstr "Mitglied aktualisieren" -#: ckan/templates/organization/member_new.html:82 +#: ckan/templates/organization/member_new.html:81 msgid "" "

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

Editor: Can add and " @@ -3025,6 +3452,12 @@ msgstr "" "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 @@ -3103,12 +3536,12 @@ msgstr "" "Soll diese Organisation wirklich gelöscht werden? Dieser Vorgang wird auch " "alle öffentlichen und privaten Datensätze dieser Organisation löschen." -#: ckan/templates/organization/snippets/organization_form.html:64 +#: ckan/templates/organization/snippets/organization_form.html:63 msgid "Save Organization" msgstr "Organisation speichern" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 msgid "View {organization_name}" msgstr "{organization_name} ansehen" @@ -3133,11 +3566,11 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:12 msgid "Are you sure you want to delete dataset - {name}?" -msgstr "Bist du sicher, dass du den Datensatz {name} löschen willst?" +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 "Bist du sicher, dass du die Ressource {name} löschen willst?" +msgstr "Sind Sie sicher, dass Sie die Ressource {name} löschen wollen?" #: ckan/templates/package/edit_base.html:16 msgid "View dataset" @@ -3156,7 +3589,7 @@ msgstr "Ansicht bearbeiten" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 +#: ckan/templates/package/snippets/resource_item.html:32 #: ckan/templates/snippets/datapreview_embed_dialog.html:16 msgid "Preview" msgstr "Vorschau" @@ -3221,7 +3654,7 @@ msgstr "" "Dokumentation. " #: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 +#: ckan/templates/package/snippets/resource_form.html:81 msgid "Add" msgstr "Hinzufügen" @@ -3234,48 +3667,6 @@ msgstr "" "Dies ist eine alte Version dieses Datensatzes vom %(timestamp)s. Sie kann " "erheblich von der aktuellen Version abweichen." -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Zum DataStore hochladen" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Fehler beim Hochladen:" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Fehler:" - -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "Fehler-Verfolgung:" - -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Status" - -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Zuletzt aktualisiert" - -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Nie" - -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Log hochladen" - -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Details" - -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "Ende des Logs" - #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" msgstr "Alle Ressourcen" @@ -3285,15 +3676,11 @@ msgid "View resource" msgstr "Ressource ansehen" #: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 +#: ckan/templates/package/resource_edit_base.html:30 msgid "Edit resource" msgstr "Ressource bearbeiten" #: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" - -#: ckan/templates/package/resource_edit_base.html:28 msgid "Views" msgstr "Ansichten" @@ -3302,54 +3689,54 @@ msgid "API Endpoint" msgstr "API-Schnittstelle" #: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 +#: ckan/templates/package/snippets/resource_item.html:47 msgid "Go to resource" msgstr "Zur Ressource" #: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 +#: ckan/templates/package/snippets/resource_item.html:44 msgid "Download" msgstr "Herunterladen" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 msgid "URL:" msgstr "URL:" -#: ckan/templates/package/resource_read.html:69 +#: ckan/templates/package/resource_read.html:66 msgid "From the dataset abstract" msgstr "Aus der Zusammenfassung des Datensatzes" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/package/resource_read.html:68 #, python-format msgid "Source: %(dataset)s" msgstr "Quelle: %(dataset)s" -#: ckan/templates/package/resource_read.html:112 +#: ckan/templates/package/resource_read.html:109 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:116 +#: ckan/templates/package/resource_read.html:113 msgid "Not seeing the views you were expecting?" msgstr "Sehen Sie nicht die erwarteten Darstellungen/Views?" -#: ckan/templates/package/resource_read.html:121 +#: ckan/templates/package/resource_read.html:118 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:123 +#: ckan/templates/package/resource_read.html:120 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:124 +#: ckan/templates/package/resource_read.html:121 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:125 +#: ckan/templates/package/resource_read.html:122 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 " @@ -3359,41 +3746,50 @@ msgstr "" "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:147 +#: ckan/templates/package/resource_read.html:144 msgid "Additional Information" msgstr "Zusätzliche Informationen" -#: ckan/templates/package/resource_read.html:151 +#: ckan/templates/package/resource_read.html:148 #: ckan/templates/package/snippets/additional_info.html:6 #: ckan/templates/revision/diff.html:43 #: ckan/templates/snippets/additional_info.html:11 msgid "Field" msgstr "Feld" -#: ckan/templates/package/resource_read.html:152 +#: ckan/templates/package/resource_read.html:149 #: ckan/templates/package/snippets/additional_info.html:7 #: ckan/templates/snippets/additional_info.html:12 msgid "Value" msgstr "Wert" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "Daten wurden zuletzt aktualisiert" + +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 msgid "unknown" msgstr "unbekannt" -#: ckan/templates/package/resource_read.html:161 +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "Metadaten zuletzt aktualisiert" + +#: ckan/templates/package/resource_read.html:162 #: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Erstellt" -#: ckan/templates/package/resource_read.html:165 +#: ckan/templates/package/resource_read.html:166 #: ckan/templates/package/snippets/resource_form.html:37 #: ckan/templates/package/snippets/resource_info.html:16 msgid "Format" msgstr "Format" -#: ckan/templates/package/resource_read.html:169 +#: ckan/templates/package/resource_read.html:170 #: ckan/templates/package/snippets/package_basic_fields.html:30 #: ckan/templates/snippets/license.html:21 msgid "License" @@ -3411,8 +3807,8 @@ msgstr "Diese Ressource hat keine Darstellungen/Views" msgid "Add new resource" msgstr "Neue Ressource hinzufügen" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" "

This dataset has no data, why not " @@ -3439,7 +3835,7 @@ 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 kannst dieses Register auch über die %(api_link)s (siehe " +" 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 @@ -3448,7 +3844,7 @@ msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " msgstr "" -"Du kannst dieses Register auch über der %(api_link)s (siehe " +"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 @@ -3517,10 +3913,6 @@ msgstr "" "Ein Systemadministrator muss diese zunächst Organisation anlegen, damit Sie " "fortfahren können." -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Daten-API" - #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 msgid "Title" @@ -3588,9 +3980,9 @@ msgstr "" #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" -msgstr "Bist du sicher, dass du diesen Datensatz löschen willst?" +msgstr "Sind Sie sicher, dass Sie diesen Datensatz löschen wollen?" -#: ckan/templates/package/snippets/package_form.html:44 +#: ckan/templates/package/snippets/package_form.html:43 msgid "Next: Add Data" msgstr "Als nächstes: Daten hinzufügen" @@ -3674,17 +4066,17 @@ msgstr "z.B. application/json" #: ckan/templates/package/snippets/resource_form.html:65 msgid "Are you sure you want to delete this resource?" -msgstr "Bist du sicher, dass du diese Ressource löschen willst?" +msgstr "Sind Sie sicher, dass Sie diese Ressource löschen wollen?" -#: ckan/templates/package/snippets/resource_form.html:72 +#: ckan/templates/package/snippets/resource_form.html:71 msgid "Previous" msgstr "Vorherige" -#: ckan/templates/package/snippets/resource_form.html:75 +#: ckan/templates/package/snippets/resource_form.html:74 msgid "Save & add another" msgstr "Speichern & weitere hinzufügen" -#: ckan/templates/package/snippets/resource_form.html:78 +#: ckan/templates/package/snippets/resource_form.html:77 msgid "Finish" msgstr "Beenden" @@ -3698,11 +4090,11 @@ msgstr "" "Eine Ressource kann jede Datei oder jeder Link zu einer Datei mit nützlichen" " Daten sein." -#: ckan/templates/package/snippets/resource_item.html:24 +#: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" msgstr "Entdecke" -#: ckan/templates/package/snippets/resource_item.html:36 +#: ckan/templates/package/snippets/resource_item.html:35 msgid "More information" msgstr "Mehr Information" @@ -3747,7 +4139,7 @@ msgstr "Ressource-Vorschau" msgid "Data and Resources" msgstr "Daten und Ressourcen" -#: ckan/templates/package/snippets/resources_list.html:29 +#: ckan/templates/package/snippets/resources_list.html:30 msgid "This dataset has no data" msgstr "Dieser Datensatz hat keine Daten" @@ -3775,17 +4167,9 @@ msgstr "Meine Darstellung/-View" msgid "eg. Information about my view" msgstr "z.B. Informationen zu meiner Darstellung/meinem View" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Filter hinzufügen" - #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" -msgstr "Filter entfernen" - -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filter" +msgstr "Filter entfernen" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" @@ -3836,7 +4220,7 @@ msgstr "Tags des Datensatzes" #: ckan/templates/revision/snippets/revisions_list.html:7 msgid "Entity" -msgstr "Entität" +msgstr "Objekt" #: ckan/templates/snippets/activity_item.html:3 msgid "New activity item" @@ -3848,7 +4232,8 @@ msgstr "Datenansicht einbetten" #: ckan/templates/snippets/datapreview_embed_dialog.html:8 msgid "Embed this view by copying this into your webpage:" -msgstr "Bette diese Ansicht ein, indem du dies in deine Webseite kopierst:" +msgstr "" +"Kopieren Sie folgendes in Ihre Webseite um diese Ansicht dort einzubetten:" #: ckan/templates/snippets/datapreview_embed_dialog.html:10 msgid "Choose width and height in pixels:" @@ -3886,11 +4271,11 @@ msgstr "Für diese Suche wurden keine {facet_type} gefunden." msgid "Home" msgstr "Start" -#: ckan/templates/snippets/language_selector.html:4 +#: ckan/templates/snippets/language_selector.html:3 msgid "Language" msgstr "Sprache" -#: ckan/templates/snippets/language_selector.html:12 +#: ckan/templates/snippets/language_selector.html:11 #: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 @@ -4025,7 +4410,7 @@ msgstr "Änderungen" #: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 msgid "Search Tags" -msgstr "Tags / Schlagworte durchsuchen" +msgstr "Tags durchsuchen" #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" @@ -4053,11 +4438,11 @@ msgstr "Aktivitäten von Elementen, denen ich folge" #: ckan/templates/user/dashboard_datasets.html:17 #: ckan/templates/user/read.html:14 msgid "You haven't created any datasets." -msgstr "Du hast noch keine Datensätze erstellt." +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:22 +#: ckan/templates/user/dashboard_organizations.html:23 #: ckan/templates/user/read.html:16 msgid "Create one now?" msgstr "Jetzt einen erstellen?" @@ -4066,7 +4451,7 @@ msgstr "Jetzt einen erstellen?" msgid "You are not a member of any groups." msgstr "Sie sind kein Mitglieder einer Gruppe" -#: ckan/templates/user/dashboard_organizations.html:20 +#: ckan/templates/user/dashboard_organizations.html:21 msgid "You are not a member of any organizations." msgstr "Sie sind kein Mitglied einer Organisation." @@ -4085,7 +4470,7 @@ msgstr "Informationen zum Benutzerkonto" msgid "" " Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -"Dein Profil teil anderen CKAN-Nutzern mit, wer du bist und was du machst." +"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" @@ -4135,15 +4520,15 @@ msgstr "Passwort wiederholen" 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:51 +#: ckan/templates/user/edit_user_form.html:50 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:52 +#: ckan/templates/user/edit_user_form.html:50 msgid "Regenerate API Key" msgstr "API-Key nochmals erzeugen" -#: ckan/templates/user/edit_user_form.html:56 +#: ckan/templates/user/edit_user_form.html:54 msgid "Update Profile" msgstr "Profil aktualisieren" @@ -4158,469 +4543,184 @@ msgstr "Alle Benutzer" msgid "Login" msgstr "Anmeldung" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Brauchst du ein Benutzerkonto?" - -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "Dann registrier dich, 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, nutze unser Formular, um dein 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 "Du bist jetzt abgemeldet." - -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Du bist schon als {user} angemeldet." - -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Abmelden" - -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Passwort merken" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Du bist schon angemeldet" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" -"Du musst dich abmelden, bevor du dich mit einem anderen Benutzerkonto " -"anmelden kannst." - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Melde dich jetzt ab." - -#: 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:17 -msgid "Create Account" -msgstr "Erstelle Benutzerkonto" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Setze dein Passwort zurück" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Passwort zurücksetzen" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Passwort aktualisieren" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Wie funktioniert das?" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" -"Gib einfach dein neues Passwort ein und wir aktualisieren dein Benutzerkonto" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Benutzer hat keine Datensätze erstellt." - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Du hast keine Biographie angegeben." - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Dieser Nutzer hat keine Biographie." - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Das heißt, nur du kannst dies sehen" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Mitglied seit" - -#: ckan/templates/user/read_base.html:96 -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:6 -msgid "Password reset" -msgstr "Kennwort zurücksetzen" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Zurücksetzen anfordern" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Gibt deinen Nutzernamen in das Feld ein und wir senden dir eine E-Mail mit " -"einem Link um ein neues Passwort zu setzen." - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -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 "Du folgst 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" - -#: 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" - -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Noch nicht hochgeladen" - -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "DataStore Ressource nicht gefunden" - -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" -"Die Daten waren ungültig (z.m Beispiel: ein numerischer Wert ist außerhalb " -"eines Bereichs oder wurde in ein Textfeld eingefügt)" - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "Ressource \"{0}\" 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/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Datensätze pro Seite" - -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Test-Konfiguration" - -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Benutzerdefiniertes Feld aufsteigend" - -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Benutzerdefiniertes Feld absteigend" - -#: 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/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Diese Gruppe hat keine Beschreibung" - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "Das CKAN's Tool zur Datenvoransicht hat viele mächtige Funktionen" - -#: 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:101 -msgid "Data Explorer" -msgstr "Data Explorer" - -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "tabelle" - -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Graph" - -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Karte" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Benötigen Sie ein Benutzerkonto?" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "Fehler beim Laden der Ansicht" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "Zeilenvorgabe" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Erstelle ein Benutzerkonto" -#: 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" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Haben Sie Ihr Kennwort vergessen?" -#: 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" +#: 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." -#: 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" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Passwort vergessen?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Graph-Typ" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Abgemeldet" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Gruppe (Achse 1)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Sie sind jetzt abgemeldet." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Reihe (Achse 2)" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Sie sind schon als {user} angemeldet." -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Feld-Typ" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Abmelden" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Längenlinien-Feld / Latitude" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Passwort merken" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Breitenlinie-Feld / Longitude" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Sie sind schon angemeldet" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "GeoJSON-Feld" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Autozoom zu Eigenschaften" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Jetzt abmelden" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Markierungen zusammenfassen" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registrierung" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Gesamtanzahl Datensätze" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Erstelle ein Benutzerkonto" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Datum" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Warum registrieren?" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Gesamtanzahl Datensätze" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Erstelle Datensätze, Gruppen und mehr spannende Dinge" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Datensatz-Versionen pro Woche" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "Benutzername" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Alle Datensatz-Versionen" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Vollständiger Name" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Neue Datensätze" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Erstelle Benutzerkonto" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Beliebteste Datensätze" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Passwort zurücksetzen" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Durchschnittliche Bewertung" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Anzahl Bewertungen" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Passwort aktualisieren" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Keine Bewertungen" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Wie funktioniert das?" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Meistbearbeitete Datensätze" +#: ckan/templates/user/perform_reset.html:40 +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" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Anzahl Änderungen" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Benutzer hat keine Datensätze erstellt." -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Keine bearbeiteten Datensätze" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Sie haben keine Biographie angegeben." -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Größte Gruppen" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Dieser Nutzer hat keine Biographie." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Zahl der Datensätze" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Keine Gruppen" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Das heißt, nur Sie können dies sehen" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Beliebteste Tags" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Mitglied seit" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Schlagwort-Name" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API-Schlüssel" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Anzahl der Datensätze" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Passwort zurücksetzen" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "Benutzer mit den meisten Datensätzen" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Kennwort zurücksetzen" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Statistik-Menü" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Zurücksetzen anfordern" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Gesamtanzahl der Datensätze" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "" +"Geben Sie Ihren Nutzernamen in das Feld ein und wir senden Ihnen eine E-Mail" +" mit einem Link um ein neues Passwort zu setzen." -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Text" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Aktivität von:" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" -msgstr "Ein Fehler ist aufgetreten: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Suche Liste..." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Webseite" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Sie folgen keinen Inhalten" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "Webseiten-URL" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Keine Follower" -#: 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, verwenden der Ressourcen-URL)" +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Suche Nutzer" diff --git a/ckan/i18n/el/LC_MESSAGES/ckan.mo b/ckan/i18n/el/LC_MESSAGES/ckan.mo index 165e52673d3..b085690a181 100644 Binary files a/ckan/i18n/el/LC_MESSAGES/ckan.mo and b/ckan/i18n/el/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/el/LC_MESSAGES/ckan.po b/ckan/i18n/el/LC_MESSAGES/ckan.po index 94bd176e011..d3c6fa87238 100644 --- a/ckan/i18n/el/LC_MESSAGES/ckan.po +++ b/ckan/i18n/el/LC_MESSAGES/ckan.po @@ -1,4578 +1,4726 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Thodoris Vakkas , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Άδεια λειτουργίας δεν βρέθηκε:%s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Ολοκληρώθηκε" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Διαχειριστής" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Εκκρεμεί" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Συντάκτης" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Γίνεται υποβολή" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Μέλος" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Σφάλμα" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Απαιτείται ένας διαχειριστής συστήματος για τη διαχείριση." +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Δε μεταφορτώθηκε ακόμα" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Τίτλος Ιστοσελίδας" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Δεν βρέθηκε πόρος" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Στυλ" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Δεν επιτρέπεται να δείτε αυτή τη σελίδα" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Γραμμή οδηγιών ιστοσελίδας" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Μεταφόρτωση στο DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Λογότυπο οδηγίας ιστοσελίδας" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Σφάλμα μεταφόρτωσης:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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 "Σχετικά" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Λάθος:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Κείμενο για τη σελίδα Σχετικά " +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Ακολουθία σφαλμάτων" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Εισαγωγικό κείμενο" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Κατάσταση:" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Κείμενο στην αρχική σελίδα" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Τελευταία ενημέρωση" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Προσαρμοσμένo CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Ποτέ" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Εισαγωγή προσαρμοσμένου css στην κεφαλίδα της σελίδας" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Αρχείο καταγραφής μεταφόρτωσης" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Αρχική σελίδα" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Λεπτομέρειες" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Τέλος αρχείου καταγραφής" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Δεν βρέθηκε ο πόρος DataStore" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Δεν είναι δυνατή η εκκαθάριση του πακέτου %s καθως η συνδεόμενη αναθεώρηση " -"%s περιλαμβάνει μη διεγραμμένα πακέτα%s" -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Πρόβλημα εκκαθάρισης αναθεώρησης %s:%s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Ο πόρος \"{0}\" δεν βρέθηκε." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Εκκαθάριση ολοκληρώθηκε" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Ο χρήστης {0} δεν έχει δικαίωμα επεξεργασίας του πόρου {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Η λειτουργία δεν υλοποιείται." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Δεν επιτρέπεται να δείτε αυτή τη σελίδα" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Αποκτήστε πρόσβαση σε δεδομένα πόρων μέσω ενός δικτυακού API με μεγάλες " +"δυνατότητες υποστήριξης ερωτημάτων" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Αδύνατη Πρόσβαση" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Δεν βρέθηκε" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Σημεία πρόσβασης" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Λάθος αίτημα" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Η πρόσβαση στο API δεδομένων είναι δυνατή μέσω των παρακάτω ενεργειών στο " +"API ενεργειών του CKAN." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Όνομα ενέργειας δεν είναι γνωστό:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Δημιουργία" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Λάθος JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Ενημέρωση / Εισαγωγή" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Λάθος αίτημα δεδομένων: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Ερώτημα" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Δεν είναι δυνατή η λίστα μιας οντότητας αυτού του τύπου: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Ερώτημα (μέσω γλώσσας SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Δεν μπορείτε να διαβάσετε μια οντότητα αυτού του τύπου: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Εκτέλεση ερωτήματος" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Δεν είναι δυνατή η δημιουργία μιας οντότητας αυτού του τύπου: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Παράδειγμα ερωτήματος (5 πρώτα αποτελέσματα)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Δεν είναι δυνατή η προσθήκη πακέτου για αναζήτηση ευρετηρίου" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Παράδειγμα ερωτήματος (αποτελέσματα που περιέχουν το λεκτικό 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Δεν είναι δυνατή η ενημέρωση μιας οντότητας αυτού του τύπου: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Παράδειγμα εκτέλεσης ερωτήματος (με χρήση γλώσσας SQL)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Δεν είναι δυνατή η ενημέρωση αναζήτησης ευρετηρίου" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Παράδειγμα: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Δεν είναι δυνατή η διαγραφή μιας οντότητας αυτού του τύπου: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"Ένα απλό αίτημα ajax (JSONP) προς το API δεδομένων με χρήση του jQuery" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Δεν καθορίστηκε αναθεώρηση" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Παράδειγμα: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Δεν υπάρχει έκδοση με id: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Λείπει όρος αναζήτησης ('since_id=UUID' ή 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Αδυναμία ανάγνωσης παραμέτρων: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Περιγραφή" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Λάθος επιλογή αναζήτησης: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Αποθήκευση" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Άγνωστη Καταχώρηση: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Λανθασμένη τιμή qjson: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" msgstr "" -"Οι παράμετροι που ζητούνται πρέπει να είναι ακολουθούν την μορφή λεξικού " -"json encoded." -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Δεν βρέθηκε η Ομάδα" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Φορτώνει...." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Ο Φορέας δε βρέθηκε" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Data API" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Λανθασμένος τύπος ομάδας" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Πίνακας" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Φορείς" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Ομάδες" - -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Ετικέτες" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Τύποι" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Άδειες" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Σύνολα Δεδομένων ανά σελίδα" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Δεν υπάρχει εξουσιοδότηση για μαζική ενημέρωση" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Δοκιμή παραμετροποίησης" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε μια Ομάδα." +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Σχετικότητα" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Ο χρήστης %r δεν έχει δικαίωμα επεξεργασίας του %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Σφάλμα ακεραιότητας" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Ο χρήστης %r δεν έχει εξουσιοδότηση να επεξεργαστεί %s δικαιώματα" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Τελευταία τροποποίηση" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Δεν έχετε δικαίωμα να διαγράψετε την ομάδα %s" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Ο Φορέας έχει διαγραφεί." +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Η Ομάδα έχει διαγραφεί." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Δημοφιλή" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s έχει διαγραφεί." +#: 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 "προσαρμοσμένο κείμενο" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Δεν έχετε εξουσιοδότηση να προσθέσετε μέλος στην ομάδα %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "προσαρμοσμένο κείμενο" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Δεν έχετε εξουσιοδότηση να διαγράψετε μέλη από την ομάδα %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Κωδικός Χώρας" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Το μέλος της ομάδας έχει διαγραφεί" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "προσαρμοσμένο κείμενο πόρου" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Θα πρέπει να επιλέξτε δύο εκδόσεις πριν κάνετε σύγκριση" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Ιστορικό Εκδόσεων Ομάδας CKAN" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Πρόσφατες αλλαγές στη CKAN Ομάδα: " +#: 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/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Μήνυμα Λογαριασμού:" +#: 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 Σύνολα δεδομένων" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -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/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Δεν ακολουθείτε το {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Ακόλουθοι" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Χωρίς δικαιώματα θέασης των ακολούθων %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Πηγές" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "" -"Αυτή η ιστοσελίδα είναι εκτός δικτύου.Η βάση δεδομένων δεν έχει " -"αρχικοποιηθεί." +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Εικόνα" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" -"Παρακαλούμε ενημερώστε το προφίλ σας και προσθέστε τη " -"διεύθυνση ηλεκτρονικού ταχυδρομείου σας." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL εικόνας" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -" %s χρησιμοποιείστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας εάν θέλετε να" -" επαναφέρετε τον κωδικό πρόσβασής σας." +"π.χ. http://example.com/image.jpg (χρήση του url πόρου αν μείνει κενό)" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "Μη έγκυρο ερώτημα: {error_message}" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Εξερεύνηση Δεδομένων" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Η παράμετρος \"{parameter_name}\" δεν είναι ακέραιος αριθμός" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Γράφημα" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Το Σύνολο Δεδομένων δεν βρέθηκε" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Χάρτης" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Μη έγκυρη μορφή αναθεώρησης:%r" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "Σφάλμα κατά τη φόρτωση της προβολής" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Δεν έχετε δικαίωμα ανάγνωσης του πακέτου %s" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Ιστορικό Εκδόσεων CKAN Συνόλου Δεδομένων " +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Πρόσφατες αλλαγές στο CKAN Σύνολο Δεδομένων: " +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε ένα πακέτο" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Φίλτρα" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Δεν έχετε εξουσιοδότηση να επεξεργαστείτε το συγκεκριμένο πόρο" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Δεν βρέθηκε πόρος" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "π.χ,: 0 " -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Μη εξουσιοδοτημένοι να αναβαθμίσετε σύνολα δεδομένων" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Πλήθος εγγραφών" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Δεν ήταν δυνατή η εύρεση του πόρου {id}." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "π.χ,: 100" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πόρο δεδομένων" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Τύπος γραφήματος" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Σφάλμα" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Ομάδα (Άξονας 1)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε έναν πόρο" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Σειρά (Άξονας 2)" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε έναν πόρο για αυτό το πακέτο" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Τύπος πεδίου" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Δεν είναι δυνατή η προσθήκη πακέτου για αναζήτηση ευρετηρίου." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Πεδίο Γεωγραφικού Πλάτους" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Δεν είναι δυνατή η ενημέρωση αναζήτησης ευρετηρίου." +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Πεδίο Γεωγραφικού Μήκους" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Το συγκεκριμένο σύνολο δεδομένων έχει διαγραφεί." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Πεδίο GeoJSON" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Δεν έχετε εξουσιοδότηση να διαγράψετε το πακέτο %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Αυτόματη εστίαση στα αντικείμενα" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Ο πόρος έχει διαγραφεί. " +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Ομαδοποίηση συμβόλων" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Δεν έχετε εξουσιοδότηση να διαγράψετε τον πόρο %s" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Συνολικός αριθμός Συνόλων Δεδομένων" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Δε βρέθηκε η προβολή του πόρου" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Ημερομηνία" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Δε βρέθηκαν δεδομένα πόρου" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Συνολικός αριθμός Συνόλων Δεδομένων" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Καμία λήψη δεν είναι διαθέσιμη" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Εκδόσεις Συνόλων Δεδομένων ανά εβδομάδα" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Δεν έχετε εξουσιοδότηση να διαβάσετε το σύνολο δεδομένων %s" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Όλες οι εκδόσεις συνόλου δεδομένων" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Μη εξουσιοδοτημένοι να διαβάσετε πόρους %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Νέα σύνολα δεδομένων" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Δεν έχετε εξουσιοδότηση να επεξεργαστείτε το συγκεκριμένο πόρο" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Δημοφιλή Σύνολα Δεδομένων" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Δε βρέθηκε η προβολή" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Μέση βαθμολογία" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Δε βρέθηκε ο τύπος της προβολής" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Πλήθος αξιολογήσεων" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Χωρίς αξιολόγηση" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Δε βρέθηκε η Προβολή του πόρου" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Περισσότερο επεξεργασμένα σύνολα δεδομένων" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Δεν έχει οριστεί προεπισκόπηση." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Σύνολο Δεδομένων" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Ιστορικού ενημέρωσης CKAN Repository" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Πλήθος επεξεργασιών" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Πρόσφατες αλλαγές στο αποθετήριο της CKAN " +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Δεν υπάρχουν επεξεργασμένα σύνολα" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Σύνολα δεδομένων που επηρεάζονται:%s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Μεγαλύτερες Ομάδες" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Η αναθεώρηση ενημερώθηκε" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Ομάδα" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Άλλο" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Αριθμός Συνόλων Δεδομένων" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Δεν βρέθηκε ετικέτα" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Δεν υπάρχουν Ομάδες" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Ο χρήστης δεν βρέθηκε" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Κορυφαίες ετικέτες" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Δεν έχετε εξουσιοδότηση να εγγραφείτε ως χρήστης." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Όνομα ετικέτας" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε ένα χρήστη" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Αριθμός Συνόλων Δεδομένων" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" -"Δεν έχετε εξουσιοδότηση να διαγράψετε τον χρήστη με την ταυτότητα " -"\"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "Χρήστες που δημιουργούν τα περισσότερα σύνολα δεδομένων" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Δεν έχει οριστεί χρήστης" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Χρήστης" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Δεν έχετε δικαίωμα επεξεργασίας του χρήστη %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Στατιστικά στοιχεία" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Το προφίλ ενημερώθηκε" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Συνολικός αριθμός Συνόλων Δεδομένων" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε ένα χρήστη %s" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Κείμενο" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Άκυρο κείμενο επιβεβαίωσης. Παρακαλώ δοκιμάστε ξανά." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Ιστότοπος" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "" -"Ο χρήστης \"%s\" έχει εγγραφεί αλλά είστε ακόμα συνδεδεμένοι ως \"%s\" από " -"πριν" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL ιστότοπου" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Δεν έχετε δικαίωμα επεξεργασίας χρηστών" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "π.χ. http://example.com (χρήση του url πόρου αν μείνει κενό)" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "Χρήστης %s δεν επιτρέπεται να επεξεργαστεί %s" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Ο φυλλομετρητής σας δεν υποστηρίζει iframes." -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Ο κωδικός πρόσβασης που εισάγατε δεν είναι σωστός" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Άδεια λειτουργίας δεν βρέθηκε:%s" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Παλιός κωδικός" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Διαχειριστής" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "Εσφαλμένος κωδικός πρόσβασης" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Συντάκτης" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Η σύνδεση απέτυχε. Λάθος όνομα χρήστη ή κωδικός πρόσβασης." +#: ckan/authz.py:202 +msgid "Member" +msgstr "Μέλος" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Δεν έχετε δικαίωμα αίτησης επαναφοράς κωδικού πρόσβασης." - -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" αντιστοιχεί σε διάφορους χρήστες" - -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Δεν υπάρχει τέτοιος χρήστης:%s" - -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "" -"Παρακαλούμε ελέγξτε τα εισερχόμενά μηνύματα σας για τον κωδικό επαναφοράς." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Απαιτείται ένας διαχειριστής συστήματος για τη διαχείριση." -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Δεν ήταν δυνατή η αποστολή συνδέσμου επαναφοράς:%s" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Τίτλος Ιστοσελίδας" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Δεν έχετε δικαίωμα επαναφοράς του κωδικού πρόσβασης" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Στυλ" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Άκυρο κλειδί επαναφοράς. Παρακαλώ δοκιμάστε ξανά." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Γραμμή οδηγιών ιστοσελίδας" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Ο κωδικός πρόσβασής σας έχει επαναφερθεί." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Λογότυπο οδηγίας ιστοσελίδας" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Ο κωδικός πρόσβασης πρέπει να έχει τουλάχιστον 4 χαρακτήρες." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Οι κωδικοί πρόσβασης που δώσατε δεν ταιριάζουν." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Κείμενο για τη σελίδα Σχετικά " -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Πρέπει να δώσετε τον κωδικό πρόσβασης " +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Εισαγωγικό κείμενο" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Δεν βρέθηκε το στοιχείο" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Κείμενο στην αρχική σελίδα" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} δεν βρέθηκε" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Προσαρμοσμένo CSS" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Όλα" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Εισαγωγή προσαρμοσμένου css στην κεφαλίδα της σελίδας" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Λείπει τιμή" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Αρχική σελίδα" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" msgstr "" +"Δεν είναι δυνατή η εκκαθάριση του πακέτου %s καθως η συνδεόμενη αναθεώρηση " +"%s περιλαμβάνει μη διεγραμμένα πακέτα%s" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "ο {actor} πρόσθεσε την ετικέτα {tag} στο σύνολο δεδομένων {dataset}" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Πρόβλημα εκκαθάρισης αναθεώρησης %s:%s" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} ενημέρωσε την ομάδα {group}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Εκκαθάριση ολοκληρώθηκε" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "ο {actor} ενημέρωσε το φορέα {organization}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Η λειτουργία δεν υλοποιείται." -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "ο {actor} ενημέρωσε το σύνολο δεδομένων {dataset}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Αδύνατη Πρόσβαση" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "ο {actor} αλλαξε το πρόσθετο {extra} στο σύνολο δεδομένων {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Δεν βρέθηκε" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} ενημέρωσε τον πόρο {resource} στο σύνολο δεδομένων {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Λάθος αίτημα" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} ενημέρωσαν τα προφίλ τους" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Όνομα ενέργειας δεν είναι γνωστό:%s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} διέγραψε την ομάδα {group}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Λάθος JSON: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "ο {actor} διέγραψε το φορέα {organization}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Λάθος αίτημα δεδομένων: %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "ο {actor} διέγραψε το σύνολο δεδομένων {dataset}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Δεν είναι δυνατή η λίστα μιας οντότητας αυτού του τύπου: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" -"ο {actor} διέγραψε το πρόσθετο {extra} στο σύνολο δεδομένων {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Δεν μπορείτε να διαβάσετε μια οντότητα αυτού του τύπου: %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" -"ο {actor} διέγραψε τον πόρο {resource} από το σύνολο δεδομένων {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Δεν είναι δυνατή η δημιουργία μιας οντότητας αυτού του τύπου: %s %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} δημιούργησε την ομάδα {group}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Δεν είναι δυνατή η προσθήκη πακέτου για αναζήτηση ευρετηρίου" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} δημιούργησε το φορέα {organization}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Δεν είναι δυνατή η ενημέρωση μιας οντότητας αυτού του τύπου: %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} δημιούργησε το σύνολο δεδομένων {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Δεν είναι δυνατή η ενημέρωση αναζήτησης ευρετηρίου" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} πρόσθεσε το πρόσθετο {extra} στο σύνολο δεδομένων {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Δεν είναι δυνατή η διαγραφή μιας οντότητας αυτού του τύπου: %s %s" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} πρόσθεσε τον πόρο {resource} στο σύνολο δεδομένων {dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Δεν καθορίστηκε αναθεώρηση" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} εγγράφηκε" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Δεν υπάρχει έκδοση με id: %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} αφαίρεσε την ετικέτα {tag} από το σύνολο δεδομένων {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Λείπει όρος αναζήτησης ('since_id=UUID' ή 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} άρχισε να ακολουθεί το {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Αδυναμία ανάγνωσης παραμέτρων: %r" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} άρχισε να ακολουθεί τον χρήστη {user}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Λάθος επιλογή αναζήτησης: %s" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} άρχισε να ακολουθεί την ομάδα {group}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Άγνωστη Καταχώρηση: %s" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Προβολή" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Λανθασμένη τιμή qjson: %r" -#: 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/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" +"Οι παράμετροι που ζητούνται πρέπει να είναι ακολουθούν την μορφή λεξικού " +"json encoded." -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Ιανούαριος" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Δεν βρέθηκε η Ομάδα" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Φεβρουάριος" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Ο Φορέας δε βρέθηκε" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Μάρτιος" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Λανθασμένος τύπος ομάδας" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Απρίλιος" - -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Μάιος" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Φορείς" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Ιούνιος" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Ομάδες" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Ιούλιος" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Ετικέτες" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Αύγουστος" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Τύποι" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Σεπτέμβριος" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Άδειες" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Οκτώβριος" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Ο χρήστης %r δεν έχει δικαίωμα επεξεργασίας του %s" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Νοέμβριος" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Δεν υπάρχει εξουσιοδότηση για μαζική ενημέρωση" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Δεκέμβριος" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε μια Ομάδα." -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Μόλις τώρα" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Σφάλμα ακεραιότητας" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "πριν ένα λεπτό" -msgstr[1] "πριν {mins} λεπτά" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Ο χρήστης %r δεν έχει εξουσιοδότηση να επεξεργαστεί %s δικαιώματα" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "πριν μία ώρα" -msgstr[1] "πρίν {hours} ώρες" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Δεν έχετε δικαίωμα να διαγράψετε την ομάδα %s" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "μια μέρα πρίν" -msgstr[1] "πρίν {days} ημέρες" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Ο Φορέας έχει διαγραφεί." -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "πριν {months} μήνες" -msgstr[1] "πριν {months} μήνες" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Η Ομάδα έχει διαγραφεί." -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "πάνω από {years} έτη πριν" -msgstr[1] "πάνω από {years} έτη πριν" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s έχει διαγραφεί." -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" msgstr "" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Δεν έχετε εξουσιοδότηση να προσθέσετε μέλος στην ομάδα %s" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Δεν έχετε εξουσιοδότηση να διαγράψετε μέλη από την ομάδα %s" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Το μέλος της ομάδας έχει διαγραφεί" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Θα πρέπει να επιλέξτε δύο εκδόσεις πριν κάνετε σύγκριση" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Ιστορικό Εκδόσεων Ομάδας CKAN" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Πρόσφατες αλλαγές στη CKAN Ομάδα: " -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Μήνυμα Λογαριασμού:" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Ακολουθείτε το {0}" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Δεν ακολουθείτε το {0}" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Χωρίς δικαιώματα θέασης των ακολούθων %s" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Αυτή η ιστοσελίδα είναι εκτός δικτύου.Η βάση δεδομένων δεν έχει " +"αρχικοποιηθεί." -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Παρακαλούμε ενημερώστε το προφίλ σας και προσθέστε τη " +"διεύθυνση ηλεκτρονικού ταχυδρομείου σας." -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +" %s χρησιμοποιείστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας εάν θέλετε να" +" επαναφέρετε τον κωδικό πρόσβασής σας." -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "Μη έγκυρο ερώτημα: {error_message}" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Η παράμετρος \"{parameter_name}\" δεν είναι ακέραιος αριθμός" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Ενημερώστε το avatar σας στο gravatar.com" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Το Σύνολο Δεδομένων δεν βρέθηκε" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Άγνωστος" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Μη έγκυρη μορφή αναθεώρησης:%r" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Πόρος δίχως όνομα" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Δημιουργήθηκε νέο σύνολο δεδομένων." +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Δεν έχετε δικαίωμα ανάγνωσης του πακέτου %s" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Επεξεργασία Πόρων." +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Ιστορικό Εκδόσεων CKAN Συνόλου Δεδομένων " -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Επεξεργασία ρυθμίσεων." +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Πρόσφατες αλλαγές στο CKAN Σύνολο Δεδομένων: " -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "μία προβολή" -msgstr[1] "{number} προβολές" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε ένα πακέτο" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "μία πρόσφατη προβολή" -msgstr[1] "{number} πρόσφτατες προβολές" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Δεν έχετε εξουσιοδότηση να επεξεργαστείτε το συγκεκριμένο πόρο" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Μη εξουσιοδοτημένοι να αναβαθμίσετε σύνολα δεδομένων" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Καμία διεύθυνση ηλεκτρονικού ταχυδρομείου παραλήπτη διαθέσιμη!" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Δεν ήταν δυνατή η εύρεση του πόρου {id}." -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "φορέας" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πόρο δεδομένων" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "ομάδα" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε έναν πόρο" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Λείπει τιμή" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε έναν πόρο για αυτό το πακέτο" -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "Το πεδίο εισαγωγής %(name)s δεν ήταν αναμενόμενο." +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Δεν είναι δυνατή η προσθήκη πακέτου για αναζήτηση ευρετηρίου." -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Παρακαλώ εισάγετε έναν ακέραιο αριθμό" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Δεν είναι δυνατή η ενημέρωση αναζήτησης ευρετηρίου." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Πηγές" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Το συγκεκριμένο σύνολο δεδομένων έχει διαγραφεί." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Μη έγκυρο πακέτο πόρου(ων) " +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Δεν έχετε εξουσιοδότηση να διαγράψετε το πακέτο %s" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Επιπλέον πληροφορίες" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Ο πόρος έχει διαγραφεί. " -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1052 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Δεν υπάρχει ετικέτα λεξιλόγιο \"%s\" " - -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Χρήστης" +msgid "Unauthorized to delete resource %s" +msgstr "Δεν έχετε εξουσιοδότηση να διαγράψετε τον πόρο %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Σύνολο Δεδομένων" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Δε βρέθηκε η προβολή του πόρου" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Ομάδα" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Δε βρέθηκαν δεδομένα πόρου" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Δεν ήταν δυνατή η ανάλυση ως έγκυρου αρχείου JSON" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Καμία λήψη δεν είναι διαθέσιμη" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "Πρέπει να δώσετε το όνομα ενός φορέα" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Δεν έχετε εξουσιοδότηση να διαβάσετε το σύνολο δεδομένων %s" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Ο φορέας δεν υπάρχει" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Μη εξουσιοδοτημένοι να διαβάσετε πόρους %s" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Δεν είναι δυνατή η προσθήκη συνόλου δεδομένων σε αυτόν το φορέα." +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Δεν έχετε εξουσιοδότηση να επεξεργαστείτε το συγκεκριμένο πόρο" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Άκυρος ακέραιος" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Δε βρέθηκε η προβολή" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Πρέπει να είναι φυσικός αριθμός" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Δε βρέθηκε ο τύπος της προβολής" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Πρέπει να είναι θετικός ακέραιος" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Λάθος μορφή ημερομηνίας " +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Δε βρέθηκε η Προβολή του πόρου" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Δεν επιτρέπονται υπερσύνδεσμοι στο log_message" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Δεν έχει οριστεί προεπισκόπηση." -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Το σύνολο δεδομένων υπάρχει ήδη" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Ιστορικού ενημέρωσης CKAN Repository" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Πόρος" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Πρόσφατες αλλαγές στο αποθετήριο της CKAN " -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Αυτό το όνομα της ομάδας ή το ID δεν υπάρχει." +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Σύνολα δεδομένων που επηρεάζονται:%s.\n" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Τύπος δραστηριότητας" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Η αναθεώρηση ενημερώθηκε" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Τα ονόματα πρέπει να αποτελούνται από αλφαριθμητικά" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Άλλο" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Αυτό το όνομα δεν μπορεί να χρησιμοποιηθεί" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Δεν βρέθηκε ετικέτα" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "Πρέπει να έχει τουλάχιστον %s χαρακτήρες" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Δεν έχετε εξουσιοδότηση να εγγραφείτε ως χρήστης." -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr " Το όνομα πρέπει να είναι κατ 'ανώτατο όριο των %i χαρακτήρων" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε ένα χρήστη" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." msgstr "" +"Δεν έχετε εξουσιοδότηση να διαγράψετε τον χρήστη με την ταυτότητα " +"\"{user_id}\"." -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Αυτό το URL είναι ήδη σε χρήση." +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Δεν έχει οριστεί χρήστης" -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Το μήκος του ονόματος \"%s\" είναι μικρότερο από το ελάχιστο%s" +msgid "Unauthorized to edit user %s" +msgstr "Δεν έχετε δικαίωμα επεξεργασίας του χρήστη %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Το μήκος του ονόματος \"%s\" είναι περισσότερο από το μέγιστο%s" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Ο χρήστης δεν βρέθηκε" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Η έκδοση πρέπει να είναι κατ 'ανώτατο όριο των %i χαρακτήρων" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Το προφίλ ενημερώθηκε" -#: ckan/logic/validators.py:393 +#: ckan/controllers/user.py:245 #, python-format -msgid "Duplicate key \"%s\"" -msgstr "Διπλό κλειδί \"%s\"" +msgid "Unauthorized to create user %s" +msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε ένα χρήστη %s" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Το όνομα της ομάδας υπάρχει ήδη στην βάση δεδομένων" +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Άκυρο κείμενο επιβεβαίωσης. Παρακαλώ δοκιμάστε ξανά." -#: ckan/logic/validators.py:415 +#: ckan/controllers/user.py:265 #, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Το μήκος του tag \"%s\" είναι μικρότερο από το ελάχιστο απαιτούμενο %s" +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Ο χρήστης \"%s\" έχει εγγραφεί αλλά είστε ακόμα συνδεδεμένοι ως \"%s\" από " +"πριν" -#: ckan/logic/validators.py:419 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Το μήκος της ετικέτας \"%s\" είναι περισσότερο από το μέγιστο %i " +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Δεν έχετε δικαίωμα επεξεργασίας χρηστών" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:320 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" -"Η ετικέτα \"%s\" πρέπει να αποτελείται από αλφαριθμητικούς χαρακτήρες ή " -"σύμβολα:-_." +msgid "User %s not authorized to edit %s" +msgstr "Χρήστης %s δεν επιτρέπεται να επεξεργαστεί %s" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Η ετικέτα \"%s\" δεν μπορεί να περιέχει κεφαλαία γράμματα" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Ο κωδικός πρόσβασης που εισάγατε δεν είναι σωστός" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Τα ονόματα χρηστών πρέπει να αποτελούνται από αλφαριθμητικά" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Παλιός κωδικός" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Αυτό το όνομα σύνδεσης δεν είναι διαθέσιμο." +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "Εσφαλμένος κωδικός πρόσβασης" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Παρακαλώ εισάγετε και τους δύο κωδικούς πρόσβασης" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Η σύνδεση απέτυχε. Λάθος όνομα χρήστη ή κωδικός πρόσβασης." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Οι κωδικοί πρόσβασης πρέπει να αποτελούνται από αλφαριθμητικά" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Δεν έχετε δικαίωμα αίτησης επαναφοράς κωδικού πρόσβασης." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "" -"Ο κωδικός πρόσβασής σας θα πρέπει να αποτελείται από 4 τουλάχιστον " -"χαρακτήρες" +#: ckan/controllers/user.py:490 +#, python-format +msgid "\"%s\" matched several users" +msgstr "\"%s\" αντιστοιχεί σε διάφορους χρήστες" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Οι κωδικοί που δώσατε δεν ταιριάζουν" +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 +#, python-format +msgid "No such user: %s" +msgstr "Δεν υπάρχει τέτοιος χρήστης:%s" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." msgstr "" -"Η επεξεργασία δεν επιτρέπεται, δεδομένου ότι μοιάζει με spam. Παρακαλούμε " -"αποφύγετε συνδέσεις στην περιγραφή σας." +"Παρακαλούμε ελέγξτε τα εισερχόμενά μηνύματα σας για τον κωδικό επαναφοράς." -#: ckan/logic/validators.py:619 +#: ckan/controllers/user.py:503 #, python-format -msgid "Name must be at least %s characters long" -msgstr "Το μήκος του ονόματος πρέπει να είναι τουλάχιστον %s χαρακτήρες" +msgid "Could not send reset link: %s" +msgstr "Δεν ήταν δυνατή η αποστολή συνδέσμου επαναφοράς:%s" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Αυτό το όνομα λεξιλογίου είναι ήδη σε χρήση." +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Δεν έχετε δικαίωμα επαναφοράς του κωδικού πρόσβασης" -#: ckan/logic/validators.py:633 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" -"Δεν μπορείτε να αλλάξετε την τιμή του κλειδιού από το%s στο%s. Αυτό το " -"κλειδί είναι μόνο για ανάγνωση." - -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Το Λεξιλόγιο Ετικέτας δεν βρέθηκε." - -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Η ετικέτα%s δεν ανήκει στο λεξιλόγιο%s" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Άκυρο κλειδί επαναφοράς. Παρακαλώ δοκιμάστε ξανά." -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Κανένα όνομα ετικέτας" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Ο κωδικός πρόσβασής σας έχει επαναφερθεί." -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Η ετικέτα %s ανήκει ήδη στο λεξιλόγιο%s" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Ο κωδικός πρόσβασης πρέπει να έχει τουλάχιστον 4 χαρακτήρες." -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Παρακαλώ δώστε μια έγκυρη διεύθυνση URL" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Οι κωδικοί πρόσβασης που δώσατε δεν ταιριάζουν." -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "ο ρόλος δεν υπάρχει." +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Πρέπει να δώσετε τον κωδικό πρόσβασης " -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "" -"Τα σύνολα δεδομένων που δεν ανήκουν σε φορέα δε μπορούν να είναι ιδιωτικά." +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Δεν βρέθηκε το στοιχείο" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Δεν είναι λίστα" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} δεν βρέθηκε" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Σςν είναι αλφαριθμητικό" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Όλα" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Αυτό το γονικό στοιχείο θα δημιουργούσε βρόχο στην ιεραρχία" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Λείπει τιμή" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." msgstr "" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "ο {actor} πρόσθεσε την ετικέτα {tag} στο σύνολο δεδομένων {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} ενημέρωσε την ομάδα {group}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "There is a schema field with the same name" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "ο {actor} ενημέρωσε το φορέα {organization}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Δημιουργία αντικειμένου %s" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "ο {actor} ενημέρωσε το σύνολο δεδομένων {dataset}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Δημιουργία συσχέτισης πακέτων: %s %s %s" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "ο {actor} αλλαξε το πρόσθετο {extra} στο σύνολο δεδομένων {dataset}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Δημιούργησε αντικείμενο μέλους %s" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} ενημέρωσε τον πόρο {resource} στο σύνολο δεδομένων {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Προσπάθεια να δημιουργηθεί ένας φορέας ως ομάδα" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} ενημέρωσαν τα προφίλ τους" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "Πρέπει να δηλώσετε κάποιο id πακέτου ή όνομα(παράμετρος \"πακέτο\")." +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} διέγραψε την ομάδα {group}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Πρέπει να δώσετε μια βαθμολογία (παράμετρος \"rating\")." +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "ο {actor} διέγραψε το φορέα {organization}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Η βαθμολογία πρέπει να είναι ένας ακέραιος αριθμός" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "ο {actor} διέγραψε το σύνολο δεδομένων {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Η βαθμολογία πρέπει να είναι μεταξύ %i και %i." +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "" +"ο {actor} διέγραψε το πρόσθετο {extra} στο σύνολο δεδομένων {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" msgstr "" -"Σφάλμα κατά την αποστολή του μηνύματος πρόσκλησης, ο χρήστης δε " -"δημιουργήθηκε: {0}" +"ο {actor} διέγραψε τον πόρο {resource} από το σύνολο δεδομένων {dataset}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Πρέπει να είστε συνδεδεμένος για να ακολουθήσετε χρήστες" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} δημιούργησε την ομάδα {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Δεν μπορείς να ακολουθήσεις τον εαυτό σου" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} δημιούργησε το φορέα {organization}" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Ήδη ακολουθείτε τον {0}" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} δημιούργησε το σύνολο δεδομένων {dataset}" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Πρέπει να είστε συνδεδεμένος για να ακολουθήσετε ένα σύνολο δεδομένων" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} πρόσθεσε το πρόσθετο {extra} στο σύνολο δεδομένων {dataset}" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Ο χρήστης {username} δεν υπάρχει." +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} πρόσθεσε τον πόρο {resource} στο σύνολο δεδομένων {dataset}" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Πρέπει να είστε συνδεδεμένος για να ακολουθήσετε μια ομάδα" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} εγγράφηκε" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "Διαγραφή Χρήστη:{0}" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} αφαίρεσε την ετικέτα {tag} από το σύνολο δεδομένων {dataset}" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Διαγραφή Πακέτου: %s" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} άρχισε να ακολουθεί το {dataset}" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Διαγραφή %s" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} άρχισε να ακολουθεί τον χρήστη {user}" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Διαγραφή Μέλους: %s" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} άρχισε να ακολουθεί την ομάδα {group}" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "όχι id στα δεδομένα" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Προβολή" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Αδύνατη η εύρεση λεξιλογίου \"%s\"" +#: 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/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Αδύνατη η εύρεση ετικέτας \"%s\"" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Ιανούαριος" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Πρέπει να είστε συνδεδεμένος για να σταματήσετε να ακολουθείτε κάτι." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Φεβρουάριος" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Δεν ακολουθείτε τον {0}" +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Μάρτιος" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Δεν βρέθηκαν πόροι." +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Απρίλιος" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Δεν ορίζεται αν χρησιμοποιείται η παράμετρος \"query\"" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Μάιος" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Πρέπει να είναι : pair(s)" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Ιούνιος" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Το πεδίο \"{field}\" δεν αναγνωρίστηκε στο resource_search." +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Ιούλιος" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Το πακέτο δεν βρέθηκε" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Αύγουστος" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API:Ενημέρωση αντικειμένου %s" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Σεπτέμβριος" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Ενημέρωση συσχέτισης πακέτου: %s %s %s" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Οκτώβριος" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "Το TaskStatus δε βρέθηκε." +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Νοέμβριος" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Ο φορέας δεν βρέθηκε." +#: ckan/lib/formatters.py:63 +msgid "December" +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/lib/formatters.py:114 +msgid "Just now" +msgstr "Μόλις τώρα" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Ο χρήστης %s δεν έχει δικαίωμα επεξεργασίας αυτών των ομάδων" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "πριν ένα λεπτό" +msgstr[1] "πριν {mins} λεπτά" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση να προσθέσει σύνολο δεδομένων σε αυτόν " -"το φορέα" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "πριν μία ώρα" +msgstr[1] "πρίν {hours} ώρες" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "μια μέρα πρίν" +msgstr[1] "πρίν {days} ημέρες" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "" -"Δε βρέθηκε κανένα πακέτο για αυτόν τον πόρο, δεν μπορεί να γίνει έλεγχος στο" -" auth." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "πριν {months} μήνες" +msgstr[1] "πριν {months} μήνες" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "πάνω από {years} έτη πριν" +msgstr[1] "πάνω από {years} έτη πριν" + +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για τη δημιουργία πόρων στο σύνολο " -"δεδομένων %s." -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "Ο χρήστης %s δεν έχει δικαίωμα επεξεργασίας αυτών των πακέτων" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη δημιουργία ομάδας." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη δημιουργία φορέων" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" -msgstr "" -"Ο χρήστης {user} δεν έχει εξουσιοδότηση για τη δημιουργία χρηστών μέσω του " -"API" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Δεν έχετε εξουσιοδότηση για τη δημιουργία χρηστών" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Δε βρέθηκε η ομάδα." +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Απαιτείται ένα έγκυρο κλειδί API για τη δημιουργία πακέτου." +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Απαιτείται ένα έγκυρο κλειδί API για τη δημιουργία ομάδας." +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την προσθήκη μελών" +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία της ομάδας %s." +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή του πόρου %s" +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" -"Δε βρέθηκε η προβολή πόρους, δεν είναι δυνατός ο έλεγχος εξουσιοδότησης" +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή της σχέσης %s." +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή ομάδων" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή της ομάδας %s." +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή φορέων" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Ενημερώστε το avatar σας στο gravatar.com" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή του φορέα %s" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Άγνωστος" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή του task_status." +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Πόρος δίχως όνομα" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Δεν έχετε εξουσιοδότηση" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Δημιουργήθηκε νέο σύνολο δεδομένων." -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "Ο χρήστης %s δεν έχει δικαίωμα ανάγνωσης αυτών των πακέτων" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Επεξεργασία Πόρων." -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανάγνωση του πακέτου %s." +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Επεξεργασία ρυθμίσεων." -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανάγνωση του πόρου %s." +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "μία προβολή" +msgstr[1] "{number} προβολές" + +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "μία πρόσφατη προβολή" +msgstr[1] "{number} πρόσφτατες προβολές" -#: ckan/logic/auth/get.py:176 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to read group %s" -msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανάγνωση της ομάδας %s" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "" -"Πρέπει να είστε συνδεδεμένος για να έχετε πρόσβαση στον Πίνακα βασικών " -"λειτουργιών." +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Καμία διεύθυνση ηλεκτρονικού ταχυδρομείου παραλήπτη διαθέσιμη!" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του πακέτου %s." +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "φορέας" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Ο χρήστης %s δεν έχει δικαίωμα επεξεργασίας του πόρου %s" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "ομάδα" -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την αλλαγή κατάστασης του πακέτου " -"%s." +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Λείπει τιμή" -#: ckan/logic/auth/update.py:128 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του οργανισμού %s" +msgid "The input field %(name)s was not expected." +msgstr "Το πεδίο εισαγωγής %(name)s δεν ήταν αναμενόμενο." -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την αλλαγή κατάστασης της ομάδας %s." +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Παρακαλώ εισάγετε έναν ακέραιο αριθμό" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία των αδειών της " -"ομάδας %s." -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Απαιτείται σύνδεση για την επεξεργασία χρηστών" - -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του χρήστη %s." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Μη έγκυρο πακέτο πόρου(ων) " -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "Ο χρήστης {0} δεν έχει εξουσιοδότηση να ενημερώσει το χρήστη {1}" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Επιπλέον πληροφορίες" -#: ckan/logic/auth/update.py:216 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to change state of revision" -msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την αλλαγή κατάστασης της " -"επανάληψης." +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Δεν υπάρχει ετικέτα λεξιλόγιο \"%s\" " -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανανέωση του πίνακα task_status." +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Δεν ήταν δυνατή η ανάλυση ως έγκυρου αρχείου JSON" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "" -"Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανανέωση του πίνακα " -"term_translation." +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "Πρέπει να δώσετε το όνομα ενός φορέα" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Απαιτείται ένα έγκυρο κλειδί API για την επεξεργασία ενός πακέτου." +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Ο φορέας δεν υπάρχει" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Απαιτείται ένα έγκυρο κλειδί API για την επεξεργασία μιας ομάδας." +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Δεν είναι δυνατή η προσθήκη συνόλου δεδομένων σε αυτόν το φορέα." -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Η άδεια δεν έχει καθοριστεί" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Άκυρος ακέραιος" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Πρέπει να είναι φυσικός αριθμός" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Πρέπει να είναι θετικός ακέραιος" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Λάθος μορφή ημερομηνίας " -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Δεν επιτρέπονται υπερσύνδεσμοι στο log_message" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Αναφορά" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Το σύνολο δεδομένων υπάρχει ήδη" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Αναφορά - Παρόμοια διανομή" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Πόρος" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "Άδεια Ελεύθερης Τεκμηρίωσης GNU" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Αυτό το όνομα της ομάδας ή το ID δεν υπάρχει." -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Άλλο (Ανοιχτό)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Τύπος δραστηριότητας" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Άλλο (Δημόσιο Πεδίο)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Τα ονόματα πρέπει να αποτελούνται από αλφαριθμητικά" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Άλλο (Χαρακτηριστικό)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Αυτό το όνομα δεν μπορεί να χρησιμοποιηθεί" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Πρέπει να έχει τουλάχιστον %s χαρακτήρες" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Μη Εμπορική Χρήση" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr " Το όνομα πρέπει να είναι κατ 'ανώτατο όριο των %i χαρακτήρων" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Άλλο (Μη εμπορικό)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Άλλο (Κλειστό)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Αυτό το URL είναι ήδη σε χρήση." -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "εξαρτάται από %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Το μήκος του ονόματος \"%s\" είναι μικρότερο από το ελάχιστο%s" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "αποτελεί εξάρτηση της %s " +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Το μήκος του ονόματος \"%s\" είναι περισσότερο από το μέγιστο%s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "προέρχεται από %s" +msgid "Version must be a maximum of %i characters long" +msgstr "Η έκδοση πρέπει να είναι κατ 'ανώτατο όριο των %i χαρακτήρων" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "οδηγεί σε %s" +msgid "Duplicate key \"%s\"" +msgstr "Διπλό κλειδί \"%s\"" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "σύνδεση προς %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Το όνομα της ομάδας υπάρχει ήδη στην βάση δεδομένων" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "είναι συνδεδεμένο από %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Το μήκος του tag \"%s\" είναι μικρότερο από το ελάχιστο απαιτούμενο %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "είναι παιδί τού %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Το μήκος της ετικέτας \"%s\" είναι περισσότερο από το μέγιστο %i " -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "είναι γονιός τού %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Η ετικέτα \"%s\" πρέπει να αποτελείται από αλφαριθμητικούς χαρακτήρες ή " +"σύμβολα:-_." -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "αδελφός με %s" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Φορτώνει...." +msgid "Tag \"%s\" must not be uppercase" +msgstr "Η ετικέτα \"%s\" δεν μπορεί να περιέχει κεφαλαία γράμματα" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Δεν υπάρχουν δεδομένα από το API για αυτόν τον πόρο" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Τα ονόματα χρηστών πρέπει να αποτελούνται από αλφαριθμητικά" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Αποτυχία φόρτωσης πληροφοριών από το API δεδομένων" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Αυτό το όνομα σύνδεσης δεν είναι διαθέσιμο." -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Δεν βρέθηκε" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Παρακαλώ εισάγετε και τους δύο κωδικούς πρόσβασης" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Ξεκινήστε να πληκτρολογείτε..." +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Οι κωδικοί πρόσβασης πρέπει να αποτελούνται από αλφαριθμητικά" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" msgstr "" -"Δεδομένα εισόδου πολύ μικρά, πρέπει να είναι τουλάχιστον ένας χαρακτήρας" +"Ο κωδικός πρόσβασής σας θα πρέπει να αποτελείται από 4 τουλάχιστον " +"χαρακτήρες" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Υπάρχουν μη αποθηκευμένες αλλαγές στην φόρμα" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Οι κωδικοί που δώσατε δεν ταιριάζουν" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Παρακαλώ Επιβεβαιώστε " +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Η επεξεργασία δεν επιτρέπεται, δεδομένου ότι μοιάζει με spam. Παρακαλούμε " +"αποφύγετε συνδέσεις στην περιγραφή σας." -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Είστε βέβαιοι ότι θέλετε να εκτελέσετε αυτή την ενέργεια;" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Το μήκος του ονόματος πρέπει να είναι τουλάχιστον %s χαρακτήρες" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Επιβεβαίωση" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Αυτό το όνομα λεξιλογίου είναι ήδη σε χρήση." -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Ακύρωση" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Δεν μπορείτε να αλλάξετε την τιμή του κλειδιού από το%s στο%s. Αυτό το " +"κλειδί είναι μόνο για ανάγνωση." -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Ακολουθήστε" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Το Λεξιλόγιο Ετικέτας δεν βρέθηκε." -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Διακοπή ακολούθησης" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Η ετικέτα%s δεν ανήκει στο λεξιλόγιο%s" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Ανεβάστε" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Κανένα όνομα ετικέτας" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Σύνδεσμος" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Η ετικέτα %s ανήκει ήδη στο λεξιλόγιο%s" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Αφαίρεση" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Παρακαλώ δώστε μια έγκυρη διεύθυνση URL" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Εικόνα" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "ο ρόλος δεν υπάρχει." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "" +"Τα σύνολα δεδομένων που δεν ανήκουν σε φορέα δε μπορούν να είναι ιδιωτικά." -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Αρχείο" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Δεν είναι λίστα" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Μεταφόρτωση αρχείου στον υπολογιστή σας" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Σςν είναι αλφαριθμητικό" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" -"Σύνδεσμος σε URL (μπορείτε να παρέχετε σύνδεσμο σε προγραμματιστικη διεπαφή " -"- API)" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Αυτό το γονικό στοιχείο θα δημιουργούσε βρόχο στην ιεραρχία" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Επαναταξινόμηση πόρων" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Αποθήκευση ταξινόμησης" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Αποθήκευση..." +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Φορτώστε ένα αρχείο" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "There is a schema field with the same name" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Παρουσιάστε ένα λάθος" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "O πόρος μεταφορτώθηκε επιτυχώς" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Δημιουργία αντικειμένου %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Αδυναμία μεταφόρτωσης του αρχείου" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Δημιουργία συσχέτισης πακέτων: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Αδυναμία επικύρωσης της μεταφόρτωσης" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Δημιούργησε αντικείμενο μέλους %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Αδυναμία λήψης δεδομένων του αρχείου μεταφόρτωσης" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Προσπάθεια να δημιουργηθεί ένας φορέας ως ομάδα" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Πρέπει να δηλώσετε κάποιο id πακέτου ή όνομα(παράμετρος \"πακέτο\")." -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Επαναταξινόμηση προβολής πόρων" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Πρέπει να δώσετε μια βαθμολογία (παράμετρος \"rating\")." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Επεξεργασία" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Η βαθμολογία πρέπει να είναι ένας ακέραιος αριθμός" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Προβολή περισσοτέρων" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Η βαθμολογία πρέπει να είναι μεταξύ %i και %i." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Απόκρυψη" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Σφάλμα κατά την αποστολή του μηνύματος πρόσκλησης, ο χρήστης δε " +"δημιουργήθηκε: {0}" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Σφάλμα %(error_code)s" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Πρέπει να είστε συνδεδεμένος για να ακολουθήσετε χρήστες" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Σχετικά με {0}" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Δεν μπορείς να ακολουθήσεις τον εαυτό σου" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "API" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Ήδη ακολουθείτε τον {0}" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "CKAN Association" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Πρέπει να είστε συνδεδεμένος για να ακολουθήσετε ένα σύνολο δεδομένων" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Λειτουργεί με CKAN" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Ο χρήστης {username} δεν υπάρχει." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Ρυθμίσεις Διαχειριστή Συστήματος" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Πρέπει να είστε συνδεδεμένος για να ακολουθήσετε μια ομάδα" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Δείτε το προφίλ" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "Διαγραφή Χρήστη:{0}" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:92 #, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "Πίνακας λειτουργιών (%(num)d νέο στοιχείο)" -msgstr[1] "Πίνακας λειτουργιών (%(num)d νέα στοιχεία)" +msgid "REST API: Delete Package: %s" +msgstr "REST API: Διαγραφή Πακέτου: %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Πίνακας βασικών λειτουργιών" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Διαγραφή %s" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Επεξεργασία ρυθμίσεων." +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Διαγραφή Μέλους: %s" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Ρυθμίσεις" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "όχι id στα δεδομένα" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Αποσύνδεση" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Αδύνατη η εύρεση λεξιλογίου \"%s\"" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Συνδεθείτε" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Αδύνατη η εύρεση ετικέτας \"%s\"" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Εγγραφείτε" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Πρέπει να είστε συνδεδεμένος για να σταματήσετε να ακολουθείτε κάτι." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Σύνολα Δεδομένων" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Δεν ακολουθείτε τον {0}" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Αναζήτηση Συνόλων Δεδομένων" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Δεν βρέθηκαν πόροι." -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Αναζήτηση" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Δεν ορίζεται αν χρησιμοποιείται η παράμετρος \"query\"" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Πρέπει να είναι : pair(s)" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Λιγότερα" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Το πεδίο \"{field}\" δεν αναγνωρίστηκε στο resource_search." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Περισσότερα" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Το πακέτο δεν βρέθηκε" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "Δεν υπάρχουν δραστηριότητες σε αυτή τη ροή" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API:Ενημέρωση αντικειμένου %s" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Διαχείριση" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Ενημέρωση συσχέτισης πακέτου: %s %s %s" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Διαχειριστές Συστήματος" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "Το TaskStatus δε βρέθηκε." -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Διαχείριση" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Ο φορέας δεν βρέθηκε." -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -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/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "Είστε σίγουροι ότι θέλετε να επαναφέρετε τις ρυθμίσεις ;" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Ο χρήστης %s δεν έχει δικαίωμα επεξεργασίας αυτών των ομάδων" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Επαναφορά" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση να προσθέσει σύνολο δεδομένων σε αυτόν " +"το φορέα" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Ενημέρωση Παραμετροποίησης" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr " επιλογές ρυθμίσεων" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Δε βρέθηκε κανένα πακέτο για αυτόν τον πόρο, δεν μπορεί να γίνει έλεγχος στο" +" auth." -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:76 #, 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.

" +msgid "User %s not authorized to create resources on dataset %s" msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για τη δημιουργία πόρων στο σύνολο " +"δεδομένων %s." -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Επιβεβαίωση Επαναφοράς" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Ο χρήστης %s δεν έχει δικαίωμα επεξεργασίας αυτών των πακέτων" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Διαχείριση CKAN" +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη δημιουργία ομάδας." -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:129 #, 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

" +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/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Διαγραφή" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Δεν έχετε εξουσιοδότηση για τη δημιουργία χρηστών" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "Εκαθάριση όλων των συνόλων δεδομένω για πάντα (αμετάκλητη ενέργεια)." +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Δε βρέθηκε η ομάδα." -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Απαιτείται ένα έγκυρο κλειδί API για τη δημιουργία πακέτου." -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "" -"Αποκτήστε πρόσβαση σε δεδομένα πόρων μέσω ενός δικτυακού API με μεγάλες " -"δυνατότητες υποστήριξης ερωτημάτων" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Απαιτείται ένα έγκυρο κλειδί API για τη δημιουργία ομάδας." -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την προσθήκη μελών" + +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία της ομάδας %s." -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Σημεία πρόσβασης" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή του πόρου %s" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." msgstr "" -"Η πρόσβαση στο API δεδομένων είναι δυνατή μέσω των παρακάτω ενεργειών στο " -"API ενεργειών του CKAN." +"Δε βρέθηκε η προβολή πόρους, δεν είναι δυνατός ο έλεγχος εξουσιοδότησης" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Δημιουργία" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή της σχέσης %s." -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Ενημέρωση / Εισαγωγή" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή ομάδων" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Ερώτημα" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή της ομάδας %s." -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Ερώτημα (μέσω γλώσσας SQL)" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή φορέων" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Εκτέλεση ερωτήματος" +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή του φορέα %s" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Παράδειγμα ερωτήματος (5 πρώτα αποτελέσματα)" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή του task_status." -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Παράδειγμα ερωτήματος (αποτελέσματα που περιέχουν το λεκτικό 'jones')" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Δεν έχετε εξουσιοδότηση" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Παράδειγμα εκτέλεσης ερωτήματος (με χρήση γλώσσας SQL)" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Ο χρήστης %s δεν έχει δικαίωμα ανάγνωσης αυτών των πακέτων" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Παράδειγμα: Javascript" +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανάγνωση του πακέτου %s." -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" -"Ένα απλό αίτημα ajax (JSONP) προς το API δεδομένων με χρήση του jQuery" +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανάγνωση του πόρου %s." -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Παράδειγμα: Python" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανάγνωση της ομάδας %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "Η προεπισκόπηση δεν είναι δυνατή" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "" +"Πρέπει να είστε συνδεδεμένος για να έχετε πρόσβαση στον Πίνακα βασικών " +"λειτουργιών." -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Κάντε κλίκ για περισσότερες πληροφορίες" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του πακέτου %s." -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Λήψη πόρου" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Ο χρήστης %s δεν έχει δικαίωμα επεξεργασίας του πόρου %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Ο φυλλομετρητής σας δεν υποστηρίζει iframes." +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την αλλαγή κατάστασης του πακέτου " +"%s." -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του οργανισμού %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Περισσότερες λεπτομέρειες..." +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την αλλαγή κατάστασης της ομάδας %s." -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:162 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Δεν βρέθηκε ενότητα χειρισμού για τον τύπο δεδομένων:%(type)s." +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία των αδειών της " +"ομάδας %s." -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Κανονικό" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Απαιτείται σύνδεση για την επεξεργασία χρηστών" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Kαθορισμένη Είσοδος" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του χρήστη %s." -#: 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/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "Ο χρήστης {0} δεν έχει εξουσιοδότηση να ενημερώσει το χρήστη {1}" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Μεγάλη Είσοδος" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την αλλαγή κατάστασης της " +"επανάληψης." -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανανέωση του πίνακα task_status." -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανανέωση του πίνακα " +"term_translation." -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Προσαρμοσμένο Πεδίο (κενό)" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Απαιτείται ένα έγκυρο κλειδί API για την επεξεργασία ενός πακέτου." -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Προσαρμοσμένο Πεδίο" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Απαιτείται ένα έγκυρο κλειδί API για την επεξεργασία μιας ομάδας." -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Η άδεια δεν έχει καθοριστεί" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Πλαίσιο Κειμένου" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Επιλογή" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Ροή Δραστηριότητας" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: 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/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Προσθήκη μιας ομάδας" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Αναφορά" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Φόρμα Ομάδας" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Αναφορά - Παρόμοια διανομή" -#: 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/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "Άδεια Ελεύθερης Τεκμηρίωσης GNU" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε την ομάδα - {name} ;" +#: ckan/model/license.py:301 +msgid "Other (Open)" +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 "Είστε σίγουροι ότι θέλετε να διαγράψετε το μέλος - {name} ;" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Διαχείριση" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Άλλο (Χαρακτηριστικό)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Επεξεργασία Ομάδας:" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: 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/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Μη Εμπορική Χρήση" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Ακόλουθοι" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Άλλο (Μη εμπορικό)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Ιστορία" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Άλλο (Κλειστό)" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Προσθήκη ομάδας." +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "εξαρτάται από %s" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Αναζήτηση σε ομάδες..." +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "αποτελεί εξάρτηση της %s " -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Όνομα (Αύξουσα)" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "προέρχεται από %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Όνομα (Φθίνουσα)" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "οδηγεί σε %s" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "Δεν έχουν οριστεί ομάδες προς το παρόν." +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "σύνδεση προς %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Τι θα λέγατε για τη δημιουργία ενός;" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "είναι συνδεδεμένο από %s" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "Επιστροφή στη λίστα μελών" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "είναι παιδί τού %s" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -msgid "Edit Member" -msgstr "Επεξεργασία Μέλους" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Προσθήκη Μέλους" - -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Υπάρχων χρήστης" - -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Αν θέλετε να προσθέσετε έναν υπάρχοντα χρήστη, αναζητήστε το όνομα χρήστη " -"παρακάτω." - -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "ή" - -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Νέος Χρήστης" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "είναι γονιός τού %s" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Αν θέλετε να προσκαλέσετε έναν νέο χρήστη, εισάγετε τη διεύθυνση " -"ηλεκτρονικού ταχυδρομείου του." +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "αδελφός με %s" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Ρόλος" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Δεν υπάρχουν δεδομένα από το API για αυτόν τον πόρο" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το μέλος;" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Αποτυχία φόρτωσης πληροφοριών από το API δεδομένων" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Διαγραφή" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Ξεκινήστε να πληκτρολογείτε..." -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Αποθήκευση" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Δεν βρέθηκε" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Τι είναι οι ρόλοι;" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

Διαχειριστής: Μπορεί να τροποποιήσει τις πληροφορίες " -"ομάδας, καθώς και να διαχειριστεί τα μέλη ενός φορέα

" -"

Μέλος: Μπορεί να προσθέσει/αφαιρέσει σύνολα δεδομένων " -"από ομάδες

" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +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/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Παρακαλώ Επιβεβαιώστε " -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Ενημέρωση ομάδας" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Είστε βέβαιοι ότι θέλετε να εκτελέσετε αυτή την ενέργεια;" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Δημιουργήστε μια νέα ομάδα" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Επιβεβαίωση" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Σχετικότητα" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Τελευταία τροποποίηση" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Διακοπή ακολούθησης" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Δημοφιλή" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Ακολουθήστε" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Αναζήτηση συνόλων δεδομένων" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Σύνδεσμος" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Σύνολα δεδομένων στην ομάδα : {group}" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" +"Σύνδεσμος σε URL (μπορείτε να παρέχετε σύνδεσμο σε προγραμματιστικη διεπαφή " +"- API)" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Ιστορικό Πρόσφατων Εκδόσεων" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Ανεβάστε" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Όνομα" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Αφαίρεση" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Η Ομάδα μου" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Μεταφόρτωση αρχείου στον υπολογιστή σας" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "my-group" +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Περιγραφή" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Αρχείο" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Λίγες πληροφορίες σχετικά με την ομάδα...." +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Αποθήκευση ταξινόμησης" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτήν την ομάδα ;" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Αποθήκευση..." -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Αποθήκευση ομάδας" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Φορτώστε ένα αρχείο" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "ένα σύνολο δεδομένων" -msgstr[1] "{num} σύνολα δεδομένων" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Παρουσιάστε ένα λάθος" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Σύνολα δεδομένων" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Αδυναμία μεταφόρτωσης του αρχείου" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Προβολή {name}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Αδυναμία επικύρωσης της μεταφόρτωσης" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Αφαίρεση συνόλου δεδομένων από αυτή την ομάδα" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "O πόρος μεταφορτώθηκε επιτυχώς" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Τι είναι οι Ομάδες;" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Αδυναμία λήψης δεδομένων του αρχείου μεταφόρτωσης" -#: ckan/templates/group/snippets/helper.html:8 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 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. " +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" msgstr "" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Σύγκριση" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Προσθήκη φίλτρου" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Διαγραμμένα" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "διαβάστε περισσότερα" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Επεξεργασία" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Έκδοση" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Προβολή περισσοτέρων" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Timestamp" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Απόκρυψη" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Δημιουργός" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Σφάλμα %(error_code)s" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Μήνυμα καταγραφής" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Σχετικά με {0}" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Καλωσήλθατε" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API" -#: ckan/templates/home/snippets/about_text.html:1 +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" + +#: ckan/templates/footer.html:24 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/

" +"Powered by CKAN" msgstr "" +"Λειτουργεί με CKAN" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Καλωσήλθατε" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +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/header.html:19 +msgid "View profile" +msgstr "Δείτε το προφίλ" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "" -"Αυτό είναι μια ενότητα στην οποία μπορείτε να αναδείξετε το περιεχόμενο που " -"θεωρείτε σημαντικό." +#: ckan/templates/header.html:26 +#, 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/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "Π.χ. Περιβάλλον" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Πίνακας βασικών λειτουργιών" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Αναζήτηση δεδομένων" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Επεξεργασία ρυθμίσεων." -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Δημοφιλείς Ετικέτες" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Ρυθμίσεις" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} στατιστικά" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Αποσύνδεση" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "Σύνολο Δεδομένων" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Συνδεθείτε" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "σύνολα δεδομένων" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Εγγραφείτε" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "φορείς" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Σύνολα Δεδομένων" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "ομάδες" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Αναζήτηση Συνόλων Δεδομένων" -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Αναζήτηση" + +#: ckan/templates/page.html:6 +msgid "Skip to content" msgstr "" -"Μπορείτε να χρησιμοποιήσετε μορφοποίηση Markdown here" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Το πεδίο απαιτεί συμπλήρωση" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Λιγότερα" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Προσαρμοσμένο" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Περισσότερα" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Η φόρμα περιέχει μη έγκυρες εγγραφές:" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Δεν υπάρχουν δραστηριότητες σε αυτή τη ροή" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Απαιτούμενο πεδίο" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Διαχείριση" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Διαχειριστές Συστήματος" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL εικόνας" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Διαχείριση" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Εκκαθάριση Μεταφόρτωσης" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Απορρίματα" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Φόρμα Φορέα" +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Είστε σίγουροι ότι θέλετε να επαναφέρετε τις ρυθμίσεις ;" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Επεξεργασία Συνόλων Δεδομένων" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Επαναφορά" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Προσθήκη συνόλου δεδομένων" +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +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/admin/config.html:26 +msgid "CKAN config options" +msgstr " Επιλογές ρυθμίσεων" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Ορισμός ως Δημόσιο" +#: ckan/templates/admin/config.html:33 +#, 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/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Ορισμός ως Ιδιωτικό" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Επιβεβαίωση Επαναφοράς" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Προσχέδιο" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Διαχείριση CKAN" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Ιδιωτικό" +#: 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/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Ο Φορέας δεν έχει σύνολα δεδομένων που να σχετίζονται με αυτόν" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Διαγραφή" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τον Φορέα - {name} ;" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +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/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Η προεπισκόπηση δεν είναι δυνατή" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Προσθήκη Φορέα" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Κάντε κλίκ για περισσότερες πληροφορίες" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "Αναζήτηση φορέων..." +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Λήψη πόρου" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "Δεν έχουν οριστεί ακόμη Φορείς για αυτόν τον Ιστότοπο" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Όνομα χρήστη" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Περισσότερες λεπτομέρειες..." -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "Διεύθυνση Email" +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Δεν βρέθηκε ενότητα χειρισμού για τον τύπο δεδομένων:%(type)s." -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "Ενημέρωση Μέλους" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Κανονικό" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

Διαχειριστής: Μπορεί να προσθέσει/επεξεργαστεί σύνολα " -"δεδομένων καθώς και να διαχειριστεί τα μέλη του φορέα.

" -"

Συντάκτης: Μπορεί να προσθέσει/επεξεργαστεί σύνολα " -"δεδομένων αλλά όχι και να διαχειριστεί τα μέλη του φορέα.

" -"

Μέλος: Μπορεί να δεί τα ιδιωτικά σύνολα δεδομένων του " -"φορέα που ανήκει , αλλά όχι να προσθέσει νέα.

" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Kαθορισμένη Είσοδος" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Προσθέστε ένα Φορέα" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Μεσαίο" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Ενημέρωση Οργανισμού" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Μεσαίου Πλάτους Είσοδος" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Δημιουργία Φορέα" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Πλήρες" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Προσθήκη συνόλου δεδομένων." +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Πλήρους πλάτους Είσοδος" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Σύνολα δεδομένων στο φορέα: {group}" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Μεγάλο" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Τι είναι οι φορείς;" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +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).

" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" 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. " +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" msgstr "" -" Οι Φορείς του CKAN χρησιμοποιούνται για τη δημιουργία, διαχείριση και " -"δημοσίευση συλλογών συνόλων δεδομένων. Οι χρήστες μπορούν να έχουν " -"διαφορετικούς ρόλους μέσα σε έναν Φορέα, αναλόγως με το επίπεδο " -"εξουσιοδότησης που έχουν αναφορικά με τη δημιουργία, επεξεργασία και " -"δημοσίευση. " -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Ο Φορέας μου" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Προσαρμοσμένο Πεδίο (κενό)" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "my-organization" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Προσαρμοσμένο Πεδίο" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Λίγες πληροφορίες σχετικά με τον φορέα...." +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Πλαίσιο Κειμένου" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Επιλογή" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Ροή Δραστηριότητας" + +#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 +#: ckan/templates/organization/admins.html:3 +#: ckan/templates/organization/admins.html:6 +msgid "Administrators" +msgstr "Διαχειριστές" + +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Προσθήκη μιας ομάδας" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Φόρμα Ομάδας" + +#: ckan/templates/group/confirm_delete.html:3 +#: ckan/templates/group/confirm_delete.html:15 +#: ckan/templates/group/confirm_delete_member.html:3 +#: ckan/templates/group/confirm_delete_member.html:16 +#: ckan/templates/organization/confirm_delete.html:3 +#: ckan/templates/organization/confirm_delete.html:15 +#: ckan/templates/organization/confirm_delete_member.html:3 +#: ckan/templates/organization/confirm_delete_member.html:16 +#: ckan/templates/package/confirm_delete.html:3 +#: ckan/templates/package/confirm_delete.html:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +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:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Διαχείριση" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Επεξεργασία Ομάδας:" + +#: ckan/templates/group/edit_base.html:23 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/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Ιστορία" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Προσθήκη ομάδας." + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Αναζήτηση σε ομάδες..." + +#: ckan/templates/group/index.html: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:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Προσθήκη Μέλους" + +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Υπάρχων χρήστης" + +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτόν το Φορέα; Με αυτή την ενέργεια" -" θα διαγραφούν όλα τα δημόσια και ιδιωτικά σύνολα δεδομένων που ανήκουν σε " -"αυτόν." +"Αν θέλετε να προσθέσετε έναν υπάρχοντα χρήστη, αναζητήστε το όνομα χρήστη " +"παρακάτω." -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Αποθήκευση Φορέα" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "ή" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Προβολή {organization_name}" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Νέος Χρήστης" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Δημιουργείστε ένα σύνολο δεδομένων " +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Αν θέλετε να προσκαλέσετε έναν νέο χρήστη, εισάγετε τη διεύθυνση " +"ηλεκτρονικού ταχυδρομείου του." -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Τι είναι τα σύνολα δεδομένων;" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Ρόλος" + +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το μέλος;" + +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Διαγραφή" + +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Τι είναι οι ρόλοι;" -#: ckan/templates/package/base_form_page.html:25 +#: ckan/templates/group/member_new.html:80 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/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" +"

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

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

" msgstr "" -"Είστε σίγουροι ότι θέλετε να διαγράψετε το σύνολο δεδομένων - {name}? ;" +"

Διαχειριστής: Μπορεί να τροποποιήσει τις πληροφορίες " +"ομάδας, καθώς και να διαχειριστεί τα μέλη ενός φορέα

" +"

Μέλος: Μπορεί να προσθέσει/αφαιρέσει σύνολα δεδομένων " +"από ομάδες

" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τον πόρο - {name} ;" +#: 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/package/edit_base.html:16 -msgid "View dataset" -msgstr "Προβολή συνόλου δεδομένων" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Ενημέρωση ομάδας" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Επεξεργασία μεταδεδομένων" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +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/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Αναζήτηση συνόλων δεδομένων" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Προεπισκόπηση" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Σύνολα δεδομένων στην ομάδα : {group}" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Ενημέρωση" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Ιστορικό Πρόσφατων Εκδόσεων" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Συσχέτιση αυτής της ομάδας με αυτό το σύνολο δεδομένων" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Όνομα" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Προσθήκη στε Ομάδα" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Η Ομάδα μου" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "Δεν υπάρχουν ομάδες που να συσχετίζονται με αυτό το σύνολο δεδομένων" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "my-group" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Ανανέωση συνόλου δεδομένων" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Λίγες πληροφορίες σχετικά με την ομάδα...." -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Προσθήκη δεδομένων στο σύνολο δεδομένων" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτήν την ομάδα ;" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "Πρόσθεσε μία πηγή" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Προβολή {name}" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Νέος πόρος" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +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/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Τι είναι οι Ομάδες;" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/group/snippets/helper.html:8 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +" 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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Προσθήκη" - -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" -"Αυτή είναι μια παλιά αναθεώρηση αυτού του συνόλου δεδομένων, όπως το " -"επεξεργάστηκαν στο %(timestamp)s. Μπορεί να διαφέρει σημαντικά από την τρέχουσα αναθεώρηση." +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Σύγκριση" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Μεταφόρτωση στο DataStore" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Διαγραμμένα" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Σφάλμα μεταφόρτωσης:" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "διαβάστε περισσότερα" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Λάθος:" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Έκδοση" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "Ακολουθία σφαλμάτων" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Timestamp" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Κατάσταση:" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Δημιουργός" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Τελευταία ενημέρωση" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Μήνυμα καταγραφής" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Ποτέ" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Καλωσήλθατε" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -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/package/resource_data.html:74 -msgid "Details" -msgstr "Λεπτομέρειες" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Καλωσήλθατε" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -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/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Όλοι οι πόροι" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "" +"Αυτό είναι μια ενότητα στην οποία μπορείτε να αναδείξετε το περιεχόμενο που " +"θεωρείτε σημαντικό." -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Προβολή πόρου" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Π.χ. Περιβάλλον" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Επεξεργασία πόρου" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Αναζήτηση δεδομένων" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Δημοφιλείς Ετικέτες" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Προβολές" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} στατιστικά" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "Σημείο τερματισμού API" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "Σύνολο Δεδομένων" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Μετάβαση στον πόρο" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "σύνολα δεδομένων" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Download" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "φορείς" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "ομάδες" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Από τη σύνοψη του συνόλου δεδομένων" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Πηγή : %(dataset)s" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." +msgid "" +"You can use Markdown formatting here" msgstr "" +"Μπορείτε να χρησιμοποιήσετε μορφοποίηση Markdown here" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Δε βλέπετε τις αναμενόμενες προβολές?" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Το πεδίο απαιτεί συμπλήρωση" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "Λόγοι που ενδεχομένως δε βλέπετε τις αναμενόμενες Προβολές:" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Προσαρμοσμένο" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" -"Δεν έχει δημιουργηθεί Προβολή κατάλληλη για την προεπισκόπηση αυτού του " -"πόρου" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Η φόρμα περιέχει μη έγκυρες εγγραφές:" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Απαιτούμενο πεδίο" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Πρόσθετες Πληροφορίες" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL εικόνας" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Πεδίο" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Εκκαθάριση Μεταφόρτωσης" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Τιμή" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Φόρμα Φορέα" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "Άγνωστος" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Επεξεργασία Συνόλων Δεδομένων" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Δημιουργήθηκε" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Προσθήκη συνόλου δεδομένων" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Διαμόρφωση" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr " βρέθηκε για \"{query}\"" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Άδεια" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Δεν βρέθηκαν σύνολα δεδομένων βρέθηκαν για \"{query}\"" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Νέα προβολή" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Ορισμός ως Δημόσιο" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Δεν υποστηρίζονται προβολές για τον πόρο" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Ορισμός ως Ιδιωτικό" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Προσθήκη νέου πόρου" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Προσχέδιο" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Ιδιωτικό" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Ο Φορέας δεν έχει σύνολα δεδομένων που να σχετίζονται με αυτόν" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API Έγγραφα" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τον Φορέα - {name} ;" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -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/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/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +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 "" -"Μπορείτε επίσης να έχετε πρόσβαση σε αυτό το μητρώο χρησιμοποιώντας το " -"%(api_link)s (δείτε %(api_doc_link)s)." +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Αναζήτηση φορέων..." -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "Όλες οι προβολές" +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Δεν έχουν οριστεί ακόμη Φορείς για αυτόν τον Ιστότοπο" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "Εμφάνιση Προβολής" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Όνομα χρήστη" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Προεπισκόπηση Προβολής" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Διεύθυνση Email" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Επιπρόσθετες πληροφορίες" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Ενημέρωση Μέλους" + +#: ckan/templates/organization/member_new.html:81 +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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Πηγή " +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Προσθέστε ένα Φορέα" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Έκδοση" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Ενημέρωση Οργανισμού" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Πολιτεία/Περιοχή" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Δημιουργία Φορέα" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Τελευταία ενημέρωση" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Προσθήκη συνόλου δεδομένων." -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." -msgstr "" -"πρέπει να δημιουργήσετε ένα φόρέα πριν από τη δημιουργία ενός συνόλου " -"δεδομένων" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Σύνολα δεδομένων στο φορέα: {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "Δημιουργία νέου φορέα" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Τι είναι οι φορείς;" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Data API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Ο Φορέας μου" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Τίτλος" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "my-organization" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "π.χ. Ένας περιγραφικός τίτλος" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Λίγες πληροφορίες σχετικά με τον φορέα...." -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "π.χ my-dataset" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτόν το Φορέα; Με αυτή την ενέργεια" +" θα διαγραφούν όλα τα δημόσια και ιδιωτικά σύνολα δεδομένων που ανήκουν σε " +"αυτόν." -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "π.χ. Χρήσιμες πληροφορίες σχετικά με τα δεδομένα" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Αποθήκευση Φορέα" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"Ορισμούς Αδειών και επιπλέον πληροφορίες μπορείτε να βρείτε στο opendefinition.org" +"Ένα σύνολο δεδομένων αποτελεί μια συλλογή πόρων (όπως αρχεία), μαζί με μια " +"περιγραφή και άλλες πληροφορίες, διαθέσιμη σε συγκεκριμένο URL. Τα σύνολα " +"δεδομένων παρέχονται ως αποτέλεσμα της αναζήτησης που πραγματοποιούν οι " +"χρήστες." -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Φορέας" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "" +"Είστε σίγουροι ότι θέλετε να διαγράψετε το σύνολο δεδομένων - {name}? ;" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Κανένας φορέας" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τον πόρο - {name} ;" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Ορατότητα" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Προβολή συνόλου δεδομένων" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Δημόσιο" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Επεξεργασία μεταδεδομένων" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Προεπισκόπηση" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το σύνολο δεδομένων ;" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Ενημέρωση" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Προσθέστε δεδομένα" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +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/group_list.html:14 +msgid "Add to group" +msgstr "Προσθήκη στε Ομάδα" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Ανανέωση συνόλου δεδομένων" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Email δημιουργού" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +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 "thodoris@example.com" +#: 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/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Email Υπευθύνου Συντήρησης" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -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/snippets/resource_form.html:24 -msgid "Data" -msgstr "Δεδομένα" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Προσθήκη" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "http://example.com/external-data.csv" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "" +"Αυτή είναι μια παλιά αναθεώρηση αυτού του συνόλου δεδομένων, όπως το " +"επεξεργάστηκαν στο %(timestamp)s. Μπορεί να διαφέρει σημαντικά από την τρέχουσα αναθεώρηση." -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "π.χ. Τιμές χρυσού Ιανουάριος 2013" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Όλοι οι πόροι" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Μερικές χρήσιμες σημειώσεις για τα δεδομένα" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Προβολή πόρου" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "π.χ. CSV, XML or JSON" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Επεξεργασία πόρου" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" -"Θα ερμηνευθεί αυτόματα. Μπορείτε να το αφήσετε κενό εφόσον το επιθυμείτε" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Προβολές" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "π.χ. 2012-06-05" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "Σημείο τερματισμού API" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Μέγεθος αρχείου" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Μετάβαση στον πόρο" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "π.χ. 1024" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Download" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "Πρότυπο MIME" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "π.χ. application/json" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Από τη σύνοψη του συνόλου δεδομένων" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτόν τον πόρο ;" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Πηγή : %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Προηγούμενο" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "" +"Δεν έχει δημιουργηθεί ακόμα Προβολή για την προεπισκόπηση αυτού του πόρου" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Αποθήκευση & προσθήκη άλλου" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Δε βλέπετε τις αναμενόμενες προβολές?" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Ολοκλήρωση" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Λόγοι που ενδεχομένως δε βλέπετε τις αναμενόμενες Προβολές:" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Τι είναι ένας πόρος ;" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this 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." +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -"Ένας πόρος μπορεί να είναι οποιοδήποτε αρχείο ή σύνδεσμος σε ένα αρχείο που " -"περιέχει χρήσιμα δεδομένα." -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Εξερευνήστε" +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_item.html:36 -msgid "More information" -msgstr "Περισσότερες πληροφορίες" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Πρόσθετες Πληροφορίες" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Ενσωματώστε" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Πεδίο" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Τιμή" + +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Ενσωμάτωση προβολής πόρου" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "Άγνωστος" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Πλάτος" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Δημιουργήθηκε" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Ύψος" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Διαμόρφωση" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Κωδικός" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Άδεια" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Προεπισκόπηση Πόρου" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Νέα προβολή" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Δεδομένα και Πόροι" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Δεν υποστηρίζονται προβολές για τον πόρο" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Το σύνολο δεδομένων δεν περιέχει στοιχεία" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Προσθήκη νέου πόρου" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format -msgid "Read dataset as of %s" -msgstr "Ανάγνωση συνόλου δεδομένων ως %s" +msgid "" +"

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

" +msgstr "" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Δημιουργείστε ένα σύνολο δεδομένων " +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: 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/search.html:53 +msgid "API Docs" +msgstr "API Έγγραφα" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "π.χ. η Προβολή μου" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "full {format} dump" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -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 "" +"Μπορείτε επίσης να αποκτήσετε πρόσβαση σε αυτό το μητρώο χρησιμοποιώντας το " +"%(api_link)s (δείτε %(api_doc_link)s) η κατεβάζοντας ένα %(dump_link)s." -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -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 "" +"Μπορείτε επίσης να έχετε πρόσβαση σε αυτό το μητρώο χρησιμοποιώντας το " +"%(api_link)s (δείτε %(api_doc_link)s)." -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -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/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Φίλτρα" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Προεπισκόπηση Προβολής" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Τι είναι μια Προβολή?" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +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/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Πηγή " -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -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/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Διαφορές Αναθεωρήσεων" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Έκδοση" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Διαφορά" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Πολιτεία/Περιοχή" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Δεν υπάρχουν διαφορές" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Τελευταία ενημέρωση" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Ιστορικό Εκδόσεων" +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" +"πρέπει να δημιουργήσετε ένα φόρέα πριν από τη δημιουργία ενός συνόλου " +"δεδομένων" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Εκδόσεις" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Δημιουργία νέου φορέα" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -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/revision/read.html:64 -msgid "Changes" -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/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Ετικέτες συνόλων δεδομένων" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Τίτλος" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Οντότητα" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "π.χ. Ένας περιγραφικός τίτλος" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Νεα Δραστηριότητα" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "π.χ my-dataset" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Ενσωμάτωση των δεδομένων προβολής" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "π.χ. Χρήσιμες πληροφορίες σχετικά με τα δεδομένα" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Ενσωματώστε αντιγράφοντας αυτό στην ιστοσελίδα σας:" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "π.χ οικονομία, υγεία, διακυβέρνηση" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Διαλέξτε πλάτος και ύψος σε εικονοστοιχεία:" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Ορισμούς Αδειών και επιπλέον πληροφορίες μπορείτε να βρείτε στο opendefinition.org" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Πλάτος:" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Φορέας" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Ύψος:" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Κανένας φορέας" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Κατάσταση Datapusher: {status}" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Ορατότητα" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "URL Παρακαολούθησης" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Δημόσιο" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Εμφάνιση Περισσοτέρων {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Ενεργό" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" +#: 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/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το σύνολο δεδομένων ;" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Αρχική" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Προσθέστε δεδομένα" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Γλώσσα" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Πάμε" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -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/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Αυτό το σύνολο δεδομένων ικανοποιεί τον Ανοιχτό Ορισμό." +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email δημιουργού" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -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 "thodoris@example.com" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Το σύνολο δεδομένων δεν έχει περιγραφή" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email Υπευθύνου Συντήρησης" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Υποβολή" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Ενημέρωση Πόρου" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Ταξινόμηση κατά" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Δεδομένα" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Φίλτρα Αποτελεσμάτων" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

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

" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "π.χ. Τιμές χρυσού Ιανουάριος 2013" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Μερικές χρήσιμες σημειώσεις για τα δεδομένα" + +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "π.χ. CSV, XML or JSON" + +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" 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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "π.χ. 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Μέγεθος αρχείου" -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "βρέθηκε ένα σύνολο δεδομένων" -msgstr[1] "βρέθηκαν {number} σύνολα δεδομένων" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "π.χ. 1024" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Δε βρέθηκαν σύνολα δεδομένων" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "Πρότυπο MIME" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "π.χ. application/json" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Δεν βρέθηκαν ομάδες για \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτόν τον πόρο ;" -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "βρέθηκε μία ομάδα" -msgstr[1] "βρέθηκαν {number} ομάδες" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Προηγούμενο" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Δεν βρέθηκαν ομάδες" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +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/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Ολοκλήρωση" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "Δεν βρέθηκαν φορείς για \"{query}\"" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Τι είναι ένας πόρος ;" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "Βρέθηκε ένας φορέας" -msgstr[1] "Βρέθηκαν {number} φορείς" +#: 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/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Δεν βρέθηκαν φορείς" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Εξερευνήστε" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Κοινωνικά" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Περισσότερες πληροφορίες" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Εγγραφή" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +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:82 -msgid "Email" -msgstr "Email" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Ενσωμάτωση προβολής πόρου" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Αλλαγές" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Αναζήτηση Ετικετών" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Πλάτος" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Ροή ειδήσεων" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Ύψος" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Τα σύνολα δεδομένων μου" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Κωδικός" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Οι Φορείς μου" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Προεπισκόπηση Πόρου" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Οι Ομάδες μου" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Δεδομένα και Πόροι" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Δραστηριότητα από αντικείμενα που ακολουθώ" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Το σύνολο δεδομένων δεν περιέχει στοιχεία" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Δεν έχετε δημιουργήσει κάποιο σύνολο δεδομένων" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Ανάγνωση συνόλου δεδομένων ως %s" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Δημιουργία τώρα ;" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Δημιουργείστε ένα σύνολο δεδομένων " -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -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/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Δεν είστε μέλος κάποιου φορέα." +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +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/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "π.χ. Πληροφορίες για την προβολή μου" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Πληροφορίες λογαριασμού" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +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/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Τι είναι μια Προβολή?" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -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/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Πλήρες όνομα" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Διαφορές" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "π.χ Θοδωρής Παπαδόπουλος" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Διαφορές Αναθεωρήσεων" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "π.χ. thodoris@example.gr" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Διαφορά" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Λίγα λόγια για εσάς..." +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Δεν υπάρχουν διαφορές" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Εγγραφείτε στο e-mail ειδοποιήσεων" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Ιστορικό Εκδόσεων" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Αλλαγή κωδικού πρόσβασης" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Εκδόσεις" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "Κωδικός Διαχειριστή" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Αναίρεση διαγραφής" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Κωδικός πρόσβασης" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Αλλαγές" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Επιβεβαίωση κωδικού πρόσβασης" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Ετικέτες συνόλων δεδομένων" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτόν τον Xρήστη;" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Οντότητα" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Νεα Δραστηριότητα" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Επαναδημιουργία κλειδιού προγραμματιστικής διεπαφής (API)" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Ενσωμάτωση των δεδομένων προβολής" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Ενημέρωση προφίλ" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Ενσωματώστε αντιγράφοντας αυτό στην ιστοσελίδα σας:" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Όλοι οι χρήστες" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +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/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Πλάτος:" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Εγγραφείτε για λογαριασμό" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Ύψος:" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "Εγγεαφείτε , παίρνει μόνο ένα λεπτό." +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Κατάσταση Datapusher: {status}" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Δημιουργείστε έναν λογαριασμό" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "URL Παρακαολούθησης" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Ξεχάσατε τον κωδικό πρόσβασης;" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Εμφάνιση Περισσοτέρων {facet_type}" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" msgstr "" -"Δεν υπάρχει πρόβλημα, χρησιμοποιήστε τη φόρμα ανάκτησης κωδικού πρόσβασης " -"για να τον επαναφέρετε." -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Ξεχάσατε τον κωδικό σας;" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Αποσυνδέθηκε" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Αρχική" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Επιτυχής αποσύνδεση." +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Γλώσσα" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Είστε ήδη συνδεδεμένος ως {user}." +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Πάμε" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Αποσύνδεση" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Μη καθορισμένη άδεια" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Να με θυμάσαι" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Αυτό το σύνολο δεδομένων ικανοποιεί τον Ανοιχτό Ορισμό." -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Είστε ήδη συνδεδεμένος" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Δεν υπάρχει περιγραφή για τον Φορέα" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" -"Θα πρέπει να αποσυνδεθείτε για να μπορέσετε να συνδεθείτε με έναν άλλο " -"λογαριασμό." +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Το σύνολο δεδομένων δεν έχει περιγραφή" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Αποσύνδεση τώρα" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Υποβολή" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Εγγραφή" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Ταξινόμηση κατά" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Εγγραφείτε για λογαριασμό" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Φίλτρα Αποτελεσμάτων" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Γιατί να εγγραφώ;" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

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

" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "Δημιουργία σύνολα δεδομένων, ομάδες και άλλα συναρπαστικά πράγματα" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -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/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Πλήρες όνομα" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Δεν βρέθηκαν σύνολα δεδομένων για \"{query}\"" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Δημιουργείστε έναν λογαριασμό" +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "βρέθηκε ένα σύνολο δεδομένων" +msgstr[1] "βρέθηκαν {number} σύνολα δεδομένων" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Επαναφορά Κωδικού Πρόσβασης" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Δε βρέθηκαν σύνολα δεδομένων" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -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/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Ενημέρωση Κωδικού Πρόσβασης" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Δεν βρέθηκαν ομάδες για \"{query}\"" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Πως λειτουργεί;" +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "βρέθηκε μία ομάδα" +msgstr[1] "βρέθηκαν {number} ομάδες" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" -"Απλά εισάγετε ένα νέο κωδικό πρόσβασης και θα ενημερώσουμε το λογαριασμό σας" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Δεν βρέθηκαν ομάδες" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Δεν έχουν παράσχει στοιχεία σχετικά με εσάς." +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Δεν βρέθηκαν φορείς για \"{query}\"" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Ο χρήστης δεν έχει δώσει στοιχεία για τον εαυτό του" +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "Βρέθηκε ένας φορέας" +msgstr[1] "Βρέθηκαν {number} φορείς" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Δεν βρέθηκαν φορείς" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Αυτό σημαίνει ότι μόνο εσείς μπορείτε να δείτε αυτό" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Κοινωνικά" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Μέλος από" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Εγγραφή" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API Key" +#: 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:82 +msgid "Email" +msgstr "Email" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Επαναφορά κωδικού πρόσβασης" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Επαναφορά κωδικού πρόσβασης" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Αλλαγές" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Αναζήτηση Ετικετών" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Εισάγετε το όνομα χρήστη σας στο πλαίσιο κειμένου και θα σας στείλουμε ένα " -"email με ένα σύνδεσμο για να εισάγετε ένα νέο κωδικό πρόσβασης." +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Ροή ειδήσεων" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Δραστηριότητα από:" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Τα σύνολα δεδομένων μου" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Αναζήτηση λίστας..." +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Οι Φορείς μου" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Δεν ακολουθείτε τίποτα" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Οι Ομάδες μου" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Δεν υπάρχουν ακόλουθοι" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Δραστηριότητα από αντικείμενα που ακολουθώ" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Αναζήτηση χρηστών" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Δεν έχετε δημιουργήσει κάποιο σύνολο δεδομένων" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -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:16 +msgid "Create one now?" +msgstr "Δημιουργία τώρα ;" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Εκκρεμεί" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Δεν είστε μέλος καμίας ομάδας." -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Γίνεται υποβολή" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Δεν είστε μέλος κάποιου φορέα." -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -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 "Χρήστες:" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Δεν βρέθηκε ο πόρος DataStore" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Πληροφορίες λογαριασμού" -#: ckanext/datastore/db.py:663 +#: ckan/templates/user/edit.html:19 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" +"Το προφίλ σας επιτρέπει σε άλλους χρήστες να γνωρίζουν ποιοι είστε και τι " +"κάνετε." -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -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/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/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Τροποποίηση λεπτομερειών" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Πλήρες όνομα" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +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 "προσαρμοσμένο κείμενο" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "π.χ. thodoris@example.gr" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "προσαρμοσμένο κείμενο" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Λίγα λόγια για εσάς..." -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Κωδικός Χώρας" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Εγγραφείτε στο e-mail ειδοποιήσεων" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Αλλαγή κωδικού πρόσβασης" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "Κωδικός Διαχειριστή" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Η συγκεκριμένη ομάδα δεν έχει περιγραφή" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Κωδικός πρόσβασης" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Επιβεβαίωση κωδικού πρόσβασης" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "URL εικόνας" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτόν τον Xρήστη;" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -"π.χ. http://example.com/image.jpg (χρήση του url πόρου αν μείνει κενό)" +"Είστε σίγουροι ότι θέλετε να επαναδημιουργήσετε το κλειδί της " +"προγραμματιστικής διεπαφής εφαρμογών (API)?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Εξερεύνηση Δεδομένων" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Επαναδημιουργία κλειδιού προγραμματιστικής διεπαφής (API)" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Πίνακας" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Ενημέρωση προφίλ" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Γράφημα" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Όλοι οι χρήστες" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -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 "Σύνδεση" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "Σφάλμα κατά τη φόρτωση της προβολής" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Εγγραφείτε για λογαριασμό" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Εγγεαφείτε , παίρνει μόνο ένα λεπτό." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "π.χ,: 0 " +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Δημιουργείστε έναν λογαριασμό" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "Πλήθος εγγραφών" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Ξεχάσατε τον κωδικό πρόσβασης;" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "π.χ,: 100" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Δεν υπάρχει πρόβλημα, χρησιμοποιήστε τη φόρμα ανάκτησης κωδικού πρόσβασης " +"για να τον επαναφέρετε." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Τύπος γραφήματος" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Ξεχάσατε τον κωδικό σας;" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Ομάδα (Άξονας 1)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Αποσυνδέθηκε" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Σειρά (Άξονας 2)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Επιτυχής αποσύνδεση." -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Τύπος πεδίου" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Είστε ήδη συνδεδεμένος ως {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Πεδίο Γεωγραφικού Πλάτους" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Αποσύνδεση" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Πεδίο Γεωγραφικού Μήκους" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Να με θυμάσαι" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "Πεδίο GeoJSON" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Είστε ήδη συνδεδεμένος" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Αυτόματη εστίαση στα αντικείμενα" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." +msgstr "" +"Θα πρέπει να αποσυνδεθείτε για να μπορέσετε να συνδεθείτε με έναν άλλο " +"λογαριασμό." -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Ομαδοποίηση συμβόλων" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Αποσύνδεση τώρα" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Συνολικός αριθμός Συνόλων Δεδομένων" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Εγγραφή" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Ημερομηνία" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Εγγραφείτε για λογαριασμό" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Συνολικός αριθμός Συνόλων Δεδομένων" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Γιατί να εγγραφώ;" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Εκδόσεις Συνόλων Δεδομένων ανά εβδομάδα" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Δημιουργία σύνολα δεδομένων, ομάδες και άλλα συναρπαστικά πράγματα" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Όλες οι εκδόσεις συνόλου δεδομένων" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "Όνομα χρήστη" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Νέα σύνολα δεδομένων" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Πλήρες όνομα" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Δημοφιλή Σύνολα Δεδομένων" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Δημιουργείστε έναν λογαριασμό" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Μέση βαθμολογία" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Επαναφορά Κωδικού Πρόσβασης" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Πλήθος αξιολογήσεων" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Επαναφορά Κωδικού Πρόσβασης" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Χωρίς αξιολόγηση" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Ενημέρωση Κωδικού Πρόσβασης" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Περισσότερο επεξεργασμένα σύνολα δεδομένων" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Πως λειτουργεί;" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Πλήθος επεξεργασιών" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "" +"Απλά εισάγετε ένα νέο κωδικό πρόσβασης και θα ενημερώσουμε το λογαριασμό σας" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Δεν υπάρχουν επεξεργασμένα σύνολα" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Ο χρήστης δεν έχει δημιουργήσει κάποιο σύνολο δεδομένων" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Μεγαλύτερες Ομάδες" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Δεν έχουν παράσχει στοιχεία σχετικά με εσάς." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Αριθμός Συνόλων Δεδομένων" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Ο χρήστης δεν έχει δώσει στοιχεία για τον εαυτό του" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Δεν υπάρχουν Ομάδες" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Κορυφαίες ετικέτες" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Αυτό σημαίνει ότι μόνο εσείς μπορείτε να δείτε αυτό" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Όνομα ετικέτας" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Μέλος από" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Αριθμός Συνόλων Δεδομένων" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API Key" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "Χρήστες που δημιουργούν τα περισσότερα σύνολα δεδομένων" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Επαναφορά κωδικού πρόσβασης" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Στατιστικά στοιχεία" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Επαναφορά κωδικού πρόσβασης" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Συνολικός αριθμός Συνόλων Δεδομένων" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Κείμενο" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "" +"Εισάγετε το όνομα χρήστη σας στο πλαίσιο κειμένου και θα σας στείλουμε ένα " +"email με ένα σύνδεσμο για να εισάγετε ένα νέο κωδικό πρόσβασης." -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" -msgstr "Παρουσιάστηκε σφάλμα: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Δραστηριότητα από:" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Ιστότοπος" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Αναζήτηση λίστας..." -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "URL ιστότοπου" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Δεν ακολουθείτε τίποτα" -#: 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/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Δεν υπάρχουν ακόλουθοι" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Αναζήτηση χρηστών" diff --git a/ckan/i18n/en_AU/LC_MESSAGES/ckan.mo b/ckan/i18n/en_AU/LC_MESSAGES/ckan.mo index 8d70dced05a..2e5a1a5aa34 100644 Binary files a/ckan/i18n/en_AU/LC_MESSAGES/ckan.mo and b/ckan/i18n/en_AU/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/en_AU/LC_MESSAGES/ckan.po b/ckan/i18n/en_AU/LC_MESSAGES/ckan.po index 237f88fd429..264701788f5 100644 --- a/ckan/i18n/en_AU/LC_MESSAGES/ckan.po +++ b/ckan/i18n/en_AU/LC_MESSAGES/ckan.po @@ -1,4565 +1,4661 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: en_AU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Authorisation function not found: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Complete" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Admin" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pending" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Editor" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Submitting" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Member" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Error" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Need to be system administrator to administer" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Not Uploaded Yet" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Site Title" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Resource not found" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Style" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Not authorised to see this page" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Site Tag Line" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Upload to DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Site Tag Logo" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Upload error:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Error:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "About page text" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Intro Text" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Text on home page" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Last updated" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Custom CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Never" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Customisable css inserted into the page header" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Upload Log" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Homepage" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Details" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "End of log" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +msgid "format: must be one of %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" +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "DataStore resource not found" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Purge complete" +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Action not implemented." +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Resource \"{0}\" was not found." -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Not authorised to see this page" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "User {0} not authorised to update resource {1}" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Access denied" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Not found" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "Access resource data via a web API with powerful query support" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Bad request" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

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

" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Action name not known: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Endpoints" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON Error: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Bad request data: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Create" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Cannot list entity of this type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Update / Insert" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Cannot read entity of this type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Query" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Cannot create new entity of this type: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Query (via SQL)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Unable to add package to search index" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Querying" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Cannot update entity of this type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Query example (first 5 results)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Unable to update search index" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Query example (results containing 'jones')" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Cannot delete entity of this type: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Query example (via SQL statement)" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "No revision specified" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Example: Javascript" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "There is no revision with id: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "A simple ajax (JSONP) request to the data API using jQuery." -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Example: Python" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Could not read parameters: %r" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Bad search option: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Unknown register: %s" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Description" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Malformed qjson value: %r" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Save" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Request params must be in form of a json encoded dictionary." +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Group not found" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organisation not found" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Incorrect group type" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Loading..." -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organisations" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Data API" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Groups" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Table" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Tags" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formats" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licenses" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Not authorised to perform bulk update" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datasets per page" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Unauthorised to create a group" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Test conf" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "User %r not authorised to edit %s" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevance" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Integrity Error" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "User %r not authorised to edit %s authorisations" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Unauthorised to delete group %s" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Last Modified" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organisation has been deleted." +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Custom Field Ascending" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Group has been deleted." +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Custom Field Descending" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s has been deleted." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Popular" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Unauthorised to add member to group %s" +#: 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" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Unauthorised to delete group %s members" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "custom text" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Group member has been deleted." +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Country Code" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Select two revisions before doing the comparison." +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "custom resource text" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "CKAN Group Revision History" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Recent changes to CKAN Group: " +#: 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/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Log message: " +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "You are now following {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 "0 Datasets" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "You are no longer following {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's data previewing tool has many powerful features" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Unauthorised to view followers %s" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Followers" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "This site is currently off-line. Database is not initialised." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resources" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" -"Please update your profile and add your email address. " +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Image" -#: ckan/controllers/home.py:83 -#, 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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Image url" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "" +#: 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)" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parameter \"{parameter_name}\" is not an integer" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Data Explorer" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Dataset not found" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Graph" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Invalid revision format: %r" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Map" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." - -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Unauthorised to read package %s" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "CKAN Dataset Revision History" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Recent changes to CKAN Dataset: " +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Unauthorised to create a package" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Unauthorised to edit this resource" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Resource not found" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filters" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Unauthorised to update dataset" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Row offset" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "The dataset {id} could not be found." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "eg: 0" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "You must add at least one data resource" +#: 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" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Error" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "eg: 100" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Unauthorised to create a resource" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Graph type" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Unauthorised to create a resource for this package" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Group (Axis 1)" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Unable to add package to search index." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Series (Axis 2)" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Unable to update search index." +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Field type" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Dataset has been deleted." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Latitude field" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Unauthorised to delete package %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Longitude field" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Resource has been deleted." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON field" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Unauthorised to delete resource %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Auto zoom to features" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Resource view not found" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Cluster markers" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Resource data not found" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Total number of Datasets" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "No download is available" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Date" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Unauthorised to read dataset %s" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Total datasets" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Unauthorised to read resource %s" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Dataset Revisions per Week" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Unauthorised to edit resource" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "All dataset revisions" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "View not found" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "New datasets" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "View Type Not found" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Top Rated Datasets" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Bad resource view data" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Average rating" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Resource view not supplied" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Number of ratings" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "No preview has been defined." +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "No ratings" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "CKAN Repository Revision History" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Most Edited Datasets" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Recent changes to the CKAN repository." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Dataset" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Datasets affected: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Number of edits" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Revision updated" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "No edited datasets" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Other" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Largest Groups" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Tag not found" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Group" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "User not found" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Number of datasets" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Unauthorised to register as a user." +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "No groups" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Unauthorised to create a user" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Top Tags" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Unauthorised to delete user with id \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Tag Name" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "No user specified" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Number of Datasets" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Unauthorised to edit user %s" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profile updated" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "User" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Unauthorised to create user %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Statistics Menu" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Bad Captcha. Please try again." +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Total Number of Datasets" -#: ckan/controllers/user.py:265 -#, 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" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Text" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Unauthorised to edit a user." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Website" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "User %s not authorised to edit %s" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Web Page url" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Password entered was incorrect" +#: 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/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Old Password" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Your browser does not support iframes." -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "incorrect password" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Authorisation function not found: %s" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Login failed. Bad username or password." +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Admin" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Unauthorised to request reset password." +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Editor" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" matched several users" - -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "No such user: %s" - -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Please check your inbox for a reset code." +#: ckan/authz.py:202 +msgid "Member" +msgstr "Member" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Could not send reset link: %s" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Need to be system administrator to administer" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Unauthorised to reset password." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Site Title" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Invalid reset key. Please try again." +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Style" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Your password has been reset." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Site Tag Line" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Your password must be 4 characters or longer." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Site Tag Logo" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "The passwords you entered do not match." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:568 -msgid "You must provide a password" -msgstr "You must provide a password" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "About page text" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Follow item not found" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Intro Text" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} not found" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Text on home page" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Everything" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Custom CSS" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Missing Value" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Customisable css inserted into the page header" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Redirecting to external site is not allowed." +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Homepage" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} added the tag {tag} to the dataset {dataset}" +#: ckan/controllers/admin.py:161 +#, 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/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} updated the group {group}" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problem purging revision %s: %s" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} updated the organisation {organization}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Purge complete" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} updated the dataset {dataset}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Action not implemented." -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} changed the extra {extra} of the dataset {dataset}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Access denied" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} updated the resource {resource} in the dataset {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Not found" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} updated their profile" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Bad request" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} deleted the group {group}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Action name not known: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} deleted the organisation {organization}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Error: %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} deleted the dataset {dataset}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Bad request data: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} deleted the extra {extra} from the dataset {dataset}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Cannot list entity of this type: %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} deleted the resource {resource} from the dataset {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Cannot read entity of this type: %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} created the group {group}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Cannot create new entity of this type: %s %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} created the organisation {organization}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Unable to add package to search index" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} created the dataset {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Cannot update entity of this type: %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} added the extra {extra} to the dataset {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Unable to update search index" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} added the resource {resource} to the dataset {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Cannot delete entity of this type: %s %s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} signed up" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "No revision specified" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} removed the tag {tag} from the dataset {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "There is no revision with id: %s" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} started following {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} started following {user}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Could not read parameters: %r" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} started following {group}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Bad search option: %s" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "View" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Unknown register: %s" -#: 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/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Malformed qjson value: %r" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "January" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Request params must be in form of a json encoded dictionary." -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "February" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Group not found" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "March" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organisation not found" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "April" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Incorrect group type" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "May" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organisations" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "June" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Groups" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "July" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Tags" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "August" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formats" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "September" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licenses" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "October" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "User %r not authorised to edit %s" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "November" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Not authorised to perform bulk update" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "December" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Unauthorised to create a group" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Just now" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Integrity Error" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} minute ago" -msgstr[1] "{mins} minutes ago" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "User %r not authorised to edit %s authorisations" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} hour ago" -msgstr[1] "{hours} hours ago" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Unauthorised to delete group %s" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} day ago" -msgstr[1] "{days} days ago" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organisation has been deleted." -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} month ago" -msgstr[1] "{months} months ago" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Group has been deleted." -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "over {years} year ago" -msgstr[1] "over {years} years ago" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s has been deleted." -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" msgstr "" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Unauthorised to add member to group %s" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Unauthorised to delete group %s members" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Group member has been deleted." -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Select two revisions before doing the comparison." -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "CKAN Group Revision History" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Recent changes to CKAN Group: " -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Log message: " -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "You are now following {0}" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "You are no longer following {0}" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Unauthorised to view followers %s" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: 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/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Please update your profile and add your email address. " -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parameter \"{parameter_name}\" is not an integer" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Update your avatar at gravatar.com" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Dataset not found" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Unknown" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Invalid revision format: %r" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Unnamed resource" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Created new dataset." +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Unauthorised to read package %s" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Edited resources." +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "CKAN Dataset Revision History" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Edited settings." +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Recent changes to CKAN Dataset: " -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} view" -msgstr[1] "{number} views" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Unauthorised to create a package" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} recent view" -msgstr[1] "{number} recent views" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Unauthorised to edit this resource" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Unauthorised to update dataset" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "No recipient email address available!" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "The dataset {id} could not be found." -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organisation" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "You must add at least one data resource" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "group" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Unauthorised to create a resource" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Missing value" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Unauthorised to create a resource for this package" -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "The input field %(name)s was not expected." +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Unable to add package to search index." -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Please enter an integer value" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Unable to update search index." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Resources" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Dataset has been deleted." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Package resource(s) invalid" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Unauthorised to delete package %s" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Extras" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Resource has been deleted." -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1052 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Tag vocabulary \"%s\" does not exist" - -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "User" +msgid "Unauthorized to delete resource %s" +msgstr "Unauthorised to delete resource %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Dataset" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Resource view not found" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Group" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Resource data not found" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Could not parse as valid JSON" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "No download is available" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Unauthorised to read dataset %s" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organisation does not exist" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Unauthorised to read resource %s" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "You cannot add a dataset to this organisation" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Unauthorised to edit resource" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Invalid integer" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "View not found" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Must be a natural number" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "View Type Not found" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Must be a postive integer" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Bad resource view data" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Date format incorrect" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Resource view not supplied" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "No links are allowed in the log_message." +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "No preview has been defined." -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Dataset id already exists" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "CKAN Repository Revision History" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Resource" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Recent changes to the CKAN repository." -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "That group name or ID does not exist." +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Datasets affected: %s.\n" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Activity type" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Revision updated" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Names must be strings" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Other" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "That name cannot be used" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Tag not found" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "Must be at least %s characters long" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Unauthorised to register as a user." -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Name must be a maximum of %i characters long" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Unauthorised to create a user" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Unauthorised to delete user with id \"{user_id}\"." -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "That URL is already in use." +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "No user specified" -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Name \"%s\" length is less than minimum %s" +msgid "Unauthorized to edit user %s" +msgstr "Unauthorised to edit user %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Name \"%s\" length is more than maximum %s" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "User not found" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Version must be a maximum of %i characters long" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profile updated" -#: ckan/logic/validators.py:393 +#: ckan/controllers/user.py:245 #, python-format -msgid "Duplicate key \"%s\"" -msgstr "Duplicate key \"%s\"" - -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Group name already exists in database" +msgid "Unauthorized to create user %s" +msgstr "Unauthorised to create user %s" -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Tag \"%s\" length is less than minimum %s" +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Bad Captcha. Please try again." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:265 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Tag \"%s\" length is more than maximum %i" +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/logic/validators.py:427 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "Tag \"%s\" must be alphanumeric characters or symbols: -_." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Unauthorised to edit a user." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:320 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Tag \"%s\" must not be uppercase" - -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "User names must be strings" - -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "That login name is not available." +msgid "User %s not authorized to edit %s" +msgstr "User %s not authorised to edit %s" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Please enter both passwords" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Password entered was incorrect" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Passwords must be strings" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Old Password" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Your password must be 4 characters or longer" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "incorrect password" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "The passwords you entered do not match" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Login failed. Bad username or password." -#: ckan/logic/validators.py:610 -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/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Unauthorised to request reset password." -#: ckan/logic/validators.py:619 +#: ckan/controllers/user.py:490 #, python-format -msgid "Name must be at least %s characters long" -msgstr "Name must be at least %s characters long" - -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "That vocabulary name is already in use." +msgid "\"%s\" matched several users" +msgstr "\"%s\" matched several users" -#: ckan/logic/validators.py:633 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, 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" +msgid "No such user: %s" +msgstr "No such user: %s" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Tag vocabulary was not found." +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Please check your inbox for a reset code." -#: ckan/logic/validators.py:655 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Tag %s does not belong to vocabulary %s" - -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "No tag name" +msgid "Could not send reset link: %s" +msgstr "Could not send reset link: %s" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Tag %s already belongs to vocabulary %s" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Unauthorised to reset password." -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Please provide a valid URL" - -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "role does not exist." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Invalid reset key. Please try again." -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Datasets with no organisation can't be private." +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Your password has been reset." -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Not a list" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Your password must be 4 characters or longer." -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Not a string" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "The passwords you entered do not match." -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "This parent would create a loop in the hierarchy" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "You must provide a password" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" and \"filter_values\" should have the same length" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Follow item not found" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" is required when \"filter_values\" is filled" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} not found" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" is required when \"filter_fields\" is filled" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Everything" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "There is a schema field with the same name" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Missing Value" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Create object %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Redirecting to external site is not allowed." -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Create package relationship: %s %s %s" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} added the tag {tag} to the dataset {dataset}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Create member object %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} updated the group {group}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Trying to create an organisation as a group" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} updated the organisation {organization}" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "You must supply a package id or name (parameter \"package\")." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} updated the dataset {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "You must supply a rating (parameter \"rating\")." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} changed the extra {extra} of the dataset {dataset}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Rating must be an integer value." +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} updated the resource {resource} in the dataset {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Rating must be between %i and %i." +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} updated their profile" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} deleted the group {group}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "You must be logged in to follow users" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} deleted the organisation {organization}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "You cannot follow yourself" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} deleted the dataset {dataset}" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "You are already following {0}" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} deleted the extra {extra} from the dataset {dataset}" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "You must be logged in to follow a dataset." +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} deleted the resource {resource} from the dataset {dataset}" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "User {username} does not exist." +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} created the group {group}" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "You must be logged in to follow a group." +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} created the organisation {organization}" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} created the dataset {dataset}" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Delete Package: %s" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} added the extra {extra} to the dataset {dataset}" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Delete %s" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} added the resource {resource} to the dataset {dataset}" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Delete Member: %s" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} signed up" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id not in data" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} removed the tag {tag} from the dataset {dataset}" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Could not find vocabulary \"%s\"" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} started following {dataset}" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Could not find tag \"%s\"" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} started following {user}" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "You must be logged in to unfollow something." +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} started following {group}" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "You are not following {0}." +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "View" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Resource was not found." +#: 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/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Do not specify if using \"query\" parameter" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "January" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Must be : pair(s)" +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "February" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Field \"{field}\" not recognised in resource_search." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "March" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Package was not found." +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "April" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Update object %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "May" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Update package relationship: %s %s %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "June" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus was not found." +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "July" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organisation was not found." +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "August" -#: 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/lib/formatters.py:51 +msgid "September" +msgstr "September" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "User %s not authorised to edit these groups" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "October" -#: 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/lib/formatters.py:59 +msgid "November" +msgstr "November" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "No dataset id provided, cannot check auth." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "December" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "No package found for this resource, cannot check auth." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Just now" -#: 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/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} minute ago" +msgstr[1] "{mins} minutes ago" -#: 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/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} hour ago" +msgstr[1] "{hours} hours ago" -#: 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/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} day ago" +msgstr[1] "{days} days ago" -#: 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/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} month ago" +msgstr[1] "{months} months ago" -#: 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/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "over {years} year ago" +msgstr[1] "over {years} years ago" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Not authorised to create users" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Group was not found." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Valid API key needed to create a package" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Valid API key needed to create a group" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "User %s not authorised to add members" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "User %s not authorised to edit group %s" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "Resource view not found, cannot check auth." +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: 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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: 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/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Not authorised" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: 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/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "User %s not authorised to read package %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Update your avatar at gravatar.com" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "User %s not authorised to read resource %s" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Unknown" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "User %s not authorised to read group %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Unnamed resource" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "You must be logged in to access your dashboard." +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Created new dataset." -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "User %s not authorised to edit package %s" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Edited resources." -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "User %s not authorised to edit resource %s" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Edited settings." -#: ckan/logic/auth/update.py:100 -#, 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} view" +msgstr[1] "{number} views" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "User %s not authorised to edit organisation %s" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} recent view" +msgstr[1] "{number} recent views" -#: ckan/logic/auth/update.py:145 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "User %s not authorised to change state of group %s" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/update.py:162 -#, 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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "No recipient email address available!" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Have to be logged in to edit user" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organisation" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "User %s not authorised to edit user %s" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "group" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "User {0} not authorised to update user {1}" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Missing value" -#: ckan/logic/auth/update.py:216 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to change state of revision" -msgstr "User %s not authorised to change state of revision" +msgid "The input field %(name)s was not expected." +msgstr "The input field %(name)s was not expected." -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "User %s not authorised to update task_status table" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Please enter an integer value" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "User %s not authorised to update term_translation table" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Valid API key needed to edit a package" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Package resource(s) invalid" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Valid API key needed to edit a group" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Extras" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "License not specified" +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Tag vocabulary \"%s\" does not exist" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Could not parse as valid JSON" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Organisation does not exist" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "You cannot add a dataset to this organisation" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Invalid integer" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Must be a natural number" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Must be a postive integer" -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Other (Open)" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Date format incorrect" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Other (Public Domain)" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "No links are allowed in the log_message." -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Other (Attribution)" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Dataset id already exists" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Resource" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "That group name or ID does not exist." -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Other (Non-Commercial)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Activity type" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Other (Not Open)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Names must be strings" -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "depends on %s" -msgstr "depends on %s" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "That name cannot be used" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:338 #, python-format -msgid "is a dependency of %s" -msgstr "is a dependency of %s" +msgid "Must be at least %s characters long" +msgstr "Must be at least %s characters long" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "derives from %s" -msgstr "derives from %s" +msgid "Name must be a maximum of %i characters long" +msgstr "Name must be a maximum of %i characters long" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:343 +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:361 +msgid "That URL is already in use." +msgstr "That URL is already in use." + +#: ckan/logic/validators.py:366 #, python-format -msgid "has derivation %s" -msgstr "has derivation %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Name \"%s\" length is less than minimum %s" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:370 #, python-format -msgid "links to %s" -msgstr "links to %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Name \"%s\" length is more than maximum %s" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:376 #, python-format -msgid "is linked from %s" -msgstr "is linked from %s" +msgid "Version must be a maximum of %i characters long" +msgstr "Version must be a maximum of %i characters long" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:394 #, python-format -msgid "is a child of %s" -msgstr "is a child of %s" +msgid "Duplicate key \"%s\"" +msgstr "Duplicate key \"%s\"" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Group name already exists in database" + +#: ckan/logic/validators.py:416 #, python-format -msgid "is a parent of %s" -msgstr "is a parent of %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Tag \"%s\" length is less than minimum %s" -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:420 #, python-format -msgid "has sibling %s" -msgstr "has sibling %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Tag \"%s\" length is more than maximum %i" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Loading..." +#: ckan/logic/validators.py:428 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Tag \"%s\" must be alphanumeric characters or symbols: -_." -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "There is no API data to load for this resource" +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tag \"%s\" must not be uppercase" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Failed to load data API information" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "User names must be strings" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "No matches found" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "That login name is not available." -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Start typing…" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Please enter both passwords" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Input is too short, must be at least one character" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Passwords must be strings" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "There are unsaved modifications to this form" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Your password must be 4 characters or longer" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Please Confirm Action" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "The passwords you entered do not match" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Are you sure you want to perform this action?" +#: ckan/logic/validators.py:611 +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/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Confirm" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Name must be at least %s characters long" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Cancel" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "That vocabulary name is already in use." -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Follow" +#: ckan/logic/validators.py:634 +#, 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/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Unfollow" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Tag vocabulary was not found." -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Upload" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Tag %s does not belong to vocabulary %s" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Link" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "No tag name" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Remove" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tag %s already belongs to vocabulary %s" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Image" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Please provide a valid URL" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "role does not exist." -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "File" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Datasets with no organisation can't be private." -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Upload a file on your computer" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Not a list" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/validators.py:750 +msgid "Not a string" +msgstr "Not a string" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Reorder resources" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "This parent would create a loop in the hierarchy" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Save order" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" and \"filter_values\" should have the same length" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Saving..." +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" is required when \"filter_values\" is filled" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Upload a file" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "An Error Occurred" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" is required when \"filter_fields\" is filled" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Resource uploaded" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "There is a schema field with the same name" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Unable to upload file" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Unable to authenticate upload" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Create object %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Unable to get data for uploaded file" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Create package relationship: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Create member object %s" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Reorder resource view" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Trying to create an organisation as a group" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Edit" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "You must supply a package id or name (parameter \"package\")." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Show more" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "You must supply a rating (parameter \"rating\")." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Hide" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Rating must be an integer value." -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/action/create.py:905 #, python-format -msgid "Error %(error_code)s" -msgstr "Error %(error_code)s" +msgid "Rating must be between %i and %i." +msgstr "Rating must be between %i and %i." -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "About {0}" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "You must be logged in to follow users" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "You cannot follow yourself" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "You are already following {0}" + +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +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:1402 +msgid "User {username} does not exist." +msgstr "User {username} does not exist." + +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +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:54 +msgid " Delete User: {0}" msgstr "" -"Powered by CKAN" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Sysadmin settings" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Delete Package: %s" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "View profile" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Delete %s" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:318 #, 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)" +msgid "REST API: Delete Member: %s" +msgstr "REST API: Delete Member: %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Dashboard" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id not in data" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Edit settings" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Could not find vocabulary \"%s\"" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Settings" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Could not find tag \"%s\"" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Log out" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "You must be logged in to unfollow something." -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Log in" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "You are not following {0}." -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Register" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Resource was not found." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Datasets" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Do not specify if using \"query\" parameter" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Search Datasets" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Must be : pair(s)" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Search" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Field \"{field}\" not recognised in resource_search." -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Skip to content" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Package was not found." -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Load less" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Update object %s" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Load more" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Update package relationship: %s %s %s" -#: 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/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus was not found." -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administration" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organisation was not found." -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Sysadmins" +#: 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/templates/admin/base.html:9 -msgid "Config" -msgstr "Config" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "User %s not authorised to edit these groups" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Trash" +#: 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/templates/admin/config.html:16 -#: 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/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "No dataset id provided, cannot check auth." -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Reset" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "No package found for this resource, cannot check auth." -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Update Config" +#: 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/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN config options" +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:119 #, 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" +msgid "User %s not authorized to create groups" +msgstr "User %s not authorised to create groups" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:129 #, 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

" +msgid "User %s not authorized to create organizations" +msgstr "User %s not authorised to create organisations" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Purge" +#: 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/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "

Purge deleted datasets forever and irreversibly.

" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Not authorised to create users" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Group was not found." -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "Access resource data via a web API with powerful query support" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Valid API key needed to create a package" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

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

" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Valid API key needed to create a group" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Endpoints" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "User %s not authorised to add members" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "User %s not authorised to edit group %s" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Create" +#: 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/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Update / Insert" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "Resource view not found, cannot check auth." -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Query" +#: 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/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Query (via SQL)" +#: 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Querying" +#: 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/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Query example (first 5 results)" +#: 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Query example (results containing 'jones')" +#: 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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Query example (via SQL statement)" +#: 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/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Example: Javascript" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Not authorised" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "A simple ajax (JSONP) request to the data API using jQuery." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "User %s not authorised to read these packages" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Example: Python" +#: 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/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/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/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Click here for more information." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "User %s not authorised to read group %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Download resource" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "You must be logged in to access your dashboard." -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Your browser does not support iframes." +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "User %s not authorised to edit package %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "No preview available." +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "User %s not authorised to edit resource %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "More details..." +#: ckan/logic/auth/update.py:100 +#, 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/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:128 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "No handler defined for data type: %(type)s." +msgid "User %s not authorized to edit organization %s" +msgstr "User %s not authorised to edit organisation %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Standard" +#: ckan/logic/auth/update.py:145 +#, 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/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Standard Input" +#: ckan/logic/auth/update.py:162 +#, 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/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Medium" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Have to be logged in to edit user" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Medium Width Input" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "User %s not authorised to edit user %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Full" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "User {0} not authorised to update user {1}" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Full Width Input" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "User %s not authorised to change state of revision" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Large" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "User %s not authorised to update task_status table" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Large Input" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "User %s not authorised to update term_translation table" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Prepend" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Valid API key needed to edit a package" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Prepend Input" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Valid API key needed to edit a group" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Custom Field (empty)" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "License not specified" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Custom Field" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Textarea" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Select" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Activity Stream" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: 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/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Add a Group" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Group Form" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Other (Open)" -#: 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/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Other (Public Domain)" -#: 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/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Other (Attribution)" -#: 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/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Manage" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Edit Group" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Other (Non-Commercial)" -#: 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/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Other (Not Open)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Followers" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "depends on %s" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "History" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "is a dependency of %s" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Add Group" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "derives from %s" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Search groups..." +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "has derivation %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Name Ascending" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "links to %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Name Descending" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "is linked from %s" -#: 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/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "is a child of %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "How about creating one?" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "is a parent of %s" -#: 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/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "has sibling %s" -#: 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/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "There is no API data to load for this resource" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Add Member" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Failed to load data API information" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Existing User" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Start typing…" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "If you wish to add an existing user, search for their username below." +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "No matches found" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "or" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "New User" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "There are unsaved modifications to this form" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "If you wish to invite a new user, enter their email address." +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Please Confirm Action" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Role" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Are you sure you want to perform this action?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Are you sure you want to delete this member?" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Confirm" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Delete" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:61 -msgid "Save" -msgstr "Save" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Unfollow" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "What are roles?" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Follow" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

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

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

" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Link" -#: 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/public/base/javascript/modules/image-upload.js:61 +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/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Update Group" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Upload" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Create Group" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Remove" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevance" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Upload a file on your computer" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Last Modified" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Popular" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "File" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Search datasets..." +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Save order" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Datasets in group: {group}" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Saving..." -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Recent Revision History" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Upload a file" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Name" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "An Error Occurred" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "My Group" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Unable to upload file" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "my-group" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Unable to authenticate upload" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Description" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Resource uploaded" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "A little information about my group..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Unable to get data for uploaded file" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Are you sure you want to delete this Group?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +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/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Save Group" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Add Filter" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} Dataset" -msgstr[1] "{num} Datasets" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Datasets" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Edit" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "View {name}" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Show more" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Remove dataset from this group" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Hide" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "What are Groups?" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Error %(error_code)s" -#: ckan/templates/group/snippets/helper.html:8 +#: 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 "" -" 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. " +"Powered by CKAN" 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. " +"Powered by CKAN" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Compare" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Sysadmin settings" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Deleted" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "View profile" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "read more" +#: ckan/templates/header.html:26 +#, 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/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Revision" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Dashboard" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Timestamp" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Edit settings" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Author" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Settings" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Log Message" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Log out" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Welcome" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Log in" -#: ckan/templates/home/snippets/about_text.html:1 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Register" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Datasets" + +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Search Datasets" + +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Search" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Skip to content" + +#: 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:29 +msgid "Trash" +msgstr "Trash" + +#: ckan/templates/admin/config.html:16 +#: 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:16 +msgid "Reset" +msgstr "Reset" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Update Config" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN config options" + +#: ckan/templates/admin/config.html:33 +#, python-format 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/

" +"

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 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/

" +"

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/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Welcome to CKAN" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Confirm Reset" -#: ckan/templates/home/snippets/promoted.html:10 +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administer CKAN" + +#: ckan/templates/admin/index.html:20 +#, python-format 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 " +"

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

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/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "This is a featured section" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Purge" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "E.g. environment" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "

Purge deleted datasets forever and irreversibly.

" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Search data" +#: 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/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Popular tags" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Click here for more information." -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} statistics" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Download resource" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "dataset" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "No preview available." -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "datasets" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "More details..." -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organisations" +#: 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/home/snippets/stats.html:23 -msgid "groups" -msgstr "groups" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" -"You can use Markdown formatting here" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standard Input" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "This field is required" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medium" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Custom" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Medium Width Input" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "The form contains invalid entries:" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Full" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Required field" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Full Width Input" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Large" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "Image URL" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Large Input" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Clear Upload" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Prepend" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Organisation Form" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Prepend Input" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Edit datasets" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Custom Field (empty)" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Add dataset" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Custom Field" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr " found for \"{query}\"" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Sorry no datasets found for \"{query}\"" +#: 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:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "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:7 +msgid "Add a Group" +msgstr "Add a Group" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Group Form" + +#: 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/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/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Make public" +#: 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/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Make private" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Manage" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Draft" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Edit Group" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Private" +#: ckan/templates/group/edit_base.html:23 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/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "This organisation has no datasets associated to it" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "History" -#: 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/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Add Group" -#: 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/group/index.html:20 +msgid "Search groups..." +msgstr "Search groups..." -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Add Organisation" +#: 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/organization/index.html:20 -msgid "Search organizations..." -msgstr "Search organisations..." +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "How about creating one?" -#: 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/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Back to all members" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Username" +#: ckan/templates/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/organization/member_new.html:50 -msgid "Email address" -msgstr "Email address" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Add Member" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "Update Member" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Existing User" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "If you wish to add an existing user, search for their username below." -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Create an Organisation" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "or" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Update Organisation" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "New User" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Create Organisation" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "If you wish to invite a new user, enter their email address." -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Add Dataset" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Role" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Datasets in organisation: {group}" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "What are Organisations?" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Delete" -#: 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/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "What are roles?" -#: ckan/templates/organization/snippets/helper.html:8 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

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

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

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

" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "my-organisation" +#: 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/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "A little information about my organisation..." +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Update Group" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" -"Are you sure you want to delete this Organisation? This will delete all the " -"public and private datasets belonging to this organisation." +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Create Group" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Save Organisation" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Search datasets..." -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "View {organization_name}" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Datasets in group: {group}" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Create Dataset" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Recent Revision History" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "What are datasets?" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Name" -#: 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/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "My Group" -#: 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/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "my-group" -#: 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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "A little information about my group..." -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "View dataset" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Are you sure you want to delete this Group?" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Edit metadata" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Save Group" -#: 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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "View {name}" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Preview" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Remove dataset from this group" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Update" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "What are Groups?" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Associate this group with this dataset" +#: 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/package/group_list.html:14 -msgid "Add to group" -msgstr "Add to group" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Compare" -#: 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/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Deleted" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Update Dataset" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "read more" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Add data to the dataset" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Revision" -#: 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/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Timestamp" -#: 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/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Author" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "New resource" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Log Message" -#: 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/home/index.html:4 +msgid "Welcome" +msgstr "Welcome" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/home/snippets/about_text.html:1 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"

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 "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"

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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Add" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Welcome to CKAN" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"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 an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Upload to DataStore" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Upload error:" +"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/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Error:" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "This is a featured section" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "E.g. environment" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Status" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Search data" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Last updated" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Popular tags" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Never" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistics" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Upload Log" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "dataset" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Details" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datasets" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "End of log" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisations" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "All resources" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "groups" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "View resource" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Edit resource" +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"You can use Markdown formatting here" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "This field is required" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Views" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Custom" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API Endpoint" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "The form contains invalid entries:" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Go to resource" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Required field" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Download" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "Image URL" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "From the dataset abstract" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Clear Upload" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "Source: %(dataset)s" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Organisation Form" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "There are no views created for this resource yet." +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Edit datasets" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Not seeing the views you were expecting?" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Add dataset" -#: ckan/templates/package/resource_read.html:121 -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/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr " found for \"{query}\"" -#: ckan/templates/package/resource_read.html:123 -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/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Sorry no datasets found for \"{query}\"" -#: ckan/templates/package/resource_read.html:124 -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/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Make public" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"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/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Make private" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Additional Information" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Draft" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Field" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Private" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Value" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "This organisation has no datasets associated to it" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "unknown" +#: 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/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Created" +#: 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/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Format" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Add Organisation" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "License" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Search organisations..." -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "New view" +#: 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/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "This resource has no views" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Username" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Add new resource" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email address" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Update Member" + +#: ckan/templates/organization/member_new.html:81 msgid "" -"

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

" +"

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 "" -"

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

" +"

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/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API Docs" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Create an Organisation" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "full {format} dump" +#: 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/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Add Dataset" + +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Datasets in organisation: {group}" -#: ckan/templates/package/search.html:56 -#, python-format +#: 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 "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " +"

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 "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " +"

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/package/search.html:60 -#, python-format +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " +" 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 "" -" 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 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/package/view_edit_base.html:12 -msgid "View view" -msgstr "View view" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "My Organisation" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "View preview" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "my-organisation" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Additional Info" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "A little information about my organisation..." -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Source" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Are you sure you want to delete this Organisation? This will delete all the " +"public and private datasets belonging to this organisation." -#: 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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Save Organisation" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Version" +#: 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/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "State" +#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Create Dataset" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Last Updated" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "What are datasets?" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: 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/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: 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/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." -msgstr "" +#: 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/snippets/cannot_create_package.html:19 -msgid "" -"Ask a system administrator to create an organization before you can " -"continue." -msgstr "" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "View dataset" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Data API" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Edit metadata" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Title" +#: 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/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "eg. A descriptive title" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Preview" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "eg. my-dataset" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Update" -#: 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/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Associate this group with this dataset" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "eg. economy, mental health, government" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Add to group" -#: ckan/templates/package/snippets/package_basic_fields.html:41 -msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" -" License definitions and additional information can be found at opendefinition.org " +#: ckan/templates/package/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/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organisation" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Update Dataset" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "No organisation" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Add data to the dataset" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Visibility" +#: 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/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Public" +#: 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/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Active" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "New resource" -#: ckan/templates/package/snippets/package_form.html:28 +#: 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 "" -"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." +" Data Explorer views may be slow and unreliable unless the DataStore " +"extension is enabled. For more information, please see the Data Explorer " +"documentation. " 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?" +" 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/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Next: Add Data" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Add" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "All resources" -#: 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/resource_edit_base.html:19 +msgid "View resource" +msgstr "View resource" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Author Email" +#: 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/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/resource_edit_base.html:26 +msgid "Views" +msgstr "Views" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Maintainer Email" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API Endpoint" -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Update Resource" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Go to resource" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" -msgstr "" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Download" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "eg. January 2011 Gold Prices" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "From the dataset abstract" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Some useful notes about the data" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Source: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "eg. CSV, XML or JSON" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "There are no views created for this resource yet." -#: ckan/templates/package/snippets/resource_form.html:40 -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/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Not seeing the views you were expecting?" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "eg. 2012-06-05" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_form.html:53 -msgid "File Size" -msgstr "File Size" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "eg. 1024" +#: ckan/templates/package/resource_read.html:121 +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/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME Type" +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "eg. application/json" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Additional Information" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Are you sure you want to delete this resource?" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Field" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Previous" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Value" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Save & add another" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Finish" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "unknown" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "What's a resource?" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +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 "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Created" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Explore" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Format" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "More information" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "License" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Embed" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "New view" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "This resource view is not available at the moment." +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "This resource has no views" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Embed resource view" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Add new resource" -#: ckan/templates/package/snippets/resource_view.html:66 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, python-format msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +"

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

" msgstr "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" - -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Width" - -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Height" - -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Code" +"

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

" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Resource Preview" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Data and Resources" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API Docs" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "This dataset has no data" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "full {format} dump" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/search.html:56 #, python-format -msgid "Read dataset as of %s" -msgstr "Read dataset as of %s" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Create dataset" +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/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/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/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "eg. My View" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "All views" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "eg. Information about my view" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "View view" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Add Filter" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "View preview" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Remove Filter" +#: 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/view_form_filters.html:46 -msgid "Filters" -msgstr "Filters" +#: 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/view_help.html:2 -msgid "What's a view?" -msgstr "What's a view?" +#: 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/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/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Version" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Differences" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "State" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Revision Differences" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Last Updated" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Difference" +#: 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/revision/diff.html:54 -msgid "No Differences" -msgstr "No Differences" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Revision History" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Revisions" +#: 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/revision/read.html:30 -msgid "Undelete" -msgstr "Undelete" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Title" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Changes" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "eg. A descriptive title" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Datasets' Tags" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "eg. my-dataset" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entity" +#: 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/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "New activity item" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "eg. economy, mental health, government" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Embed Data Viewer" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +" License definitions and additional information can be found at opendefinition.org " -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Embed this view by copying this into your webpage:" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisation" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Choose width and height in pixels:" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "No organisation" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Width:" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Visibility" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Height:" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Public" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Datapusher status: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Active" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Trackback URL" +#: 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/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Show More {facet_type}" +#: 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/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Show Only Popular {facet_type}" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Next: Add Data" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "There are no {facet_type} that match this search" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Home" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Language" +#: 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/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Go" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Author Email" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "No License Provided" +#: 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/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "This dataset satisfies the Open Definition." +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Maintainer Email" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "There is no description for this organisation" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Update Resource" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "This dataset has no description" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Submit" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Order by" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "eg. January 2011 Gold Prices" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filter Results" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Some useful notes about the data" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Please try another search.

" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "eg. CSV, XML or JSON" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "This will be guessed automatically. Leave blank if you wish" -#: 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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "eg. 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "No datasets found for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "File Size" -#: 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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "eg. 1024" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "No datasets found" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME Type" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "eg. application/json" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "No groups found for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Are you sure you want to delete this resource?" -#: 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/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Previous" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "No groups found" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Save & add another" -#: 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/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Finish" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "No organisations found for \"{query}\"" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "What's a resource?" -#: 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/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/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "No organisations found" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Explore" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Social" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "More information" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Subscribe" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Embed" -#: 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:82 -msgid "Email" -msgstr "Email" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "This resource view is not available at the moment." -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Embed resource view" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Edits" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Search Tags" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Width" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "News feed" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Height" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "My Datasets" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Code" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "My Organisations" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Resource Preview" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "My Groups" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Data and Resources" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Activity from items that I'm following" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "This dataset has no data" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "You haven't created any datasets." +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Read dataset as of %s" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Create one now?" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Create dataset" -#: 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/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/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "You are not a member of any organisations." +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "eg. My View" -#: 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/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "eg. Information about my view" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Account Info" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Remove Filter" -#: 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/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "What's a view?" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Change details" +#: 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/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Full name" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Differences" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "eg. Joe Bloggs" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Revision Differences" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "eg. joe@example.com" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Difference" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "A little information about yourself" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "No Differences" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Subscribe to notification emails" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Revision History" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Change password" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Revisions" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Undelete" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Password" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Changes" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Confirm Password" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Datasets' Tags" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Are you sure you want to delete this User?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entity" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "Are you sure you want to regenerate the API key?" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "New activity item" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Regenerate API Key" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Embed Data Viewer" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Update Profile" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Embed this view by copying this into your webpage:" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "All Users" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Choose width and height in pixels:" -#: 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/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Width:" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Need an Account?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Height:" -#: 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/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher status: {status}." -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Create an Account" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Forgotten your password?" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Show More {facet_type}" -#: 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/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Show Only Popular {facet_type}" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Forgot your password?" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "There are no {facet_type} that match this search" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Logged Out" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Home" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "You are now logged out." +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Language" -#: 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/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Go" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Logout" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "No License Provided" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Remember me" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "This dataset satisfies the Open Definition." -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "You're already logged in" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "There is no description for this organisation" -#: ckan/templates/user/logout_first.html:24 -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/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "This dataset has no description" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Log out now" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Submit" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Registration" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Order by" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Register for an Account" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filter Results" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Why Sign Up?" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Please try another search.

" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "Create datasets, groups and other exciting things" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "username" +#: 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/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Full Name" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "No datasets found for \"{query}\"" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Create Account" +#: 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/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Reset Your Password" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "No datasets found" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Password Reset" +#: 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/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Update Password" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "No groups found for \"{query}\"" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "How does this work?" +#: 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/user/perform_reset.html:40 -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/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "No groups found" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "User hasn't created any datasets." +#: 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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "You have not provided a biography." +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "No organisations found for \"{query}\"" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "This user has no biography." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "No organisations found" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "This means only you can see this" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Member Since" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Subscribe" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API Key" +#: 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:82 +msgid "Email" +msgstr "Email" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Reset your password" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Password reset" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Edits" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Request reset" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Search Tags" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "News feed" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Activity from:" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "My Datasets" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Search list..." +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "My Organisations" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "You are not following anything" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "My Groups" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "No followers" +#: 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/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Search Users" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "You haven't created any datasets." -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Complete" +#: 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:16 +msgid "Create one now?" +msgstr "Create one now?" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Pending" +#: 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." -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Submitting" +#: 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." -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Not Uploaded Yet" +#: 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" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "DataStore resource not found" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Account Info" -#: ckanext/datastore/db.py:663 +#: ckan/templates/user/edit.html:19 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -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/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Datasets per page" +" Your profile lets other CKAN users know about who you are and what you do. " -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Test conf" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Change details" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Custom Field Ascending" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Full name" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Custom Field Descending" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "eg. Joe Bloggs" -#: 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" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "eg. joe@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "custom text" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "A little information about yourself" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Country Code" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Subscribe to notification emails" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "custom resource text" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Change password" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "This group has no description" - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "CKAN's data previewing tool has many powerful features" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "Image url" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Password" -#: 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)" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Confirm Password" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Data Explorer" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Are you sure you want to delete this User?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Table" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Are you sure you want to regenerate the API key?" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Graph" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Regenerate API Key" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Map" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Update Profile" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "All Users" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "Row offset" +#: 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" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "eg: 0" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Need an Account?" -#: 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" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "eg: 100" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Create an Account" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Graph type" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Forgotten your password?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Group (Axis 1)" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Series (Axis 2)" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Forgot your password?" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Field type" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Logged Out" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Latitude field" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "You are now logged out." -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Longitude field" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "You're already logged in as {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "GeoJSON field" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Logout" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Auto zoom to features" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Remember me" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Cluster markers" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "You're already logged in" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Total number of Datasets" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Date" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Log out now" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Total datasets" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registration" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Dataset Revisions per Week" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Register for an Account" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "All dataset revisions" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Why Sign Up?" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "New datasets" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Create datasets, groups and other exciting things" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Top Rated Datasets" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "username" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Average rating" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Full Name" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Number of ratings" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Create Account" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "No ratings" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Reset Your Password" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Most Edited Datasets" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Password Reset" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Number of edits" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Update Password" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "No edited datasets" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "How does this work?" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Largest Groups" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Simply enter a new password and we'll update your account" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Number of datasets" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "User hasn't created any datasets." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "No groups" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "You have not provided a biography." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Top Tags" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "This user has no biography." -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Tag Name" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Number of Datasets" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "This means only you can see this" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Member Since" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Statistics Menu" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API Key" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Total Number of Datasets" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Reset your password" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Text" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Password reset" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Request reset" + +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Website" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Activity from:" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "Web Page url" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Search list..." -#: 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/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" diff --git a/ckan/i18n/en_GB/LC_MESSAGES/ckan.mo b/ckan/i18n/en_GB/LC_MESSAGES/ckan.mo index bd24d5e41f3..cd67f81c546 100644 Binary files a/ckan/i18n/en_GB/LC_MESSAGES/ckan.mo and b/ckan/i18n/en_GB/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/en_GB/LC_MESSAGES/ckan.po b/ckan/i18n/en_GB/LC_MESSAGES/ckan.po index d2c2348700f..a88fee88d56 100644 --- a/ckan/i18n/en_GB/LC_MESSAGES/ckan.po +++ b/ckan/i18n/en_GB/LC_MESSAGES/ckan.po @@ -1,4569 +1,4665 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Authorisation function not found: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Complete" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Admin" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pending" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Editor" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Submitting" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Member" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Error" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Need to be system administrator to administer" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Not Uploaded Yet" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Site Title" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Resource not found" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Style" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Not authorised to see this page" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Site Tag Line" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Upload to DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Site Tag Logo" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Upload error:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Error:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "About page text" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Error traceback:" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Intro Text" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Text on home page" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Last updated" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Custom CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Never" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Customisable css inserted into the page header" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Upload Log" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Homepage" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Details" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "End of log" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "format: must be one of %s" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "DataStore resource not found" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Problem purging revision %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Resource \"{0}\" was not found." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Purge complete" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "User {0} not authorised to update resource {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Action not implemented." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Not authorised to see this page" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "Access resource data via a web API with powerful query support" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Access denied" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

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

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Not found" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Endpoints" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Bad request" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Action name not known: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Create" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON Error: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Update / Insert" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Bad request data: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Query" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Cannot list entity of this type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Query (via SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Cannot read entity of this type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Querying" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Cannot create new entity of this type: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Query example (first 5 results)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Unable to add package to search index" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Query example (results containing 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Cannot update entity of this type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Query example (via SQL statement)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Unable to update search index" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Example: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Cannot delete entity of this type: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "A simple ajax (JSONP) request to the data API using jQuery." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "No revision specified" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Example: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "There is no revision with id: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "Field {num}." -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Label" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Could not read parameters: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Description" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Bad search option: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Save" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Unknown register: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Data Dictionary" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Malformed qjson value: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Column" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Request params must be in form of a json encoded dictionary." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "Type" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Group not found" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Loading..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organisation not found" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Data API" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Incorrect group type" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Table" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organisations" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Responsive display" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Groups" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Show Columns" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Tags" - -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formats" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "Hide/Unhide Columns" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licenses" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datasets per page" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Not authorised to perform bulk update" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Test conf" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Unauthorised to create a group" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevance" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "User %r not authorised to edit %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Integrity Error" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "User %r not authorised to edit %s authorisations" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Last Modified" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Unauthorised to delete group %s" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Custom Field Ascending" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organisation has been deleted." +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Custom Field Descending" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Group has been deleted." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Popular" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s has been deleted." +#: 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" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Unauthorised to add member to group %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "custom text" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Unauthorised to delete group %s members" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Country Code" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Group member has been deleted." +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "custom resource text" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Select two revisions before doing the comparison." +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "This is an untranslated string" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "CKAN Group Revision History" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Recent changes to CKAN Group: " +#: 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/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Log message: " +#: 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" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "You are now following {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's data previewing tool has many powerful features" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "You are no longer following {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Followers" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Unauthorised to view followers %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resources" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "This site is currently off-line. Database is not initialised." +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Image" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" -"Please update your profile and add your email address. " +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Image url" -#: ckan/controllers/home.py:83 -#, 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." +#: 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)" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "Invalid search query: {error_message}" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Data Explorer" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parameter \"{parameter_name}\" is not an integer" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Graph" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Dataset not found" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Map" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Invalid revision format: %r" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "error loading view" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "Could not load view" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Unauthorised to read package %s" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "DataStore returned an error" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "CKAN Dataset Revision History" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "DataProxy returned an error" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Recent changes to CKAN Dataset: " +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "Grid" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Unauthorised to create a package" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filters" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Unauthorised to edit this resource" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Row offset" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Resource not found" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "eg: 0" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Unauthorised to update dataset" +#: 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" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "The dataset {id} could not be found." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "eg: 100" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "You must add at least one data resource" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Graph type" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Error" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Group (Axis 1)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Unauthorised to create a resource" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Series (Axis 2)" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Unauthorised to create a resource for this package" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Field type" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Unable to add package to search index." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Latitude field" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Unable to update search index." +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Longitude field" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Dataset has been deleted." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON field" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Unauthorised to delete package %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Auto zoom to features" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Resource has been deleted." +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Cluster markers" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Unauthorised to delete resource %s" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Total number of Datasets" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Resource view not found" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Date" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Resource data not found" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Total datasets" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "No download is available" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Dataset Revisions per Week" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Unauthorised to read dataset %s" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "All dataset revisions" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Unauthorised to read resource %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "New datasets" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Unauthorised to edit resource" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Top Rated Datasets" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "View not found" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Average rating" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "View Type Not found" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Number of ratings" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Bad resource view data" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "No ratings" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Resource view not supplied" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Most Edited Datasets" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "No preview has been defined." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Dataset" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "CKAN Repository Revision History" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Number of edits" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Recent changes to the CKAN repository." +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "No edited datasets" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Datasets affected: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Largest Groups" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Revision updated" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Group" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Other" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Number of datasets" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Tag not found" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "No groups" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "User not found" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Top Tags" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Unauthorised to register as a user." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Tag Name" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Unauthorised to create a user" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Number of Datasets" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Unauthorised to delete user with id \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "Users Creating Most Datasets" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "No user specified" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "User" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Unauthorised to edit user %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Statistics Menu" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profile updated" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Total Number of Datasets" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Unauthorised to create user %s" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Text" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Bad Captcha. Please try again." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Website" -#: ckan/controllers/user.py:265 -#, 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" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Web Page url" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Unauthorised to edit a user." +#: 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/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "User %s not authorised to edit %s" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Your browser does not support iframes." -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Password entered was incorrect" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Authorisation function not found: %s" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Old Password" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Admin" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "incorrect password" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Editor" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Login failed. Bad username or password." +#: ckan/authz.py:202 +msgid "Member" +msgstr "Member" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Unauthorised to request reset password." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Need to be system administrator to administer" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" matched several users" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Site Title" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "No such user: %s" - -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Please check your inbox for a reset code." +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Style" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Could not send reset link: %s" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Site Tag Line" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Unauthorised to reset password." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Site Tag Logo" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Invalid reset key. Please try again." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:541 -msgid "Your password has been reset." -msgstr "Your password has been reset." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "About page text" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Your password must be 4 characters or longer." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Intro Text" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "The passwords you entered do not match." +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Text on home page" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "You must provide a password" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Custom CSS" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Follow item not found" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Customisable css inserted into the page header" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} not found" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Homepage" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Everything" +#: ckan/controllers/admin.py:161 +#, 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/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Missing Value" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problem purging revision %s: %s" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Redirecting to external site is not allowed." +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Purge complete" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} added the tag {tag} to the dataset {dataset}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Action not implemented." -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} updated the group {group}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Access denied" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} updated the organisation {organization}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Not found" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} updated the dataset {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Bad request" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} changed the extra {extra} of the dataset {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Action name not known: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} updated the resource {resource} in the dataset {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Error: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} updated their profile" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Bad request data: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} deleted the group {group}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Cannot list entity of this type: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} deleted the organisation {organization}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Cannot read entity of this type: %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} deleted the dataset {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Cannot create new entity of this type: %s %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} deleted the extra {extra} from the dataset {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Unable to add package to search index" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} deleted the resource {resource} from the dataset {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Cannot update entity of this type: %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} created the group {group}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Unable to update search index" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} created the organisation {organization}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Cannot delete entity of this type: %s %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} created the dataset {dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "No revision specified" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} added the extra {extra} to the dataset {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "There is no revision with id: %s" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} added the resource {resource} to the dataset {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} signed up" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Could not read parameters: %r" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} removed the tag {tag} from the dataset {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Bad search option: %s" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} started following {dataset}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Unknown register: %s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} started following {user}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Malformed qjson value: %r" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} started following {group}" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Request params must be in form of a json encoded dictionary." -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "View" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Group not found" -#: 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/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organisation not found" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "January" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Incorrect group type" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "February" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organisations" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "March" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Groups" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "April" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Tags" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "May" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formats" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "June" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licenses" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "July" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "User %r not authorised to edit %s" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "August" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Not authorised to perform bulk update" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "September" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Unauthorised to create a group" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "October" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Integrity Error" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "November" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "User %r not authorised to edit %s authorisations" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "December" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Unauthorised to delete group %s" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Just now" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organisation has been deleted." -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} minute ago" -msgstr[1] "{mins} minutes ago" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Group has been deleted." -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} hour ago" -msgstr[1] "{hours} hours ago" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s has been deleted." -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} day ago" -msgstr[1] "{days} days ago" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "User %r not authorised to edit members of %s" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} month ago" -msgstr[1] "{months} months ago" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Unauthorised to add member to group %s" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "over {years} year ago" -msgstr[1] "over {years} years ago" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Unauthorised to delete group %s members" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Group member has been deleted." -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Select two revisions before doing the comparison." -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "CKAN Group Revision History" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Recent changes to CKAN Group: " -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Log message: " -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "You are now following {0}" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "You are no longer following {0}" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Unauthorised to view followers %s" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: 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/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Please update your profile and add your email address. " -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "Invalid search query: {error_message}" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parameter \"{parameter_name}\" is not an integer" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Dataset not found" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Invalid revision format: %r" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:396 +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/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Update your avatar at gravatar.com" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Unauthorised to read package %s" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Unknown" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "CKAN Dataset Revision History" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Unnamed resource" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Recent changes to CKAN Dataset: " -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Created new dataset." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Unauthorised to create a package" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Edited resources." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Unauthorised to edit this resource" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Edited settings." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Unauthorised to update dataset" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} view" -msgstr[1] "{number} views" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "The dataset {id} could not be found." -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} recent view" -msgstr[1] "{number} recent views" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "You must add at least one data resource" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Unauthorised to create a resource" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "No recipient email address available!" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Unauthorised to create a resource for this package" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organisation" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Unable to add package to search index." -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "group" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Unable to update search index." -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Missing value" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Dataset has been deleted." -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "The input field %(name)s was not expected." +msgid "Unauthorized to delete package %s" +msgstr "Unauthorised to delete package %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Please enter an integer value" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Resource has been deleted." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Resources" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Unauthorised to delete resource %s" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Package resource(s) invalid" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Resource view not found" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Extras" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Resource data not found" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Tag vocabulary \"%s\" does not exist" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "No download is available" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "User" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Unauthorised to read dataset %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Dataset" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Unauthorised to read resource %s" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Group" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Unauthorised to edit resource" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Could not parse as valid JSON" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "View not found" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "An organisation must be provided" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "View Type Not found" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organisation does not exist" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Bad resource view data" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "You cannot add a dataset to this organisation" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Resource view not supplied" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Invalid integer" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "No preview has been defined." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Must be a natural number" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "CKAN Repository Revision History" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Must be a postive integer" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Recent changes to the CKAN repository." -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Date format incorrect" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Datasets affected: %s.\n" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "No links are allowed in the log_message." +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Revision updated" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Dataset id already exists" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Other" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Resource" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Tag not found" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "That group name or ID does not exist." +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Unauthorised to register as a user." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Activity type" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Unauthorised to create a user" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Names must be strings" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Unauthorised to delete user with id \"{user_id}\"." -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "That name cannot be used" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "No user specified" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Must be at least %s characters long" -msgstr "Must be at least %s characters long" +msgid "Unauthorized to edit user %s" +msgstr "Unauthorised to edit user %s" + +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "User not found" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profile updated" + +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Name must be a maximum of %i characters long" +msgid "Unauthorized to create user %s" +msgstr "Unauthorised to create user %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Bad Captcha. Please try again." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "That URL is already in use." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Unauthorised to edit a user." -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Name \"%s\" length is less than minimum %s" +msgid "User %s not authorized to edit %s" +msgstr "User %s not authorised to edit %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Name \"%s\" length is more than maximum %s" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Password entered was incorrect" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Version must be a maximum of %i characters long" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Old Password" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Duplicate key \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "incorrect password" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Group name already exists in database" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Login failed. Bad username or password." -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Tag \"%s\" length is less than minimum %s" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Unauthorised to request reset password." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Tag \"%s\" length is more than maximum %i" +msgid "\"%s\" matched several users" +msgstr "\"%s\" matched several users" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgid "No such user: %s" +msgstr "No such user: %s" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Tag \"%s\" must not be uppercase" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Please check your inbox for a reset code." -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "User names must be strings" +#: ckan/controllers/user.py:503 +#, python-format +msgid "Could not send reset link: %s" +msgstr "Could not send reset link: %s" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "That login name is not available." +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Unauthorised to reset password." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Please enter both passwords" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Invalid reset key. Please try again." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Passwords must be strings" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Your password has been reset." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Your password must be 4 characters or longer" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Your password must be 4 characters or longer." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "The passwords you entered do not match" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "The passwords you entered do not match." -#: ckan/logic/validators.py:610 -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/controllers/user.py:568 +msgid "You must provide a password" +msgstr "You must provide a password" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Name must be at least %s characters long" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Follow item not found" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "That vocabulary name is already in use." +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} not found" -#: ckan/logic/validators.py:633 -#, 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/controllers/user.py:654 +msgid "Everything" +msgstr "Everything" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Tag vocabulary was not found." +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Missing Value" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Tag %s does not belong to vocabulary %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Redirecting to external site is not allowed." -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "No tag name" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} added the tag {tag} to the dataset {dataset}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Tag %s already belongs to vocabulary %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} updated the group {group}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Please provide a valid URL" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} updated the organisation {organization}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "role does not exist." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} updated the dataset {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Datasets with no organisation can't be private." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} changed the extra {extra} of the dataset {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Not a list" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} updated the resource {resource} in the dataset {dataset}" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Not a string" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} updated their profile" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "This parent would create a loop in the hierarchy" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} deleted the group {group}" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" and \"filter_values\" should have the same length" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} deleted the organisation {organization}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" is required when \"filter_values\" is filled" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} deleted the dataset {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" is required when \"filter_fields\" is filled" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} deleted the extra {extra} from the dataset {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "There is a schema field with the same name" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} deleted the resource {resource} from the dataset {dataset}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Create object %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} created the group {group}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Create package relationship: %s %s %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} created the organisation {organization}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Create member object %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} created the dataset {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Trying to create an organisation as a group" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} added the extra {extra} to the dataset {dataset}" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "You must supply a package id or name (parameter \"package\")." +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} added the resource {resource} to the dataset {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "You must supply a rating (parameter \"rating\")." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} signed up" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Rating must be an integer value." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} removed the tag {tag} from the dataset {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Rating must be between %i and %i." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} started following {dataset}" -#: ckan/logic/action/create.py:1052 -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/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} started following {user}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "You must be logged in to follow users" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} started following {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "You cannot follow yourself" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "View" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "You are already following {0}" +#: 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/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "You must be logged in to follow a dataset." +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "January" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "User {username} does not exist." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "February" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "You must be logged in to follow a group." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "March" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr " Delete User: {0}" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "April" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Delete Package: %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "May" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Delete %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "June" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Delete Member: %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "July" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id not in data" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "August" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Could not find vocabulary \"%s\"" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "September" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Could not find tag \"%s\"" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "October" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "You must be logged in to unfollow something." +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "November" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "You are not following {0}." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "December" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Resource was not found." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Just now" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Do not specify if using \"query\" parameter" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} minute ago" +msgstr[1] "{mins} minutes ago" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Must be : pair(s)" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} hour ago" +msgstr[1] "{hours} hours ago" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Field \"{field}\" not recognised in resource_search." +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} day ago" +msgstr[1] "{days} days ago" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Package was not found." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} month ago" +msgstr[1] "{months} months ago" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Update object %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "over {years} year ago" +msgstr[1] "over {years} years ago" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Update package relationship: %s %s %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus was not found." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organisation was not found." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: 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/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "User %s not authorised to edit these groups" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: 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/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "No dataset id provided, cannot check auth." +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "No package found for this resource, cannot check auth." +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: 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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Not authorised to create users" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Group was not found." +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Valid API key needed to create a package" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Valid API key needed to create a group" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Update your avatar at gravatar.com" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "User %s not authorised to add members" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Unknown" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "User %s not authorised to edit group %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Unnamed resource" -#: 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/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Created new dataset." -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "Resource view not found, cannot check auth." +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Edited resources." -#: 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/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Edited settings." -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} view" +msgstr[1] "{number} views" -#: 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/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} recent view" +msgstr[1] "{number} recent views" -#: ckan/logic/auth/delete.py:103 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organizations" -msgstr "User %s not authorised to delete organisations" +msgid "%s <%s>" +msgstr "%s <%s>" -#: 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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "No recipient email address available!" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organisation" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Not authorised" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "group" -#: 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/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Missing value" -#: ckan/logic/auth/get.py:130 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read package %s" -msgstr "User %s not authorised to read package %s" +msgid "The input field %(name)s was not expected." +msgstr "The input field %(name)s was not expected." -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "User %s not authorised to read resource %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Please enter an integer value" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "User %s not authorised to read group %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "Must be a Unicode string value" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "You must be logged in to access your dashboard." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Package resource(s) invalid" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "User %s not authorised to edit package %s" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Extras" -#: ckan/logic/auth/update.py:71 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "User %s not authorised to edit resource %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Tag vocabulary \"%s\" does not exist" -#: ckan/logic/auth/update.py:100 -#, 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/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Could not parse as valid JSON" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "User %s not authorised to edit organisation %s" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "An organisation must be provided" -#: ckan/logic/auth/update.py:145 -#, 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/validators.py:47 +msgid "Organization does not exist" +msgstr "Organisation does not exist" -#: ckan/logic/auth/update.py:162 -#, 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/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "You cannot add a dataset to this organisation" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Have to be logged in to edit user" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Invalid integer" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "User %s not authorised to edit user %s" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Must be a natural number" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "User {0} not authorised to update user {1}" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Must be a postive integer" -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "User %s not authorised to change state of revision" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Date format incorrect" -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "User %s not authorised to update task_status table" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "No links are allowed in the log_message." -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "User %s not authorised to update term_translation table" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Dataset id already exists" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Valid API key needed to edit a package" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Resource" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Valid API key needed to edit a group" - -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "License not specified" - -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" - -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" - -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" - -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" - -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" - -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "That group name or ID does not exist." -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Other (Open)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Activity type" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Other (Public Domain)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Names must be strings" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Other (Attribution)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "That name cannot be used" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Must be at least %s characters long" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Name must be a maximum of %i characters long" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Other (Non-Commercial)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Other (Not Open)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "That URL is already in use." -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "depends on %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Name \"%s\" length is less than minimum %s" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "is a dependency of %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Name \"%s\" length is more than maximum %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "derives from %s" +msgid "Version must be a maximum of %i characters long" +msgstr "Version must be a maximum of %i characters long" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "has derivation %s" +msgid "Duplicate key \"%s\"" +msgstr "Duplicate key \"%s\"" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "links to %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Group name already exists in database" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "is linked from %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Tag \"%s\" length is less than minimum %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "is a child of %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Tag \"%s\" length is more than maximum %i" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "is a parent of %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Tag \"%s\" must be alphanumeric characters or symbols: -_." -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "has sibling %s" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Loading..." +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tag \"%s\" must not be uppercase" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "There is no API data to load for this resource" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "User names must be strings" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Failed to load data API information" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "That login name is not available." -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "No matches found" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Please enter both passwords" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Start typing…" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Passwords must be strings" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Input is too short, must be at least one character" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Your password must be 4 characters or longer" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "There are unsaved modifications to this form" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "The passwords you entered do not match" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Please Confirm Action" +#: ckan/logic/validators.py:611 +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/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Are you sure you want to perform this action?" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Name must be at least %s characters long" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Confirm" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "That vocabulary name is already in use." -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Cancel" +#: ckan/logic/validators.py:634 +#, 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/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Follow" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Tag vocabulary was not found." -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Unfollow" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Tag %s does not belong to vocabulary %s" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Upload" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "No tag name" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Link" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tag %s already belongs to vocabulary %s" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Remove" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Please provide a valid URL" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Image" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "role does not exist." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Datasets with no organisation can't be private." -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "File" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Not a list" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Upload a file on your computer" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Not a string" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "This parent would create a loop in the hierarchy" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Reorder resources" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" and \"filter_values\" should have the same length" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Save order" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" is required when \"filter_values\" is filled" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Saving..." +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" is required when \"filter_fields\" is filled" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Upload a file" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "There is a schema field with the same name" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "An Error Occurred" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "Email {email} is not a valid format" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Resource uploaded" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Create object %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Unable to upload file" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Create package relationship: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Unable to authenticate upload" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Create member object %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Unable to get data for uploaded file" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Trying to create an organisation as a group" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "You must supply a package id or name (parameter \"package\")." -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Reorder resource view" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "You must supply a rating (parameter \"rating\")." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Edit" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Rating must be an integer value." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Show more" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Rating must be between %i and %i." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Hide" +#: ckan/logic/action/create.py:1064 +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/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Error %(error_code)s" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "You must be logged in to follow users" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "About {0}" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "You cannot follow yourself" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "You are already following {0}" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "CKAN Association" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "You must be logged in to follow a dataset." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "User {username} does not exist." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Sysadmin settings" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "You must be logged in to follow a group." -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "View profile" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr " Delete User: {0}" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:92 #, 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)" +msgid "REST API: Delete Package: %s" +msgstr "REST API: Delete Package: %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Dashboard" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Delete %s" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Edit settings" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Delete Member: %s" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Settings" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id not in data" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Log out" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Could not find vocabulary \"%s\"" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Log in" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Could not find tag \"%s\"" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Register" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "You must be logged in to unfollow something." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Datasets" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "You are not following {0}." -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Search Datasets" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Resource was not found." -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Search" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Do not specify if using \"query\" parameter" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Skip to content" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Must be : pair(s)" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Load less" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Field \"{field}\" not recognised in resource_search." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Load more" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Package was not found." -#: 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/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Update object %s" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administration" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Update package relationship: %s %s %s" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Sysadmins" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus was not found." -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Config" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organisation was not found." -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Trash" +#: 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/templates/admin/config.html:16 -#: 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/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "User %s not authorised to edit these groups" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Reset" +#: 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/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Update Config" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "No dataset id provided, cannot check auth." -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN config options" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "No package found for this resource, cannot check auth." -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:76 #, 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.

" +msgid "User %s not authorized to create resources on dataset %s" +msgstr "User %s not authorised to create resources on dataset %s" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Confirm Reset" +#: 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/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Administer CKAN" +#: 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/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:129 #, 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

" +msgid "User %s not authorized to create organizations" +msgstr "User %s not authorised to create organisations" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Purge" +#: 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/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "

Purge deleted datasets forever and irreversibly.

" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Not authorised to create users" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Group was not found." -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "Access resource data via a web API with powerful query support" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Valid API key needed to create a package" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

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

" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Valid API key needed to create a group" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Endpoints" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "User %s not authorised to add members" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "User %s not authorised to edit group %s" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Create" +#: 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/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Update / Insert" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "Resource view not found, cannot check auth." -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Query" +#: 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/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Query (via SQL)" +#: 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Querying" +#: 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/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Query example (first 5 results)" +#: 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Query example (results containing 'jones')" +#: 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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Query example (via SQL statement)" +#: 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/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Example: Javascript" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Not authorised" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "A simple ajax (JSONP) request to the data API using jQuery." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "User %s not authorised to read these packages" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Example: Python" +#: 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/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/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/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Click here for more information." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "User %s not authorised to read group %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Download resource" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "You must be logged in to access your dashboard." -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Your browser does not support iframes." +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "User %s not authorised to edit package %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "No preview available." +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "User %s not authorised to edit resource %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "More details..." +#: ckan/logic/auth/update.py:100 +#, 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/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:128 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "No handler defined for data type: %(type)s." +msgid "User %s not authorized to edit organization %s" +msgstr "User %s not authorised to edit organisation %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Standard" +#: ckan/logic/auth/update.py:145 +#, 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/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Standard Input" +#: ckan/logic/auth/update.py:162 +#, 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/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Medium" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Have to be logged in to edit user" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Medium Width Input" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "User %s not authorised to edit user %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Full" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "User {0} not authorised to update user {1}" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Full Width Input" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "User %s not authorised to change state of revision" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Large" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "User %s not authorised to update task_status table" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Large Input" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "User %s not authorised to update term_translation table" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Prepend" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Valid API key needed to edit a package" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Prepend Input" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Valid API key needed to edit a group" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Custom Field (empty)" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "License not specified" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Custom Field" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Textarea" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Select" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Activity Stream" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: 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/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Add a Group" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Group Form" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Other (Open)" -#: 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/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Other (Public Domain)" -#: 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/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Other (Attribution)" -#: 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/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Manage" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Edit Group" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Other (Non-Commercial)" -#: 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/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Other (Not Open)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Followers" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "depends on %s" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "History" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "is a dependency of %s" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Add Group" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "derives from %s" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Search groups..." +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "has derivation %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Name Ascending" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "links to %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Name Descending" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "is linked from %s" -#: 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/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "is a child of %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "How about creating one?" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "is a parent of %s" -#: 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/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "has sibling %s" -#: 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/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "There is no API data to load for this resource" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Add Member" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Failed to load data API information" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Existing User" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Start typing…" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "If you wish to add an existing user, search for their username below." +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "No matches found" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "or" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "New User" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "There are unsaved modifications to this form" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "If you wish to invite a new user, enter their email address." +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Please Confirm Action" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Role" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Are you sure you want to perform this action?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Are you sure you want to delete this member?" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Confirm" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Delete" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:61 -msgid "Save" -msgstr "Save" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Unfollow" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "What are roles?" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Follow" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

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

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

" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Link" -#: 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/public/base/javascript/modules/image-upload.js:61 +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/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Update Group" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Upload" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Create Group" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Remove" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevance" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Upload a file on your computer" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Last Modified" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Popular" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "File" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Search datasets..." +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Save order" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Datasets in group: {group}" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Saving..." -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Recent Revision History" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Upload a file" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Name" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "An Error Occurred" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "My Group" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Unable to upload file" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "my-group" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Unable to authenticate upload" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Description" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Resource uploaded" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "A little information about my group..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Unable to get data for uploaded file" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Are you sure you want to delete this Group?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +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/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Save Group" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Add Filter" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} Dataset" -msgstr[1] "{num} Datasets" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "Select a field" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Datasets" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Edit" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "View {name}" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Show more" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Remove dataset from this group" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Hide" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "What are Groups?" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Error %(error_code)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 "" -"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/footer.html:9 +msgid "About {0}" +msgstr "About {0}" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Compare" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Deleted" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "read more" +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Powered by CKAN" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Revision" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Sysadmin settings" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Timestamp" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "View profile" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Author" +#: ckan/templates/header.html:26 +#, 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/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Log Message" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Dashboard" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Welcome" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Edit settings" -#: 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/header.html:37 +msgid "Settings" +msgstr "Settings" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Welcome to CKAN" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Log out" -#: 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/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Log in" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "This is a featured section" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Register" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "E.g. environment" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Datasets" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Search data" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Search Datasets" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Popular tags" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Search" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} statistics" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Skip to content" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "dataset" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Load less" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "datasets" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Load more" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organisations" +#: 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/home/snippets/stats.html:23 -msgid "groups" -msgstr "groups" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administration" -#: ckan/templates/macros/form.html:126 +#: 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:29 +msgid "Trash" +msgstr "Trash" + +#: ckan/templates/admin/config.html:16 +#: 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:16 +msgid "Reset" +msgstr "Reset" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Update Config" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN config options" + +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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 "" -"You can use Markdown formatting here" +"

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/macros/form.html:265 -msgid "This field is required" -msgstr "This field is required" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Confirm Reset" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Custom" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administer CKAN" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "The form contains invalid entries:" +#: 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/macros/form.html:395 -msgid "Required field" -msgstr "Required field" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Purge" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "

Purge deleted datasets forever and irreversibly.

" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "Image URL" +#: 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/macros/form.html:424 -msgid "Clear Upload" -msgstr "Clear Upload" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Click here for more information." -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Organisation Form" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Download resource" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Edit datasets" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "No preview available." -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Add dataset" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "More details..." -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr " found for \"{query}\"" +#: 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/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Sorry no datasets found for \"{query}\"" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Make public" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standard Input" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Make private" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medium" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Draft" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Medium Width Input" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Private" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Full" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "This organisation has no datasets associated to it" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Full Width Input" -#: 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/development/snippets/form.html:8 +msgid "Large" +msgstr "Large" -#: 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/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Large Input" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Add Organisation" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Prepend" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "Search organisations..." +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Prepend Input" -#: 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/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Custom Field (empty)" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Username" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Custom Field" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "Email address" +#: 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:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Activity Stream" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "Update Member" +#: 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/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Add a Group" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Create an Organisation" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Group Form" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Update Organisation" +#: 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/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Create Organisation" +#: 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/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Add Dataset" +#: 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/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Datasets in organisation: {group}" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Manage" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "What are Organisations?" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Edit Group" -#: 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/group/edit_base.html:23 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/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/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "History" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "My Organisation" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Add Group" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "my-organisation" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Search groups..." -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "A little information about my organisation..." +#: 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/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" -"Are you sure you want to delete this Organisation? This will delete all the " -"public and private datasets belonging to this organisation." +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "How about creating one?" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Save Organisation" +#: 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/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "View {organization_name}" +#: 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/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Create Dataset" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Add Member" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "What are datasets?" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Existing User" -#: 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/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "If you wish to add an existing user, search for their username below." -#: 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/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "or" -#: 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/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "New User" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "View dataset" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "If you wish to invite a new user, enter their email address." -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Edit metadata" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Role" -#: 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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Preview" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Delete" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Update" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "What are roles?" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Associate this group with this dataset" +#: ckan/templates/group/member_new.html:80 +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/package/group_list.html:14 -msgid "Add to group" -msgstr "Add to group" +#: 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/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/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Update Group" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Update Dataset" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Create Group" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Add data to the dataset" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Search datasets..." -#: 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/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Datasets in group: {group}" -#: 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/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Recent Revision History" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "New resource" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Name" -#: 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/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "My Group" -#: 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/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "my-group" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Add" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "A little information about my group..." -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Are you sure you want to delete this Group?" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Upload to DataStore" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Save Group" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Upload error:" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "View {name}" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Error:" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Remove dataset from this group" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "Error traceback:" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "What are Groups?" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Status" +#: 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/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Last updated" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Compare" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Never" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Deleted" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Upload Log" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "read more" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Details" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Revision" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "End of log" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Timestamp" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "All resources" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Author" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "View resource" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Log Message" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Edit resource" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Welcome" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: 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/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Views" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Welcome to CKAN" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API Endpoint" +#: 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/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Go to resource" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "This is a featured section" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Download" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "E.g. environment" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Search data" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "From the dataset abstract" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Popular tags" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "Source: %(dataset)s" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistics" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "There are no views created for this resource yet." +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "dataset" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Not seeing the views you were expecting?" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datasets" -#: ckan/templates/package/resource_read.html:121 -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/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisations" -#: ckan/templates/package/resource_read.html:123 -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/home/snippets/stats.html:23 +msgid "groups" +msgstr "groups" -#: ckan/templates/package/resource_read.html:124 -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/macros/autoform.html:62 +msgid "Site logo" +msgstr "Site logo" -#: ckan/templates/package/resource_read.html:125 +#: ckan/templates/macros/form.html:126 +#, python-format 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" +"You can use Markdown formatting here" 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" +"You can use Markdown formatting here" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Additional Information" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "This field is required" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Field" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Custom" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Value" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "The form contains invalid entries:" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "unknown" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Required field" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Created" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Format" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "Image URL" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "License" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Clear Upload" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "New view" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Organisation Form" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "This resource has no views" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Edit datasets" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Add new resource" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Add dataset" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

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

" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr " found for \"{query}\"" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Sorry no datasets found for \"{query}\"" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API Docs" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Make public" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "full {format} dump" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Make private" -#: 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/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Draft" -#: 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/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Private" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "All views" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "This organisation has no datasets associated to it" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "View view" +#: 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/package/view_edit_base.html:37 -msgid "View preview" -msgstr "View preview" +#: 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/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Additional Info" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Add Organisation" -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Source" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Search organisations..." -#: 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/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "There are currently no organisations for this site" + +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Username" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email address" + +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Update Member" + +#: ckan/templates/organization/member_new.html:81 +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/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Version" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} member" +msgstr[1] "{count} members" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "State" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Create an Organisation" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Last Updated" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Update Organisation" -#: 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/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Create Organisation" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "Create a new organisation" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Add Dataset" -#: 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/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Datasets in organisation: {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:19 +#: 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 "" -"Ask a system administrator to create an organization before you can " -"continue." +"

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 "" -"Ask a system administrator to create an organisation before you can " -"continue." +"

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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Data API" +#: 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/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Title" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "My Organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "eg. A descriptive title" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "my-organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "eg. my-dataset" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "A little information about my organisation..." -#: 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/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Are you sure you want to delete this Organisation? This will delete all the " +"public and private datasets belonging to this organisation." -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "eg. economy, mental health, government" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Save Organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:41 +#: 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:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organisation" +#: 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/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "No organisation" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Visibility" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "View dataset" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Public" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Edit metadata" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Active" +#: 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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Preview" -#: 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/edit_view.html:21 +msgid "Update" +msgstr "Update" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Next: Add Data" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Associate this group with this dataset" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Add to group" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Update Dataset" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Author Email" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Add data to the dataset" -#: 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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Add New Resource" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Maintainer Email" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Update Resource" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Add" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" -msgstr "Data" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "http://example.com/external-data.csv" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "All resources" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "eg. January 2011 Gold Prices" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "View resource" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Some useful notes about the data" +#: 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/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "eg. CSV, XML or JSON" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Views" -#: ckan/templates/package/snippets/resource_form.html:40 -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/resource_read.html:39 +msgid "API Endpoint" +msgstr "API Endpoint" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "eg. 2012-06-05" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Go to resource" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "File Size" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Download" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "eg. 1024" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME Type" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "From the dataset abstract" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "eg. application/json" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Source: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Are you sure you want to delete this resource?" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "There are no views created for this resource yet." -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Previous" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Not seeing the views you were expecting?" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Save & add another" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Finish" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "What's a resource?" +#: ckan/templates/package/resource_read.html:121 +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/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/resource_read.html:122 +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/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Explore" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Additional Information" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "More information" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Field" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Embed" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Value" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "Data last updated" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Embed resource view" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "unknown" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "Metadata last updated" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Width" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Created" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Height" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Format" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Code" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "License" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Resource Preview" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "New view" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Data and Resources" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "This resource has no views" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "This dataset has no data" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Add new resource" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format -msgid "Read dataset as of %s" -msgstr "Read dataset as of %s" +msgid "" +"

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

" +msgstr "" +"

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

" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Create dataset" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: 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/search.html:53 +msgid "API Docs" +msgstr "API Docs" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "eg. My View" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "full {format} dump" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "eg. Information about my view" +#: 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/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Add Filter" +#: 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/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Remove Filter" +#: 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/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filters" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "View preview" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "What's a view?" +#: 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/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/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Source" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Differences" +#: 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/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Revision Differences" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Version" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Difference" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "State" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "No Differences" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Last Updated" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Revision History" +#: 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/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Revisions" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Create a new organisation" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Undelete" +#: 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/revision/read.html:64 -msgid "Changes" -msgstr "Changes" +#: 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/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Datasets' Tags" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Title" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entity" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "eg. A descriptive title" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "New activity item" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "eg. my-dataset" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Embed Data Viewer" +#: 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/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Embed this view by copying this into your webpage:" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "eg. economy, mental health, government" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Choose width and height in pixels:" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +" License definitions and additional information can be found at opendefinition.org " -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Width:" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisation" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Height:" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "No organisation" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Datapusher status: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Visibility" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Trackback URL" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Public" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Show More {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Active" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Show Only Popular {facet_type}" +#: 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/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "There are no {facet_type} that match this search" +#: 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/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Home" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Next: Add Data" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Language" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Go" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "No License Provided" +#: 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/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "This dataset satisfies the Open Definition." +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Author Email" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "There is no description for this organisation" +#: 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/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "This dataset has no description" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Maintainer Email" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Submit" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Update Resource" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Order by" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Data" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filter Results" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Please try another search.

" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "eg. January 2011 Gold Prices" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "" -"

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

" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Some useful notes about the data" + +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "eg. CSV, XML or JSON" -#: 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/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "This will be guessed automatically. Leave blank if you wish" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "No datasets found for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "eg. 2012-06-05" -#: 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/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "File Size" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "No datasets found" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "eg. 1024" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME Type" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "No groups found for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "eg. application/json" -#: 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/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Are you sure you want to delete this resource?" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "No groups found" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Previous" -#: 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/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Save & add another" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "No organisations found for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Finish" -#: 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/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "What's a resource?" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "No organisations found" +#: 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/snippets/social.html:5 -msgid "Social" -msgstr "Social" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Explore" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Subscribe" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "More information" -#: 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:82 -msgid "Email" -msgstr "Email" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Embed" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "This resource view is not available at the moment." -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Edits" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Embed resource view" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Search Tags" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "News feed" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Width" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "My Datasets" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Height" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "My Organisations" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Code" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "My Groups" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Resource Preview" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Activity from items that I'm following" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Data and Resources" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "You haven't created any datasets." +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "This dataset has no data" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Create one now?" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Read dataset as of %s" -#: 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/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Create dataset" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "You are not a member of any organisations." +#: 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/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/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "eg. My View" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Account Info" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "eg. Information about my view" -#: 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/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Remove Filter" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Change details" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "What's a view?" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Full name" +#: 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/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "eg. Joe Bloggs" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Differences" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "eg. joe@example.com" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Revision Differences" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "A little information about yourself" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Difference" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Subscribe to notification emails" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "No Differences" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Change password" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Revision History" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "Sysadmin Password" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Revisions" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Password" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Undelete" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Confirm Password" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Changes" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Are you sure you want to delete this User?" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Datasets' Tags" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "Are you sure you want to regenerate the API key?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entity" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Regenerate API Key" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "New activity item" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Update Profile" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Embed Data Viewer" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "All Users" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Embed this view by copying this into your webpage:" -#: 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/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Choose width and height in pixels:" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Need an Account?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Width:" -#: 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/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Height:" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Create an Account" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher status: {status}." -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Forgotten your password?" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" -#: 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/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Show More {facet_type}" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Forgot your password?" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Show Only Popular {facet_type}" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Logged Out" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "There are no {facet_type} that match this search" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "You are now logged out." +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Home" -#: 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/snippets/language_selector.html:3 +msgid "Language" +msgstr "Language" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Logout" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Go" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Remember me" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "No License Provided" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "You're already logged in" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "This dataset satisfies the Open Definition." -#: ckan/templates/user/logout_first.html:24 -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/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "There is no description for this organisation" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Log out now" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "This dataset has no description" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Registration" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Submit" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Register for an Account" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Order by" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Why Sign Up?" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filter Results" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "Create datasets, groups and other exciting things" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Please try another search.

" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "username" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" +"

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

" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Full Name" +#: 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/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Create Account" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "No datasets found for \"{query}\"" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Reset Your Password" +#: 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/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Password Reset" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "No datasets found" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Update Password" +#: 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/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "How does this work?" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "No groups found for \"{query}\"" -#: ckan/templates/user/perform_reset.html:40 -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/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/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "User hasn't created any datasets." +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "No groups found" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "You have not provided a biography." +#: 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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "This user has no biography." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "No organisations found" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "This means only you can see this" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Member Since" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Subscribe" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API Key" +#: 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:82 +msgid "Email" +msgstr "Email" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Reset your password" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Password reset" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Edits" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Request reset" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Search Tags" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "News feed" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Activity from:" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "My Datasets" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Search list..." +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "My Organisations" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "You are not following anything" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "My Groups" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "No followers" +#: 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/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Search Users" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "You haven't created any datasets." -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Complete" +#: 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:16 +msgid "Create one now?" +msgstr "Create one now?" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Pending" +#: 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." -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Submitting" +#: 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." -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Not Uploaded Yet" +#: 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" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "DataStore resource not found" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Account Info" -#: ckanext/datastore/db.py:663 +#: ckan/templates/user/edit.html:19 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -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/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Datasets per page" +" Your profile lets other CKAN users know about who you are and what you do. " -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Test conf" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Change details" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Custom Field Ascending" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Full name" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Custom Field Descending" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "eg. Joe Bloggs" -#: 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" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "eg. joe@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "custom text" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "A little information about yourself" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Country Code" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Subscribe to notification emails" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "custom resource text" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Change password" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "This is an untranslated string" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "Sysadmin Password" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "This group has no description" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Password" -#: ckanext/example_theme/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/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Confirm Password" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "Image url" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Are you sure you want to delete this User?" -#: 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)" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Are you sure you want to regenerate the API key?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Data Explorer" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Regenerate API Key" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Table" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Update Profile" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Graph" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "All Users" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Map" +#: 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" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "error loading view" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Need an Account?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "Row offset" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "eg: 0" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Create an Account" -#: 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" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Forgotten your password?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "eg: 100" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Graph type" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Forgot your password?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Group (Axis 1)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Logged Out" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Series (Axis 2)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "You are now logged out." -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Field type" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "You're already logged in as {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Latitude field" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Logout" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Longitude field" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Remember me" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "GeoJSON field" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "You're already logged in" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Auto zoom to features" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Cluster markers" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Log out now" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Total number of Datasets" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registration" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Date" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Register for an Account" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Total datasets" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Why Sign Up?" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Dataset Revisions per Week" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Create datasets, groups and other exciting things" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "All dataset revisions" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "username" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "New datasets" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Full Name" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Top Rated Datasets" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Create Account" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Average rating" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Reset Your Password" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Number of ratings" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Password Reset" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "No ratings" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Update Password" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Most Edited Datasets" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "How does this work?" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Number of edits" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Simply enter a new password and we'll update your account" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "No edited datasets" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "User hasn't created any datasets." -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Largest Groups" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "You have not provided a biography." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Number of datasets" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "This user has no biography." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "No groups" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Top Tags" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "This means only you can see this" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Tag Name" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Member Since" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Number of Datasets" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API Key" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "Users Creating Most Datasets" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Reset your password" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Statistics Menu" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Password reset" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Total Number of Datasets" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Request reset" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Text" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" -msgstr "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Activity from:" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Website" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Search list..." -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "Web Page url" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "You are not following anything" -#: 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/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" diff --git a/ckan/i18n/es/LC_MESSAGES/ckan.mo b/ckan/i18n/es/LC_MESSAGES/ckan.mo index 994e6bfb303..669c45dd96c 100644 Binary files a/ckan/i18n/es/LC_MESSAGES/ckan.mo and b/ckan/i18n/es/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/es/LC_MESSAGES/ckan.po b/ckan/i18n/es/LC_MESSAGES/ckan.po index 61709778e9e..4e93ba93b82 100644 --- a/ckan/i18n/es/LC_MESSAGES/ckan.po +++ b/ckan/i18n/es/LC_MESSAGES/ckan.po @@ -1,4633 +1,4731 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Isabel Ruiz , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Función de autorización no encontrada: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Completado" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administrador" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pendiente" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Editor" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Enviando" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Miembro" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Error" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Es necesario ser administrador del sistema para administrar" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Sin actualizar aún" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Nombre del Sitio" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Recurso no encontrado" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Estilo" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "No estás autorizado para ver esta página" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Lema del sitio" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Subir a DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Etiqueta del logo del sitio" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Error en la subida:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Error:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Texto de la página de Acerca de" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Rastro del error:" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Texto de introducción" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Estado" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Texto en página principal" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Última actualización" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "CSS Personalizado" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nunca" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "" -"Hoja de estilo CSS personalizable insertada en la cabecera de la página" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Log de subida" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Página de inicio" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detalles" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Fin del log" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" -#: ckan/controllers/admin.py:160 +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "formato: debe ser uno de %s" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "No se ha encontrado el recurso." + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"No se puede purgar el paquete %s ya que la revisión asociada %s incluye " -"paquetes de datos no borrados %s" +"Los datos fueron inválidos (por ejemplo: un valor numérico estuvo fuera de " +"rango o fue insertado en un campo de texto)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Problema al purgar la revisión %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Recurso \"{0}\" no fue encontrado." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Purga completada" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "El usuario {0} no está autorizado para actualizar el recurso {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Acción no implementada" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "API de datos" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "No estás autorizado para ver esta página" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Acceso denegado" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +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.

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "No encontrado" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Punto de acceso API" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Solicitud incorrecta" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Nombre de la acción desconocida: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Crear" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Error JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Actualizar / Insertar" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Solicitud de datos incorrecta: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Consulta" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "No se puede listar la entidad de este tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Consulta (vía SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "No se puede leer la entidad de este tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Consultando" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "No se puede crear una entidad nueva de este tipo: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Ejemplo de consulta (primeros cinco resultados)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "No se puede agregar el paquete al índice de búsqueda" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Consulta ejemplo (resultados que contienen 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "No se puede actualizar la entidad de este tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Consulta ejemplo (vía sentencia SQL)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "No se puede actualizar el índice de búsqueda" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Ejemplo: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "No se puede borrar la entidad de este tipo: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Una simple consulta ajax (JSONP) a la data API usando jQuery." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "No hay ninguna revisión especificada" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Ejemplo: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "No hay ninguna revisión con id: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "Campo {num}." -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" -"Término de búsqueda faltante ('since_id=UUID' o 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Etiqueta" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "No se pueden leer los parámetros: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Descripción" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Opción de búsqueda errónea: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Guardar" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Registro desconocido: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Diccionario de datos" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Valor de qjson malformado: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Columna" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "" -"Los parámetros requeridos debe estar en forma de un diccionario en código " -"json." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "Tipo" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Grupo no encontrado" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Cargando ..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organización no encontrada." +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "API de datos" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Tipo de grupo incorrecto" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tabla" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organizaciones" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Diseño adaptable" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Grupos" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Mostrar columnas" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Etiquetas" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "Esconder/Mostrar columnas" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formatos" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Conjuntos de datos por página" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licencias" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Configuración de prueba" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "No autorizado para llevar a cabo una actualización masiva." +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevancia" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "No estás autorizado para crear un grupo" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "El usuario %r no está autorizado para editar %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Error de integridad" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Última modificación" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "El usuario %r no está autorizado para editar %s autorizaciones" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Campo Personalizado Ascendente" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "No estás autorizado para borrar el grupo %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Campo Personalizado Descendente" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "La Organización ha sido borrada." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Popular" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "El grupo ha sido borrado." +#: 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" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s ha sido borrado." +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "texto personalizado" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "No estás autorizado para agregar miembros al grupo %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Código de País" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "No estás autorizado a borrar %s miembros del grupo" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "texto personalizado de recurso" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Miembro de grupo ha sido borrado." +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Este texto no está traducido" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Selecciona dos revisiones antes de hacer la comparación." +#: 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/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Grupo CKAN Historial de Revisió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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Cambios recientes en el Grupo CKAN:" +#: 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" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Mensaje del log:" +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Estás siguiendo a {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Seguidores" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Ya no estás siguiendo a {0}" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Recursos" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "No estás autorizado para ver seguidores %s" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Imagen" -#: ckan/controllers/home.py:36 -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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL de la imagen" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -"Por favor actualiza tu perfil y añade tu dirección de " -"correo electrónico." +"ej: http://example.com/image.jpg (si el blanco utiliza la url del recurso)" -#: ckan/controllers/home.py:83 -#, 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." +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Explorador de Datos" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "Busqueda incorrecta: {error_message}" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Gráfico" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parámetro \"{parameter_name}\" no es un entero" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Mapa" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Conjunto de datos no encontrado" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "error cargando la vista" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Formato de revisión no válido: %r" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "No se pudo cargar la vista" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" -"Ver conjuntos de datos {package_type} en formato {format} no es soportado " -"(archivo de plantilla {file} no encontrado)." +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "DataStore ha retornado un error" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "No estás autorizado a leer el paquete %s" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "DataProxy ha retornado un error" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Historial de revisión del conjunto de datos CKAN" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "Tabla" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Cambios recientes al conjunto de datos CKAN" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filtros" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "No está autorizado a leer el paquete" +#: 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" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "No está autorizado a editar este recurso" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "ej: 0" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Recurso no encontrado" +#: 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" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "No estás autorizado para actualizar el conjunto de datos" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "ej: 100" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Conjunto de datos {id} no pudo ser encontrado." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tipo de gráfico" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Debe añadir al menos un recurso de datos" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupo (Eje 1)" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Error" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Series (Eje 2)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "No está autorizado a crear un recurso" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tipo de campo" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "No está autorizado para crear un recurso para este paquete" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Campo de latitud" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "No se puede agregar el paquete al índice de búsqueda" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Campo de longitud" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "No se puede actualizar el índice de búsqueda." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Campo de GeoJSON" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "El conjunto de datos ha sido borrado" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Auto acercar a características" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "No está autorizado a borrar el paquete %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Marcadores de cluster" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "El recurso ha sido borrado" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Número total de conjuntos de datos" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "No está autorizado a borrar el recurso %s" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Fecha" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Vista de recurso no encontrada" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Total de conjuntos de datos" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Datos del recurso no encontrado" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Versiones de Conjuntos de Datos por Semana" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "No hay descargas disponibles" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Todas las versiones del conjunto de datos" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "No estás autorizado a leer el conjunto de datos %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Nuevos conjuntos de datos" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "No autorizado para leer el recurso %s" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Conjuntos de datos mejor valorados" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "No está autorizado para editar recurso" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Valoración promedio" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Vista no encontrada" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Número de valoraciones" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Tipo de Vista No encontrado" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Ninguna valoración" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Datos de vista de recurso no adecuados" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Conjuntos de datos más editados" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Vista de recurso no proporcionada" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Conjunto de datos" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "No se ha definido una previsualización" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Número de ediciones" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Historial de revisiones del repositorio CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "No existen conjuntos de datos editados" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Cambios recientes del repositorio CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Grupos más grandes" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Conjuntos de datos afectados: %s.\n" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Grupo" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Revisión actualizada" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Número de conjuntos de datos" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Otro" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "No existen grupos" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Etiqueta no encontrada" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Tags preferidos" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Usuario no encontrado" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Nombre de la Etiqueta" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "No estás autorizado para crear un usuario" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Número de Conjuntos de Datos" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "No estás autorizado para crear un usuario" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "Usuarios que han creado más conjuntos de datos" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "No está autorizado a borrar el usuario con id \"{user_id}\"." +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Usuario" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "No se ha especificado ningún usuario" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Menú de Estadísticas" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "No estás autorizado para editar el usuario %s" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Número Total de Conjuntos de Datos" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Perfil actualizado" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Texto" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "No estás autorizado para crear el usuario %s" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Sitio web" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Captcha erróneo. Por favor, inténtalo de nuevo." +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Url de página web" -#: ckan/controllers/user.py:265 -#, 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\"" +#: 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/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "No estás autorizado para editar un usuario" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Su navegador no soporta iframes." -#: ckan/controllers/user.py:320 +#: ckan/authz.py:182 #, python-format -msgid "User %s not authorized to edit %s" -msgstr "El usuario %s no está autorizado para editar %s" - -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "La contraseña introducida no es correcta" +msgid "Authorization function not found: %s" +msgstr "Función de autorización no encontrada: %s" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Contraseña anterior" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administrador" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "Contraseña incorrecta" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Editor" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "" -"No se ha podido iniciar sesión. Nombre de usuario o contraseña incorrectos." +#: ckan/authz.py:202 +msgid "Member" +msgstr "Miembro" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "No está autorizado a solicitar el reseteo de la clave." - -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" coincide con varios usuarios" - -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "No existe el usuario: %s" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Es necesario ser administrador del sistema para administrar" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "" -"Por favor revise su bandeja de entrada para el código de restablecimiento." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Nombre del Sitio" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "No se pudo enviar el enlace de restablecimiento: %s" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Estilo" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "No está autorizado a resetear la clave." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Lema del sitio" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Clave de restablecimiento no válida. Por favor, inténtalo de nuevo." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Etiqueta del logo del sitio" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Se ha restablecido su contraseña." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Su contraseña debe tener 4 caracteres o más." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Texto de la página de Acerca de" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Las contraseñas introducidas no coinciden." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Texto de introducción" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Debe proporcionar una contraseña" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Texto en página principal" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Elemento siguiente no encontrado" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "CSS Personalizado" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} no encontrado" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "" +"Hoja de estilo CSS personalizable insertada en la cabecera de la página" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Todo" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Página de inicio" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Falta el valor" +#: ckan/controllers/admin.py:161 +#, 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/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "No se permite redirección a sitio externo." +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problema al purgar la revisión %s: %s" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} ha añadido la etiqueta {tag} al conjunto de datos {dataset}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Purga completada" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} actualizó el grupo {group}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Acción no implementada" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} actualizó la organización {organization}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Acceso denegado" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} actualizó el conjunto de datos {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "No encontrado" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} actualizó los extra {extra} del conjunto de datos {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Solicitud incorrecta" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" -"{actor} actualizó el recurso {resource} en el conjunto de datos {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Nombre de la acción desconocida: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} actualizó su perfil" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Error JSON: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} borró el grupo {group}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Solicitud de datos incorrecta: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} borró la organización {organization}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "No se puede listar la entidad de este tipo: %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} borró el conjunto de datos {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "No se puede leer la entidad de este tipo: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} eliminó el extra {extra} del conjunto de datos {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "No se puede crear una entidad nueva de este tipo: %s %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} borró el recurso {resource} del conjunto de datos {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "No se puede agregar el paquete al índice de búsqueda" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} creó el grupo {group}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "No se puede actualizar la entidad de este tipo: %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} creó la organización {organization}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "No se puede actualizar el índice de búsqueda" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} creó el conjunto de datos {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "No se puede borrar la entidad de este tipo: %s %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} agregó el extra {extra} al conjunto de datos {dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "No hay ninguna revisión especificada" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} agregó el recurso {resource} al conjunto de datos {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "No hay ninguna revisión con id: %s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} se registró" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "" +"Término de búsqueda faltante ('since_id=UUID' o 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} eliminó la etiqueta {tag} del conjunto de datos {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "No se pueden leer los parámetros: %r" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} comenzó a seguir {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Opción de búsqueda errónea: %s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} comenzó a seguir a {user}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Registro desconocido: %s" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} comenzó a seguir a {group}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Valor de qjson malformado: %r" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Ver" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" +"Los parámetros requeridos debe estar en forma de un diccionario en código " +"json." -#: ckan/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/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Grupo no encontrado" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Enero" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organización no encontrada." -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Febrero" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Tipo de grupo incorrecto" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Marzo" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organizaciones" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Abril" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Grupos" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Mayo" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Etiquetas" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Junio" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formatos" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Julio" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licencias" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Agosto" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "El usuario %r no está autorizado para editar %s" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Septiembre" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "No autorizado para llevar a cabo una actualización masiva." -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Octubre" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "No estás autorizado para crear un grupo" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Noviembre" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Error de integridad" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Diciembre" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "El usuario %r no está autorizado para editar %s autorizaciones" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Justo ahora" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "No estás autorizado para borrar el grupo %s" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "hace {mins} minuto" -msgstr[1] "hace {mins} minutos " +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "La Organización ha sido borrada." -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "hace {hours} hora" -msgstr[1] "hace {hours} horas" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "El grupo ha sido borrado." -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "hace {days} día" -msgstr[1] "hace {days} días" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s ha sido borrado." -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "Hace {months} mes" -msgstr[1] "Hace {months} meses" +#: ckan/controllers/group.py:653 +#, 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/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "hace {years} año" -msgstr[1] "hace {years} años" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "No estás autorizado para agregar miembros al grupo %s" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "{day} {month}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "No estás autorizado a borrar %s miembros del grupo" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Miembro de grupo ha sido borrado." -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Selecciona dos revisiones antes de hacer la comparación." -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Grupo CKAN Historial de Revisión" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Cambios recientes en el Grupo CKAN:" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Mensaje del log:" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Estás siguiendo a {0}" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Ya no estás siguiendo a {0}" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "No estás autorizado para ver seguidores %s" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: 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/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/home.py:73 +#, 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/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "Busqueda incorrecta: {error_message}" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parámetro \"{parameter_name}\" no es un entero" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Conjunto de datos no encontrado" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Formato de revisión no válido: %r" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Actualiza tu avatar en gravatar.com" +#: ckan/controllers/package.py:396 +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/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Desconocido" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "No estás autorizado a leer el paquete %s" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Recurso sin nombre" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Historial de revisión del conjunto de datos CKAN" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Nuevo conjuto de datos creado." +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Cambios recientes al conjunto de datos CKAN" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Recursos editados." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "No está autorizado a leer el paquete" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Opciones editadas." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "No está autorizado a editar este recurso" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} vista" -msgstr[1] "{number} vistas" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "No estás autorizado para actualizar el conjunto de datos" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} vista reciente" -msgstr[1] "{number} vistas recientes" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Conjunto de datos {id} no pudo ser encontrado." -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Debe añadir al menos un recurso de datos" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "" -"No está disponible la dirección de correo electrónico del destinatario!" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "No está autorizado a crear un recurso" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organización" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "No está autorizado para crear un recurso para este paquete" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "grupo" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "No se puede agregar el paquete al índice de búsqueda" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Falta el valor" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "No se puede actualizar el índice de búsqueda." -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "El conjunto de datos ha sido borrado" + +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "No se esperaba el campo %(name)s." +msgid "Unauthorized to delete package %s" +msgstr "No está autorizado a borrar el paquete %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Por favor introduce un valor entero" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "El recurso ha sido borrado" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Recursos" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "No está autorizado a borrar el recurso %s" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Recurso(s) del paquete invalido(s)" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Vista de recurso no encontrada" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Extras" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Datos del recurso no encontrado" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "El vocabulario de etiquetas \"%s\" no existe" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "No hay descargas disponibles" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Usuario" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "No estás autorizado a leer el conjunto de datos %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Conjunto de datos" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "No autorizado para leer el recurso %s" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Grupo" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "No está autorizado para editar recurso" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "No se puede parsear como un JSON válido" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Vista no encontrada" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "Se debe proporcionar una organización" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Tipo de Vista No encontrado" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organización no existe" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Datos de vista de recurso no adecuados" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "No es posible agregar un conjunto de datos a esta organización" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Vista de recurso no proporcionada" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Entero no válido" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "No se ha definido una previsualización" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Debe ser un número entero" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Historial de revisiones del repositorio CKAN" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Debe ser un número positivo" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Cambios recientes del repositorio CKAN" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Formato de fecha incorrecto" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Conjuntos de datos afectados: %s.\n" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "En el mnsaje de registro no están permitidos los enlaces." +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Revisión actualizada" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "id del conjunto de datos ya existe" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Otro" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Recurso" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Etiqueta no encontrada" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Nombre o identificador de grupo desconocido." +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "No estás autorizado para crear un usuario" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Tipo de actividad" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "No estás autorizado para crear un usuario" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Los nombres deben ser cadenas de caracteres" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "No está autorizado a borrar el usuario con id \"{user_id}\"." -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Este nombre no se puede usar" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "No se ha especificado ningún usuario" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Must be at least %s characters long" -msgstr "Debe tener al menos %s caracteres de longitud" +msgid "Unauthorized to edit user %s" +msgstr "No estás autorizado para editar el usuario %s" + +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Usuario no encontrado" + +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Perfil actualizado" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, 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" +msgid "Unauthorized to create user %s" +msgstr "No estás autorizado para crear el usuario %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Captcha erróneo. Por favor, inténtalo de nuevo." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Debe contener solamente caracteres alfanuméricos (ascii) en minúsculas y " -"estos símbolos: -_" +"El usuario \"%s\" ha sido registrado, pero aún tienes la sesión iniciada " +"como \"%s\"" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Ese URL ya esta siendo utilizado." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "No estás autorizado para editar un usuario" -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, 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" +msgid "User %s not authorized to edit %s" +msgstr "El usuario %s no está autorizado para editar %s" -#: ckan/logic/validators.py:369 -#, 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/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "La contraseña introducida no es correcta" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "La versión debe tener como máximo %i caracteres" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Contraseña anterior" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Clave duplicada \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "Contraseña incorrecta" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Este nombre de grupo ya existe en la base de datos" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "" +"No se ha podido iniciar sesión. Nombre de usuario o contraseña incorrectos." -#: ckan/logic/validators.py:415 -#, 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/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "No está autorizado a solicitar el reseteo de la clave." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, 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" +msgid "\"%s\" matched several users" +msgstr "\"%s\" coincide con varios usuarios" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "La etiqueta \"%s\" debe contener caracteres alfanuméricos o símbolos: -_." +msgid "No such user: %s" +msgstr "No existe el usuario: %s" + +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "" +"Por favor revise su bandeja de entrada para el código de restablecimiento." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "La etiqueta \"%s\" no debe estar en mayúsculas" +msgid "Could not send reset link: %s" +msgstr "No se pudo enviar el enlace de restablecimiento: %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Los nombres de usuarios deben ser cadenas de caracteres" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "No está autorizado a resetear la clave." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Este nombre de inicio de sesión no está disponible." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Clave de restablecimiento no válida. Por favor, inténtalo de nuevo." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Por favor, introduzca ambas contraseñas" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Se ha restablecido su contraseña." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Las claves deben ser cadenas de caracteres" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Su contraseña debe tener 4 caracteres o más." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "La contraseña debe tener 4 caracteres o más" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Las contraseñas introducidas no coinciden." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Las contraseñas introducidas no coinciden" - -#: ckan/logic/validators.py:610 -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/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Debe proporcionar una contraseña" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "El nombre debe contener al menos %s caracteres" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Elemento siguiente no encontrado" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Este nombre de vocabulario ya está en uso." +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} no encontrado" -#: ckan/logic/validators.py:633 -#, 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/controllers/user.py:654 +msgid "Everything" +msgstr "Todo" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "No se ha encontrado el vocabulario de etiquetas." +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Falta el valor" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "La etiqueta %s no pertenece al vocabulario %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "No se permite redirección a sitio externo." -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Falta el nombre de la etiqueta" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} ha añadido la etiqueta {tag} al conjunto de datos {dataset}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "La etiqueta %s ya pertenece al vocabulario %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} actualizó el grupo {group}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Por favor, proporcione una URL válida" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} actualizó la organización {organization}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "rol no existe." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} actualizó el conjunto de datos {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Los conjuntos de datos sin organización no pueden ser privados." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} actualizó los extra {extra} del conjunto de datos {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "No es una lista" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" +"{actor} actualizó el recurso {resource} en el conjunto de datos {dataset}" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "No es una cadena" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} actualizó su perfil" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Este padre crearía un lazo en la jerarquía" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} borró el grupo {group}" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" y \"filter_values\" deben tener la misma longitud" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} borró la organización {organization}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" es requerido cuando se ingresa \"filter_values\"" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} borró el conjunto de datos {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" es requerido cuando se ingresa \"filter_fields\"" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} eliminó el extra {extra} del conjunto de datos {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Existe un campo de esquema con el mismo nombre" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} borró el recurso {resource} del conjunto de datos {dataset}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Crear objeto %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} creó el grupo {group}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Crear la relación de paquete: %s %s %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} creó la organización {organization}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "API REST: Crear objecto miembro %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} creó el conjunto de datos {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Intentando crear una organización como un grupo" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} agregó el extra {extra} al conjunto de datos {dataset}" -#: ckan/logic/action/create.py:881 -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/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} agregó el recurso {resource} al conjunto de datos {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Debe suministrar una valoración (parámetro \"rating\")" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} se registró" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "La valoración debe ser un valor entero." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} eliminó la etiqueta {tag} del conjunto de datos {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "La valoración debe ser entre %i y %i." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} comenzó a seguir {dataset}" -#: ckan/logic/action/create.py:1052 -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/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} comenzó a seguir a {user}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Debe haber iniciado sesión para seguir a usuarios" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} comenzó a seguir a {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Usted no puede seguirse a sí mismo" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Ver" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Usted ya está siguiendo a {0}" +#: 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/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Debes haber iniciado sesión para seguir a un conjunto de datos." +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Enero" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "El usuario {username} no existe." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Febrero" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Debe haber iniciado sesión para seguir a un grupo." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Marzo" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "Borrar usuario: {0}" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Abril" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Borrar paquete: %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Mayo" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Borrar %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Junio" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Borrar Miembro: %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Julio" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id no presente en los datos" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Agosto" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "No se ha encontrado el vocabulario \"%s\"" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Septiembre" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "No se ha encontrado la etiqueta \"%s\"" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Octubre" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Debe haber iniciado sesión para dejar de seguir algo" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Noviembre" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Usted no está siguiendo a {0}" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Diciembre" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "No se ha encontrado el recurso." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Justo ahora" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "No ha especificado si quiere usar el parámetro \"query\"" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "hace {mins} minuto" +msgstr[1] "hace {mins} minutos " -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Debe ser un par : " +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "hace {hours} hora" +msgstr[1] "hace {hours} horas" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "El campo \"{field}\" no se ha reconocido en resource_search." +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "hace {days} día" +msgstr[1] "hace {days} días" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "No se ha encontrado el paquete." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "Hace {months} mes" +msgstr[1] "Hace {months} meses" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: actualización de objeto %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "hace {years} año" +msgstr[1] "hace {years} años" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Actualizar la relación de paquetes: %s %s %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{day} {month}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "No se ha encontrado TaskStatus." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organización no encontrada." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: 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/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "El usuario %s no está autorizado para editar estos grupos" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: 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/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -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/lib/formatters.py:187 +msgid "{n}" +msgstr "{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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "No está autorizado a crear usuarios" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "No se ha encontrado el grupo." +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Es necesaria una clave de API válida para crear un paquete" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Es necesaria una clave de API válida para crear un grupo" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Actualiza tu avatar en gravatar.com" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "El usuario %s no está autorizado para agregar miembros" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Desconocido" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "El usuario %s no está autorizado para editar el grupo %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Recurso sin nombre" -#: 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/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Nuevo conjuto de datos creado." -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "Vista de recurso no encontrada, no se puede comprobar autorización." +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Recursos editados." -#: 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/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Opciones editadas." -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} vista" +msgstr[1] "{number} vistas" -#: 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/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} vista reciente" +msgstr[1] "{number} vistas recientes" -#: ckan/logic/auth/delete.py:103 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organizations" -msgstr "El usuario %s no está autorizado para eliminar organizaciones" +msgid "%s <%s>" +msgstr "%s <%s>" -#: 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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "" +"No está disponible la dirección de correo electrónico del destinatario!" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organización" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "No estás autorizado" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grupo" -#: 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/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Falta el valor" -#: ckan/logic/auth/get.py:130 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read package %s" -msgstr "El usuario %s no está autorizado para leer el paquete %s" +msgid "The input field %(name)s was not expected." +msgstr "No se esperaba el campo %(name)s." -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "El usuario %s no está autorizado para leer el recurso %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Por favor introduce un valor entero" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "El usuario %s no está autorizado para leer el grupo %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "Debe ser un texto Unicode" -#: ckan/logic/auth/get.py:258 -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/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Recurso(s) del paquete invalido(s)" -#: ckan/logic/auth/update.py:39 -#, 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/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Extras" -#: ckan/logic/auth/update.py:71 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "El usuario %s no está autorizado para editar el recurso %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "El vocabulario de etiquetas \"%s\" no existe" -#: ckan/logic/auth/update.py:100 -#, 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/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "No se puede parsear como un JSON válido" -#: ckan/logic/auth/update.py:128 -#, 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/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "Se debe proporcionar una organización" -#: ckan/logic/auth/update.py:145 -#, 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/validators.py:47 +msgid "Organization does not exist" +msgstr "Organización no existe" -#: ckan/logic/auth/update.py:162 -#, 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/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "No es posible agregar un conjunto de datos a esta organización" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Tiene que estar conectado para editar un usuario" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Entero no válido" -#: ckan/logic/auth/update.py:197 -#, 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/validators.py:97 +msgid "Must be a natural number" +msgstr "Debe ser un número entero" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "El usuario {0} no autorizado para actualizar al usuario {1}" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Debe ser un número positivo" -#: ckan/logic/auth/update.py:216 -#, 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/validators.py:130 +msgid "Date format incorrect" +msgstr "Formato de fecha incorrecto" + +#: ckan/logic/validators.py:139 +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:159 +msgid "Dataset id already exists" +msgstr "id del conjunto de datos ya existe" + +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Recurso" + +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Nombre o identificador de grupo desconocido." + +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Tipo de actividad" + +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Los nombres deben ser cadenas de caracteres" + +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Este nombre no se puede usar" -#: ckan/logic/auth/update.py:225 +#: ckan/logic/validators.py:338 #, 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" +msgid "Must be at least %s characters long" +msgstr "Debe tener al menos %s caracteres de longitud" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, 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" +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/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Es necesaria una clave de API válida para editar un paquete" +#: ckan/logic/validators.py:343 +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/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Es necesaria una clave de API válida para editar un grupo" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Ese URL ya esta siendo utilizado." -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "No se especificó la licencia" +#: ckan/logic/validators.py:366 +#, 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/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" +#: ckan/logic/validators.py:370 +#, 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/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:376 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "La versión debe tener como máximo %i caracteres" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:394 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Clave duplicada \"%s\"" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Este nombre de grupo ya existe en la base de datos" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:416 +#, 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/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:420 +#, 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/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:428 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "La etiqueta \"%s\" debe contener caracteres alfanuméricos o símbolos: -_." -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Otra (Abierta)" +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "La etiqueta \"%s\" no debe estar en mayúsculas" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Otra (Public Domain)" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Los nombres de usuarios deben ser cadenas de caracteres" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Otra (Atribución)" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Este nombre de inicio de sesión no está disponible." -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Por favor, introduzca ambas contraseñas" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Cualquiera)" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Las claves deben ser cadenas de caracteres" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Otra (No comercial)" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "La contraseña debe tener 4 caracteres o más" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Otra (No abierta)" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Las contraseñas introducidas no coinciden" -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "depends on %s" -msgstr "depende de %s" +#: ckan/logic/validators.py:611 +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/model/package_relationship.py:54 +#: ckan/logic/validators.py:620 #, python-format -msgid "is a dependency of %s" -msgstr "es dependiente de %s" +msgid "Name must be at least %s characters long" +msgstr "El nombre debe contener al menos %s caracteres" -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "derives from %s" -msgstr "deriva de %s" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Este nombre de vocabulario ya está en uso." -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:634 #, python-format -msgid "has derivation %s" -msgstr "tiene un derivado en %s" +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/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "enlaza a %s" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "No se ha encontrado el vocabulario de etiquetas." -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:656 #, python-format -msgid "is linked from %s" -msgstr "enlazado desde %s" +msgid "Tag %s does not belong to vocabulary %s" +msgstr "La etiqueta %s no pertenece al vocabulario %s" -#: ckan/model/package_relationship.py:57 -#, python-format -msgid "is a child of %s" -msgstr "es hijo de %s" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Falta el nombre de la etiqueta" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:675 #, python-format -msgid "is a parent of %s" -msgstr "es padre de %s" +msgid "Tag %s already belongs to vocabulary %s" +msgstr "La etiqueta %s ya pertenece al vocabulario %s" -#: ckan/model/package_relationship.py:61 -#, python-format -msgid "has sibling %s" -msgstr "tiene un hermano %s" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Por favor, proporcione una URL válida" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Cargando ..." +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "rol no existe." -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "No existen datos de API para cargar para este recurso" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Los conjuntos de datos sin organización no pueden ser privados." -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Falló carga de información de datos de API" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "No es una lista" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "No se encontraron coincidencias" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "No es una cadena" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Comience a escribir..." +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Este padre crearía un lazo en la jerarquía" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Ingreso es muy corto, debe tener al menos un caracter" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" y \"filter_values\" deben tener la misma longitud" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Existen modificaciones no guardadas para este formulario" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" es requerido cuando se ingresa \"filter_values\"" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Por favor confirme la acción" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" es requerido cuando se ingresa \"filter_fields\"" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "¿Está seguro de que desea realizar esta acción?" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Existe un campo de esquema con el mismo nombre" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Confirmar" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "El email {email} no tiene un formato válido" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Cancelar" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Crear objeto %s" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Seguir" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Crear la relación de paquete: %s %s %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Dejar de seguir" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "API REST: Crear objecto miembro %s" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Subir" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Intentando crear una organización como un grupo" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Enlace" +#: ckan/logic/action/create.py:893 +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/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Quitar" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Debe suministrar una valoración (parámetro \"rating\")" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Imagen" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "La valoración debe ser un valor entero." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "La valoración debe ser entre %i y %i." -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Fichero" +#: ckan/logic/action/create.py:1064 +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/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Subir un fichero a su PC" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Debe haber iniciado sesión para seguir a usuarios" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Usted no puede seguirse a sí mismo" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Reordenar recursos" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Usted ya está siguiendo a {0}" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Guardar orden" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Debes haber iniciado sesión para seguir a un conjunto de datos." -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Guardando..." +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "El usuario {username} no existe." -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Sube un archivo" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Debe haber iniciado sesión para seguir a un grupo." -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Ocurrió un error" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "Borrar usuario: {0}" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Recurso subido" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Borrar paquete: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "No se pudo subir el archivo" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Borrar %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "No se pudo autenticar subida" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Borrar Miembro: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "No se pudo obtener datos para el archivo subido" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id no presente en los datos" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Estás subiendo un fichero. Estás seguro que quieres salir y parar esta " -"subida?" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "No se ha encontrado el vocabulario \"%s\"" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Reordenar vista de recurso" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "No se ha encontrado la etiqueta \"%s\"" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Editar" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Debe haber iniciado sesión para dejar de seguir algo" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Mostrar más" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Usted no está siguiendo a {0}" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Esconder" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "No se ha encontrado el recurso." -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "No ha especificado si quiere usar el parámetro \"query\"" + +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Debe ser un par : " + +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "El campo \"{field}\" no se ha reconocido en resource_search." + +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "No se ha encontrado el paquete." + +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 #, python-format -msgid "Error %(error_code)s" -msgstr "Error %(error_code)s" +msgid "REST API: Update object %s" +msgstr "REST API: actualización de objeto %s" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Acerca de {0}" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Actualizar la relación de paquetes: %s %s %s" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "API CKAN" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "No se ha encontrado TaskStatus." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "CKAN Association" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organización no encontrada." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" +#: 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:45 +#, 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 "" -"Gestionado con CKAN" +"El usuario %s no está autorizado para crear conjuntos de datos en esta " +"organización" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Opciones de Administrador" +#: 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/templates/header.html:19 -msgid "View profile" -msgstr "Ver perfil" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +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/templates/header.html:26 +#: ckan/logic/auth/create.py:76 #, 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)" +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/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Pizarra" +#: 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/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Editar opciones" +#: 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/templates/header.html:37 -msgid "Settings" -msgstr "Configuración" +#: 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/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Salir" +#: 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/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Iniciar Sesión" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "No está autorizado a crear usuarios" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Registro" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "No se ha encontrado el grupo." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Conjuntos de datos" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Es necesaria una clave de API válida para crear un paquete" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Buscar conjuntos de datos" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Es necesaria una clave de API válida para crear un grupo" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Búsqueda" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "El usuario %s no está autorizado para agregar miembros" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Ir al contenido" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "El usuario %s no está autorizado para editar el grupo %s" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Cargar menos" +#: 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/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Cargar más" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "Vista de recurso no encontrada, no se puede comprobar autorización." -#: 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/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/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administración" +#: 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/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Administradores" +#: 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/templates/admin/base.html:9 -msgid "Config" -msgstr "Configuración" +#: 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/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Papelera" +#: 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/templates/admin/config.html:16 -#: 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/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/templates/admin/config.html:17 -msgid "Reset" -msgstr "Reiniciar" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "No estás autorizado" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Actualizar Configuración" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "El usuario %s no está autorizado para leer estos paquetes" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "Opciones de configuración de CKAN" +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/get.py:143 #, 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.

" +msgid "User %s not authorized to read resource %s" +msgstr "El usuario %s no está autorizado para leer el recurso %s" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Confirmar Reinicio" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "El usuario %s no está autorizado para leer el grupo %s" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Administrar CKAN" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Debe haber iniciado sesión para acceder a su panel de control." -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/update.py:39 #, 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

" +msgid "User %s not authorized to edit package %s" +msgstr "El usuario %s no está autorizado para editar el paquete %s" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Purgar" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "El usuario %s no está autorizado para editar el recurso %s" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" msgstr "" -"

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

" +"El usuario %s no está autorizado para cambiar el estado del paquete %s" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "API de datos" +#: ckan/logic/auth/update.py:128 +#, 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/templates/ajax_snippets/api_info.html:23 -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" +#: ckan/logic/auth/update.py:145 +#, 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/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" msgstr "" -"Más información en la documentación del API de Datos principal y del DataStore " -"de CKAN.

" +"El usuario %s no está autorizado para editar los permisos del grupo %s" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Punto de acceso API" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Tiene que estar conectado para editar un usuario" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"El API de Datos es accesible a través de las siguientes acciones de la API " -"de acción de CKAN." +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "El usuario %s no está autorizado para editar el usuario %s" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Crear" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "El usuario {0} no autorizado para actualizar al usuario {1}" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Actualizar / Insertar" +#: ckan/logic/auth/update.py:217 +#, 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/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Consulta" +#: ckan/logic/auth/update.py:226 +#, 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/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Consulta (vía SQL)" +#: ckan/logic/auth/update.py:240 +#, 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Consultando" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Es necesaria una clave de API válida para editar un paquete" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Ejemplo de consulta (primeros cinco resultados)" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Es necesaria una clave de API válida para editar un grupo" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Consulta ejemplo (resultados que contienen 'jones')" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "No se especificó la licencia" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Consulta ejemplo (vía sentencia SQL)" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Ejemplo: Javascript" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/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." +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Ejemplo: Python" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: 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/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Haga click aquí para más información." +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Descargar recurso" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Su navegador no soporta iframes." +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Otra (Abierta)" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "No está disponible la vista preliminar." +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Otra (Public Domain)" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Más detalles..." +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Otra (Atribución)" -#: 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/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Estándar" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Cualquiera)" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Ingreso Estándar" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Otra (No comercial)" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Mediano" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Otra (No abierta)" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Ingreso de ancho mediano" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "depende de %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Completo" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "es dependiente de %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Ingreso de ancho completo" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "deriva de %s" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Largo" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "tiene un derivado en %s" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Ingreso Largo" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "enlaza a %s" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Anteponer" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "enlazado desde %s" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Anteponer ingreso" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "es hijo de %s" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Campo Personalizado (vacío)" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "es padre de %s" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Campo Personalizado" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "tiene un hermano %s" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Marcado" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "No existen datos de API para cargar para este recurso" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Área de Texto" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Falló carga de información de datos de API" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Seleccionar" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Comience a escribir..." -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Flujo de Actividad" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "No se encontraron coincidencias" -#: 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/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Añadir un grupo" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Existen modificaciones no guardadas para este formulario" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Formulario de Grupo" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Por favor confirme la acción" -#: 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/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "¿Está seguro de que desea realizar esta acción?" -#: 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/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Confirmar" -#: 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/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Administrar" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Dejar de seguir" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Editar Grupo" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Seguir" -#: 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/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Enlace" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Seguidores" +#: ckan/public/base/javascript/modules/image-upload.js:61 +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/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Historial" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Subir" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Añadir grupo" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Quitar" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Buscar grupos..." +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Subir un fichero a su PC" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Nombre Ascendente" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Nombre Descendente" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Fichero" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "No existen actualmente grupos para este sitio" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Guardar orden" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "¿Qué tal creando uno?" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Guardando..." -#: 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/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Sube un archivo" -#: 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/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Ocurrió un error" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Agregar Miembro" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "No se pudo subir el archivo" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Usuario existente" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "No se pudo autenticar subida" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Recurso subido" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +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:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" msgstr "" -"Si quiere añadir un usuario existente, buscar el nombre del usuario abajo." +"Estás subiendo un fichero. Estás seguro que quieres salir y parar esta " +"subida?" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "o" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Agregar Filtro" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Usuario nuevo" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "Seleccione un campo" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Si desea invitar a un usuario, escriba su dirección de correo electrónico" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Editar" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Rol" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Mostrar más" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "¿Está seguro de que desea eliminar a este miembro?" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Esconder" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Borrar" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Error %(error_code)s" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Guardar" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Acerca de {0}" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "¿Qué son los roles?" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API CKAN" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" -#: ckan/templates/group/member_new.html:81 +#: ckan/templates/footer.html:24 msgid "" -"

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

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

" +"Powered by CKAN" 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" +"Gestionado con CKAN" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Actualizar Grupo" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Opciones de Administrador" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Crear Grupo" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Ver perfil" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevancia" +#: ckan/templates/header.html:26 +#, 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/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Última modificación" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Pizarra" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Popular" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Editar opciones" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Buscar conjuntos de datos..." +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Configuración" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Conjuntos de datos en el grupo: {group}" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Salir" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Historial de Revisiones reciente" - -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Nombre" - -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Mi Grupo" - -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "mi-grupo" - -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Descripción" - -#: 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/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Iniciar Sesión" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "¿Está seguro de que desea eliminar este Grupo?" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registro" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Guardar Grupo" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Conjuntos de datos" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} Conjunto de Datos" -msgstr[1] "{num} Conjuntos de Datos" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Buscar conjuntos de datos" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Conjuntos de Datos" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Búsqueda" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Ver {name}" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Ir al contenido" -#: 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/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Cargar menos" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "¿Qué son los Grupos?" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Cargar má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 "" -"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/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/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Comparar" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administración" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Eliminado" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Administradores" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "leer más" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Configuración" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Revisión" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Papelera" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Marca de tiempo" +#: ckan/templates/admin/config.html:16 +#: 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/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Autor" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Reiniciar" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Mensaje de registro" +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Actualizar Configuración" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Bienvenida" +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "Opciones de configuración de CKAN" -#: ckan/templates/home/snippets/about_text.html:1 +#: ckan/templates/admin/config.html:33 +#, python-format 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/

" +"

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

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/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/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Confirmar Reinicio" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Esta es una sección destacada" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrar CKAN" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "Ej: ambiente" +#: 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/home/snippets/search.html:6 -msgid "Search data" -msgstr "Buscar datos" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Purgar" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Etiquetas populares" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "" +"

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

" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} estadísticas" +#: 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/home/snippets/stats.html:11 -msgid "dataset" -msgstr "conjunto de datos" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Haga click aquí para más información." -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "conjuntos de datos" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Descargar recurso" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "Organizaciones" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "No está disponible la vista preliminar." -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "grupos" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Más detalles..." -#: ckan/templates/macros/form.html:126 +#: ckan/templates/dataviewer/snippets/no_preview.html:12 #, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" -"Puede usar formato Markdown aquí" +msgid "No handler defined for data type: %(type)s." +msgstr "No se ha definido controlador para el tipo de dato: %(type)s." -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Este campo es requerido" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Estándar" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Personalizado" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Ingreso Estándar" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "El formulario contiene entradas no válidas:" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Mediano" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Campo requerido" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Ingreso de ancho mediano" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://ejemplo.com/mi-imagen.jpg" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Completo" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL de la imagen" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Ingreso de ancho completo" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Eliminar Carga" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Largo" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Formulario de la Organización" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Ingreso Largo" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Editar Conjunto de datos" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Anteponer" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Añade conjunto de datos" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Anteponer ingreso" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "encontrados para \"{query}\"" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Campo Personalizado (vacío)" -#: 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/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Campo Personalizado" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Hacer público" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Marcado" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Hacer privado" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Área de Texto" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Borrador" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Seleccionar" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Privado" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Flujo de Actividad" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Esta organización no tiene conjuntos de datos asociados a ella" +#: 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/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/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Añadir un grupo" -#: 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/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Formulario de Grupo" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Agregar Organización" +#: 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/organization/index.html:20 -msgid "Search organizations..." -msgstr "Buscar organizaciones" +#: 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/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "Actualmente no existen organizaciones para este sitio" +#: 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/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nombre de usuario" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Administrar" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "Dirección de correo electrónico" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Editar Grupo" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "Actualizar miembro" +#: ckan/templates/group/edit_base.html:23 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/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Historial" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Crear una Organización" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Añadir grupo" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Actualizar Organización" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Buscar grupos..." -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Crear Organización" +#: 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/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Agrega conjunto de datos" +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "¿Qué tal creando uno?" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Conjuntos de datos en organización: {group}" +#: 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/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "¿Qué son las Organizaciones?" +#: 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/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/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Agregar Miembro" -#: 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/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Usuario existente" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Mi Organización" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Si quiere añadir un usuario existente, buscar el nombre del usuario abajo." -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "mi-organizacion" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "o" -#: 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/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Usuario nuevo" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -"¿Estás seguro de que quieres borrar esta Organización? Esto borrará los " -"conjuntos de datos privados y públicos que pertenecen a esta organización." +"Si desea invitar a un usuario, escriba su dirección de correo electrónico" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Guardar Organización" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Rol" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Ver {organization_name}" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/package/base.html:22 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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Borrar" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "¿Qué son los conjuntos de datos?" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "¿Qué son los roles?" -#: ckan/templates/package/base_form_page.html:25 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" msgstr "" -"Un Conjunto de Datos de CKAN es una colección de recursos de datos (como " -"ficheros), junto con una descripción y otra información, unida a una URL. " -"Los conjuntos de datos son lo que los usuarios ven cuando buscan un dato." - -#: ckan/templates/package/confirm_delete.html: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:16 -msgid "View dataset" -msgstr "Ver conjunto de datos" +"

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/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Editar metadatos" +#: 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/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/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Actualizar Grupo" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Previsualización" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Crear Grupo" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Actualizar" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Buscar conjuntos de datos..." -#: 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/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Conjuntos de datos en el grupo: {group}" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Añadir al grupo" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Historial de Revisiones reciente" -#: 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/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Nombre" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Actualizar Conjunto de datos" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Mi Grupo" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Agregar datos al conjunto de datos" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "mi-grupo" -#: 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/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/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/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "¿Está seguro de que desea eliminar este Grupo?" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Nuevo recurso" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Guardar Grupo" -#: 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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Ver {name}" -#: 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/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Borrar el conjunto de datos de este grupo" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Añade" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "¿Qué son los Grupos?" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/group/snippets/helper.html:8 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +" 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 "" -"Esta es una versión antigua de este conjunto de datos, editada en " -"%(timestamp)s. Puede diferir significativamente de la versión actual." +"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/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Subir a DataStore" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Comparar" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Error en la subida:" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Eliminado" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Error:" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "leer más" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "Rastro del error:" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Revisión" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Estado" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Marca de tiempo" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Última actualización" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Autor" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Nunca" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Mensaje de registro" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Log de subida" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Bienvenida" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Detalles" +#: 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/package/resource_data.html:81 -msgid "End of log" -msgstr "Fin del log" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Bienvenido a CKAN" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Todos los recursos" +#: 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/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Ver recurso" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Esta es una sección destacada" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Editar recurso" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Ej: ambiente" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Buscar datos" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Vistas" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Etiquetas populares" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "Punto de acceso API" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} estadísticas" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Ir al recurso" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "conjunto de datos" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Descargar" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "conjuntos de datos" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "Organizaciones" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupos" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Del resumen del conjunto de datos" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Logotipo del sitio" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Fuente: %(dataset)s" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Todavía no existen vistas creadas para este recurso." +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Puede usar formato Markdown aquí" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "¿No encuentra las vistas que esperaba?" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Este campo es requerido" -#: ckan/templates/package/resource_read.html:121 -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/macros/form.html:265 +msgid "Custom" +msgstr "Personalizado" -#: ckan/templates/package/resource_read.html:123 -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/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "El formulario contiene entradas no válidas:" -#: ckan/templates/package/resource_read.html:124 -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/macros/form.html:395 +msgid "Required field" +msgstr "Campo requerido" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"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/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://ejemplo.com/mi-imagen.jpg" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Información adicional" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL de la imagen" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Campo" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Eliminar Carga" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Valor" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Formulario de la Organización" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "desconocido" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Editar Conjunto de datos" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Creado" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Añade conjunto de datos" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Formato" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "encontrados para \"{query}\"" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licencia" +#: 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/package/resource_views.html:10 -msgid "New view" -msgstr "Nueva vista" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Hacer público" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Este recurso no tiene vistas" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Hacer privado" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Añadir nuevo recurso" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Borrador" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

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

" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Privado" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Esta organización no tiene conjuntos de datos asociados a ella" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API Docs" +#: 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/package/search.html:55 -msgid "full {format} dump" -msgstr "volcado completo de {format}" +#: 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/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/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Agregar Organización" -#: 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/organization/index.html:20 +msgid "Search organizations..." +msgstr "Buscar organizaciones" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "Todas las vistas" +#: 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/package/view_edit_base.html:12 -msgid "View view" -msgstr "Ver vista" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nombre de usuario" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Ver previsualización" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Dirección de correo electrónico" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Información Adicional" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Actualizar miembro" -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Fuente" +#: ckan/templates/organization/member_new.html:81 +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/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/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} miembro" +msgstr[1] "{count} miembros" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Versión" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Crear una Organización" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Estado" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Actualizar Organización" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Última actualización" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Crear Organizació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/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Agrega conjunto de datos" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "Crear una nueva organización" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Conjuntos de datos en organización: {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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 "" -"No hay organizaciones a las que le puedas asignar este conjunto de datos." +"

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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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 "" -"Preguntar a un administrador del sistema para crear una organización antes " -"de continuar" +"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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "API de datos" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Mi Organización" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Título" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "mi-organizacion" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "ej. Un título descriptivo" +#: 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/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "ej. mi-conjunto-de-datos" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"¿Estás seguro de que quieres borrar esta Organización? Esto borrará los " +"conjuntos de datos privados y públicos que pertenecen a esta organización." -#: 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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Guardar Organización" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "ej. economía, salud mental, gobierno" +#: 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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"Definiciones de licencias e información adicional puede ser encontrada en opendefinition.org" +"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/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organización" +#: 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/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Sin organización" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Visibilidad" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Ver conjunto de datos" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Público" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Editar metadatos" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Activo" +#: 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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Previsualización" -#: 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/edit_view.html:21 +msgid "Update" +msgstr "Actualizar" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Siguiente: Agregar Datos" +#: 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/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://ejemplo.com/dataset.json" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Añadir al grupo" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Actualizar Conjunto de datos" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Email del Autor" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Agregar datos al conjunto de datos" -#: 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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Agregar Nuevo Recurso" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Email del Mantenedor" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Actualizar Recurso" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Nuevo recurso" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" -msgstr "Dato" +#: 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:81 +msgid "Add" +msgstr "Añade" + +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "" +"Esta es una versión antigua de este conjunto de datos, editada en " +"%(timestamp)s. Puede diferir significativamente de la versión actual." -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "http://example.com/external-data.csv" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Todos los recursos" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "ej. Precios del Oro Enero 2011" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Ver recurso" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Algunas notas útiles sobre los datos" +#: 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/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "ej. CSV, XML ó JSON" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Vistas" -#: ckan/templates/package/snippets/resource_form.html:40 -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/resource_read.html:39 +msgid "API Endpoint" +msgstr "Punto de acceso API" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "ej. 2012-06-05" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Ir al recurso" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Tamaño de Archivo" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Descargar" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "ej. 1024" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "Tipo MIME" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Del resumen del conjunto de datos" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "ej. application/json" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Fuente: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "¿Está seguro de que desea eliminar este recurso?" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "Todavía no existen vistas creadas para este recurso." -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Anterior" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "¿No encuentra las vistas que esperaba?" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Guardar y Agregar otro" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Terminar" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "¿Qué es un recurso?" +#: ckan/templates/package/resource_read.html:121 +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/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:122 +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 "" -"Un recurso puede ser cualquier archivo o enlace a un archivo que contiene " -"datos útiles." +"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/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Explorar" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Información adicional" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Más información" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Campo" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Incrustar" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valor" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "Esta vista de recurso no está disponible al momento." +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "Última actualización de los datos" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Incrustar vista de recurso" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "desconocido" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" -"Puede copiar y pegar el código de inserción en un CMS o blog que soporte " -"HTML crudo" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "Última actualización de los metadatos" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Ancho" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Creado" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Alto" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Formato" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Código" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licencia" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Previsualización de Recurso" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nueva vista" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Datos y Recursos" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Este recurso no tiene vistas" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Este conjunto de datos no tiene datos" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Añadir nuevo recurso" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format -msgid "Read dataset as of %s" -msgstr "Leer conjunto de datos a partir de %s" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Crear conjunto de datos" +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/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/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "ej: Mi Vista" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API Docs" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "ej: Información sobre mi vista" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "volcado completo de {format}" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Agregar Filtro" +#: 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/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Quitar Filtro" +#: 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/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filtros" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Todas las vistas" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "¿Qué es una vista?" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Ver 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/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Ver previsualización" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Diferencias" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Información Adicional" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Diferencias en las revisiones -" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Fuente" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Diferencias" +#: 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/revision/diff.html:54 -msgid "No Differences" -msgstr "Sin diferencias" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versión" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Historial de revisiones" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Estado" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Revisiones" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Última actualización" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Recuperar" +#: 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/revision/read.html:64 -msgid "Changes" -msgstr "Cambios" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Crear una nueva organización" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Etiquetas de los conjuntos de datos" +#: 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/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entidad" +#: 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/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Nuevo elemento de actividad" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Título" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Incrustar Visor de datos" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "ej. Un título descriptivo" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Inserte esta vista en su página web copiando este código:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "ej. mi-conjunto-de-datos" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Escoge la anchura y altura en píxeles:" +#: 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/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Anchura:" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "ej. economía, salud mental, gobierno" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Altura:" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Definiciones de licencias e información adicional puede ser encontrada en opendefinition.org" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Estado de Datapusher: {status}" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organización" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "URL de Trackback" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Sin organización" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Mostrar Más {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Visibilidad" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Mostrar Solamente Populares {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Público" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "No hay {facet_type} que coincidan con esta búsqueda" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Activo" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Inicio" +#: 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/snippets/language_selector.html:4 -msgid "Language" -msgstr "Idioma" +#: 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/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Ir" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Siguiente: Agregar Datos" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "No se ha provisto de una licencia" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://ejemplo.com/dataset.json" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "" -"Este conjunto de datos cumple con la Definición de Conocimiento Abierto - " -"Open Definition." +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "No existe una descripción para esta organización" +#: 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/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Este conjunto de datos no tiene una descripción" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email del Autor" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Enviar" +#: 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/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Ordenar por" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email del Mantenedor" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filtrar Resultados" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Actualizar Recurso" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Por favor intente otra búsqueda.

" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Dato" -#: ckan/templates/snippets/search_form.html:86 -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/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" -#: 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/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "ej. Precios del Oro Enero 2011" -#: 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/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Algunas notas útiles sobre los datos" -#: 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/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "ej. CSV, XML ó JSON" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Conjuntos de datos no encontrados" +#: ckan/templates/package/snippets/resource_form.html:40 +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/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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "ej. 2012-06-05" -#: 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/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Tamaño de Archivo" -#: 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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "ej. 1024" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "No se han encontrado grupos" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "Tipo MIME" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "ej. application/json" -#: 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/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "¿Está seguro de que desea eliminar este recurso?" -#: 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/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Anterior" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Lo sentimos, no se encontraron organizaciones" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Guardar y Agregar otro" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Social" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Terminar" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Suscribir" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "¿Qué es un recurso?" -#: 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:82 -msgid "Email" -msgstr "Dirección de correo electrónico" +#: 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/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Explorar" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Cambios" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Más información" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Buscar Etiquetas" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Incrustar" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Feed de Noticias" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "Esta vista de recurso no está disponible al momento." -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Mis Conjuntos de Datos" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Incrustar vista de recurso" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Mis organizaciones" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Puede copiar y pegar el código de inserción en un CMS o blog que soporte " +"HTML crudo" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Mis Grupos" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Ancho" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Actividad de los elementos que Usted sigue" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Alto" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "No has creado ningún conjunto de datos." +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Código" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "¿Crear uno ahora?" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Previsualización de Recurso" -#: 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/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Datos y Recursos" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "No eres miembro de ninguna de las organizaciones." +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Este conjunto de datos no tiene datos" -#: 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/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Leer conjunto de datos a partir de %s" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Información de la Cuenta" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Crear conjunto de datos" -#: 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/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/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Cambie sus detalles" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "ej: Mi Vista" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Nombre completo" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "ej: Información sobre mi vista" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "ej: Joe Bloggs" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Quitar Filtro" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "ej: joe@ejemplo.com" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "¿Qué es una vista?" -#: 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/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/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Suscribirse a emails de notificación" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Diferencias" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Cambia tu contraseña" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Diferencias en las revisiones -" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "Clave de administrador de sistema" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Diferencias" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Contraseña" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Sin diferencias" + +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Historial de revisiones" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Confirmar Contraseña" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Revisiones" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "¿Está seguro de que desea eliminar a este miembro?" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Recuperar" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "¿Está seguro de que desea regenerar la clave API?" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Cambios" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Regenerar Clave API" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Etiquetas de los conjuntos de datos" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Actualizar Perfil" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entidad" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Todos los Usuarios" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Nuevo elemento de actividad" -#: 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/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Incrustar Visor de datos" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "¿Necesita una cuenta?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Inserte esta vista en su página web copiando este código:" -#: 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/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Escoge la anchura y altura en píxeles:" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Crear una Cuenta" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Anchura:" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "¿Olvidó su clave?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Altura:" -#: 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/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Estado de Datapusher: {status}" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "¿Olvidaste tu contraseña?" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "URL de Trackback" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Sesión terminada" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Mostrar Más {facet_type}" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Usted terminó la sesión." +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Mostrar Solamente Populares {facet_type}" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Ya inició sesión como {user}." +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "No hay {facet_type} que coincidan con esta búsqueda" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Salir" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Inicio" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Recordarme" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Idioma" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Ya inició la sesión" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Ir" -#: ckan/templates/user/logout_first.html:24 -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/snippets/license.html:14 +msgid "No License Provided" +msgstr "No se ha provisto de una licencia" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Cerrar la sesión ahora" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "" +"Este conjunto de datos cumple con la Definición de Conocimiento Abierto - " +"Open Definition." -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Registro" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "No existe una descripción para esta organización" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Regístrese para una Cuenta" +#: 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/user/new.html:26 -msgid "Why Sign Up?" -msgstr "¿Por qué registrarse?" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Enviar" -#: 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/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Ordenar por" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "nombre de usuario" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filtrar Resultados" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Nombre Completo" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Por favor intente otra búsqueda.

" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Crear Cuenta" +#: ckan/templates/snippets/search_form.html:86 +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/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Restablezca su contraseña" +#: 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/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Contraseña restablecida" +#: 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/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Actualizar contraseña" +#: 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/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "¿Cómo funciona esto?" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Conjuntos de datos no encontrados" -#: ckan/templates/user/perform_reset.html:40 -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/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/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "El usuario no ha creado ningún conjunto de datos." +#: 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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Usted no ha provisto una biografía." +#: 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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Este usuario no tiene una biografía." +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "No se han encontrado grupos" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: 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/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Esto significa que solo Usted puede ver esto" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Lo sentimos, no se encontraron organizaciones" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Miembro Desde" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "Clave API" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Suscribir" -#: 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/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:82 +msgid "Email" +msgstr "Dirección de correo electrónico" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Reiniciar contraseña" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Solicitar restablecimiento" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Cambios" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Ingrese su nombre de usuario en el recuadro y le enviaremos un email con un " -"enlace para ingresar una nueva contraseña." +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Buscar Etiquetas" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Actividad de:" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Feed de Noticias" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Lista de búsqueda..." +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Mis Conjuntos de Datos" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Usted no está siguiendo nada" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mis organizaciones" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Sin seguidores" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mis Grupos" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Buscar Usuarios" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Actividad de los elementos que Usted sigue" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Completado" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "No has creado ningún conjunto de datos." -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Pendiente" +#: 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:16 +msgid "Create one now?" +msgstr "¿Crear uno ahora?" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Enviando" +#: 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." -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Sin actualizar aún" +#: 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." -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "No se ha encontrado el recurso." +#: 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" -#: ckanext/datastore/db.py:663 +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Información de la Cuenta" + +#: ckan/templates/user/edit.html:19 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -"Los datos fueron inválidos (por ejemplo: un valor numérico estuvo fuera de " -"rango o fue insertado en un campo de texto)." - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -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}" +"Su perfil le permite a otros usuarios de CKAN conocer acerca de usted y " +"sobre lo que hace." -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Conjuntos de datos por página" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Cambie sus detalles" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Configuración de prueba" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Nombre completo" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Campo Personalizado Ascendente" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "ej: Joe Bloggs" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Campo Personalizado Descendente" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "ej: joe@ejemplo.com" -#: 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" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Un poco de información acerca de Usted" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "texto personalizado" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Suscribirse a emails de notificación" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Código de País" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Cambia tu contraseña" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "texto personalizado de recurso" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "Clave de administrador de sistema" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "Este texto no está traducido" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Contraseña" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Este grupo no tiene una descripción" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Confirmar Contraseña" -#: ckanext/example_theme/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/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "¿Está seguro de que desea eliminar a este miembro?" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "URL de la imagen" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "¿Está seguro de que desea regenerar la clave API?" -#: 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)" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Regenerar Clave API" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Explorador de Datos" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Actualizar Perfil" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Tabla" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Todos los Usuarios" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Gráfico" +#: 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" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Mapa" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "¿Necesita una cuenta?" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "error cargando la vista" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Entonces regístrese, solamente toma un minuto" -#: 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" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Crear una Cuenta" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "ej: 0" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "¿Olvidó su clave?" -#: 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" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "ej: 100" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "¿Olvidaste tu contraseña?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Tipo de gráfico" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Sesión terminada" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Grupo (Eje 1)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Usted terminó la sesión." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Series (Eje 2)" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Ya inició sesión como {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Tipo de campo" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Salir" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Campo de latitud" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Recordarme" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Campo de longitud" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Ya inició la sesión" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "Campo de GeoJSON" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Auto acercar a características" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Cerrar la sesión ahora" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Marcadores de cluster" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registro" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Número total de conjuntos de datos" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Regístrese para una Cuenta" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Fecha" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "¿Por qué registrarse?" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Total de conjuntos de datos" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Crear conjuntos de datos, grupos y otras cosas interesantes" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Versiones de Conjuntos de Datos por Semana" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "nombre de usuario" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Todas las versiones del conjunto de datos" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nombre Completo" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Nuevos conjuntos de datos" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Crear Cuenta" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Conjuntos de datos mejor valorados" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Restablezca su contraseña" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Valoración promedio" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Contraseña restablecida" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Número de valoraciones" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Actualizar contraseña" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Ninguna valoración" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "¿Cómo funciona esto?" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Conjuntos de datos más editados" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Simplemente ingrese una nueva contraseña y actualizaremos su cuenta" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Número de ediciones" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "El usuario no ha creado ningún conjunto de datos." -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "No existen conjuntos de datos editados" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Usted no ha provisto una biografía." -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Grupos más grandes" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Este usuario no tiene una biografía." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Número de conjuntos de datos" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "No existen grupos" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Esto significa que solo Usted puede ver esto" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Tags preferidos" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Miembro Desde" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Nombre de la Etiqueta" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "Clave API" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Número de Conjuntos de Datos" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Restablezca su contraseña" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "Usuarios que han creado más conjuntos de datos" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Reiniciar contraseña" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Menú de Estadísticas" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Solicitar restablecimiento" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Número Total de Conjuntos de Datos" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "" +"Ingrese su nombre de usuario en el recuadro y le enviaremos un email con un " +"enlace para ingresar una nueva contraseña." -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Texto" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Actividad de:" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" -msgstr "Ha ocurrido un error: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Lista de búsqueda..." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Sitio web" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Usted no está siguiendo nada" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "Url de página web" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Sin seguidores" -#: 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/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Buscar Usuarios" diff --git a/ckan/i18n/es_AR/LC_MESSAGES/ckan.mo b/ckan/i18n/es_AR/LC_MESSAGES/ckan.mo index c2fbc65d68e..c4b93e78679 100644 Binary files a/ckan/i18n/es_AR/LC_MESSAGES/ckan.mo and b/ckan/i18n/es_AR/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/es_AR/LC_MESSAGES/ckan.po b/ckan/i18n/es_AR/LC_MESSAGES/ckan.po index 540f52051b5..0055eed5a7f 100644 --- a/ckan/i18n/es_AR/LC_MESSAGES/ckan.po +++ b/ckan/i18n/es_AR/LC_MESSAGES/ckan.po @@ -1,4624 +1,4720 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Función de autorización no encontrada: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Completado" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administrador" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pendiente" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Editor" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Enviando" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Miembro" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Error" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Se necesita ser administrador del sistema para administrar" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Sin actualizar aún" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Título del Sitio" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "No se encontró el recurso " -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Estilo" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "No estás autorizado para ver esta página" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Lema del sitio" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Subir a DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Etiqueta del logotipo del sitio" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Error en la subida:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Error:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Texto de la página acerca de" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Texto introductorio" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Estado" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Texto en la página principal" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Última actualización" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "CSS personalizado" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nunca" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "CSS personalizable insertado en el encabezado de la página" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Log de subida" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Página de inicio" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detalles" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Fin del log" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "No se ha encontrado el recurso." + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"No se puede purgar el paquete %s como revisión asociada %s incluye paquetes " -"de datos no borrados %s" +"Los datos fueron inválidos (por ejemplo: un valor numérico estuvo fuera de " +"rango o fue insertado en un campo de texto)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Problema purgando la revisión %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Recurso \"{0}\" no fue encontrado." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Purga completa" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "El usuario {0} no está autorizado para actualizar el recurso {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Acción no implementada." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "API de datos" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "No estás autorizado para ver esta página" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Acceso denegado" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +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.

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "No encontrado" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Punto de acceso API" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Solicitud incorrecta" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Nombre de la acción desconocida: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Crear" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Error JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Actualizar / Insertar" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Solicitud de datos incorrecta: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Consulta" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "No se puede listar la entidad de este tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Consulta (vía SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "No se puede leer la entidad de este tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Consultando" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "No se puede crear una entidad nueva de este tipo: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Ejemplo de consulta (primeros cinco resultados)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "No se puede agregar el paquete al índice de búsqueda" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Consulta ejemplo (resultados que contienen 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "No se puede actualizar la entidad de este tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Consulta ejemplo (vía sentencia SQL)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "No se puede actualizar el índice de búsqueda" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Ejemplo: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "No se puede borrar la entidad de este tipo: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Una simple consulta ajax (JSONP) a la data API usando jQuery." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "No hay una revisión especificada" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Ejemplo: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "No hay ninguna revisión con la identificación: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" msgstr "" -"Término de búsqueda faltante ('since_id=UUID' o 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "No se pueden leer los parámetros: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Descripción" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Opción de búsqueda errónea: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Guardar" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Registro desconocido: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Valor de qjson mal formado: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" msgstr "" -"Los parámetros requeridos debe estar en forma de un diccionario en código " -"json." -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Grupo no encontrado" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Cargando ..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organización no encontrada" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "API de datos" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Tipo de grupo incorrecto" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tabla" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organizaciones" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Grupos" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Etiquetas" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formatos" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Conjuntos de datos por página" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licencias" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Configuración de prueba" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "No autorizado para realizar una actualización masiva" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevancia" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "No estás autorizado para crear un grupo" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "El usuario %r no está autorizado para editar %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Error de integridad" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Última modificación" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "El usuario %r no está autorizado para editar %s autorizaciones" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Campo Personalizado Ascendente" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "No estás autorizado para eliminar el grupo %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Campo Personalizado Descendente" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "La organización ha sido eliminada." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Popular" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "El grupo ha sido eliminado." +#: 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" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s ha sido eliminadp." +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "texto personalizado" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "No estás autorizado para agregar miembros al grupo %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Código de País" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "No estás autorizado para borrar miembros del grupo %s" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "texto personalizado de recurso" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Miembro del grupo ha sido eliminado." +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Selecciona dos revisiones antes de hacer la comparación." +#: 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/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Historial de Revisión Grupo CKAN" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Cambios recientes al grupo CKAN:" +#: 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" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Mensaje del log:" +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Ahora estás siguiendo a {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Seguidores" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Ya no estás siguiendo a {0}" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Recursos" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "No estás autorizado para ver seguidores %s" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Imagen" -#: ckan/controllers/home.py:36 -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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL de la imagen" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -"Por favor actualiza tu perfil y añade tu dirección de " -"correo electrónico." +"ej: http://ejemplo.com/imagen.jpg (si está en blanco utiliza la url del " +"recurso)" -#: ckan/controllers/home.py:83 -#, 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." +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Explorador de Datos" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Gráfico" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parámetro \"{parameter_name}\" no es un entero" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Mapa" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "No se encontró el conjunto de datos" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Formato de revisión inválido: %r" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" msgstr "" -"Visualización de los conjuntos de datos {package_type} en formato {format} " -"no está soportado (No se encontró el archivo de plantilla {file})." -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "No estás autorizado a leer el paquete %s" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Historial de revisión del conjunto de datos CKAN" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Cambios recientes al conjunto de datos CKAN" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filtros" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "No está autorizado para crear crear el paquete" +#: 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" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "No está autorizado a editar este recurso" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "ej: 0" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "No se encontró el recurso " +#: 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" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "No estás autorizado para actualizar el conjunto de datos" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "ej: 100" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "El conjunto de datos {id} no pudo ser encontrado." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tipo de gráfico" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Debes añadir al menos un recurso de datos" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupo (Eje 1)" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Error" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Series (Eje 2)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "No estás autorizado a crear un recurso" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tipo de campo" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "No estás autorizado para crear un recurso para este paquete" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Campo de latitud" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "No se puede agregar el paquete al índice de búsqueda." +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Campo de longitud" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "No se puede actualizar el índice de búsqueda." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Campo de GeoJSON" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "El conjunto de datos ha sido eliminado." +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Auto acercar a características" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "No estás autorizado a borrar el paquete %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Marcadores de cluster" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "El recurso ha sido eliminado" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Número total de conjuntos de datos" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "No estás autorizado a eliminar el recurso %s" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Fecha" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "No se encontró la vista del recurso" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Total de conjuntos de datos" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "No se enctraron los datos del recurso" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Versiones de Conjuntos de Datos por Semana" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "No hay descargas disponibles" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Todas las versiones del conjunto de datos" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "No estás autorizado a leer el conjunto de datos %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Nuevos conjuntos de datos" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "No estás autorizado para leer el recurso %s" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Conjuntos de datos mejor valorados" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "No estás autorizado para editar recurso" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Valoración promedio" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "No se encontró la vista" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Número de valoraciones" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "No se encontró el tipo de Vista " +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Ninguna valoración" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Datos de vista de recurso no adecuados" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Conjuntos de datos más editados" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "No se proporcionó la vista de recurso" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Conjunto de datos" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "No se ha definido una previsualización." +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Número de ediciones" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Historial de revisiones del repositorio CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "No existen conjuntos de datos editados" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Cambios recientes del repositorio CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Grupos más grandes" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Conjuntos de datos afectados: %s.\n" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Grupo" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Revisión actualizada" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Número de conjuntos de datos" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Otro" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "No existen grupos" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Etiqueta no encontrada" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Tags preferidos" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Usuario no encontrado" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Nombre de la Etiqueta" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "No estás autorizado para crear un usuario" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Número de Conjuntos de Datos" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "No estás autorizado para crear un usuario" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "No estás autorizado a eliminar el usuario con id \"{user_id}\"." +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Usuario" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "No se ha especificado ningún usuario" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Menú de Estadísticas" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "No estás autorizado para editar el usuario %s" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Número Total de Conjuntos de Datos" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Perfil actualizado" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Texto" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "No estás autorizado para crear el usuario %s" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Sitio web" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Captcha erróneo. Inténtalo de nuevo." +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Url de página web" -#: ckan/controllers/user.py:265 -#, 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\"" +#: 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/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "No estás autorizado para editar un usuario" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Tu navegador no soporta iframes." -#: ckan/controllers/user.py:320 +#: ckan/authz.py:182 #, python-format -msgid "User %s not authorized to edit %s" -msgstr "El usuario %s no está autorizado para editar %s" +msgid "Authorization function not found: %s" +msgstr "Función de autorización no encontrada: %s" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "La contraseña introducida no es correcta" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administrador" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Contraseña anterior" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Editor" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "Contraseña incorrecta" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Miembro" -#: ckan/controllers/user.py:427 -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:461 -msgid "Unauthorized to request reset password." -msgstr "No estás autorizado a restablecer la contraseña." - -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" coincide con varios usuarios" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Se necesita ser administrador del sistema para administrar" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "No existe el usuario: %s" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Título del Sitio" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Revisa tu bandeja de entrada para el código de restablecimiento." +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Estilo" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "No se pudo enviar el enlace de restablecimiento: %s" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Lema del sitio" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "No estás autorizado a restablecer la contraseña." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Etiqueta del logotipo del sitio" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Clave de restablecimiento no válida. Inténtalo de nuevo." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:541 -msgid "Your password has been reset." -msgstr "Se ha restablecido tu contraseña." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Texto de la página acerca de" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "La contraseña debe tener 4 caracteres o más." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Texto introductorio" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Las contraseñas introducidas no coinciden." +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Texto en la página principal" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Debes proporcionar una contraseña" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "CSS personalizado" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Elemento siguiente no encontrado" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "CSS personalizable insertado en el encabezado de la página" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} no encontrado" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Página de inicio" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Todo" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"No se puede purgar el paquete %s como revisión asociada %s incluye paquetes " +"de datos no borrados %s" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Falta el valor" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problema purgando la revisión %s: %s" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "No se permite redirección a sitio externo." +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Purga completa" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} ha añadido la etiqueta {tag} al conjunto de datos {dataset}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Acción no implementada." -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} actualizó el grupo {group}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Acceso denegado" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} actualizó la organización {organization}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "No encontrado" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} actualizó el conjunto de datos {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Solicitud incorrecta" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} actualizó los extra {extra} del conjunto de datos {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Nombre de la acción desconocida: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" -"{actor} actualizó el recurso {resource} en el conjunto de datos {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Error JSON: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} actualizó su perfil" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Solicitud de datos incorrecta: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} borró el grupo {group}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "No se puede listar la entidad de este tipo: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} borró la organización {organization}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "No se puede leer la entidad de este tipo: %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} borró el conjunto de datos {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "No se puede crear una entidad nueva de este tipo: %s %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} eliminó el extra {extra} del conjunto de datos {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "No se puede agregar el paquete al índice de búsqueda" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} borró el recurso {resource} del conjunto de datos {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "No se puede actualizar la entidad de este tipo: %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} creó el grupo {group}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "No se puede actualizar el índice de búsqueda" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} creó la organización {organization}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "No se puede borrar la entidad de este tipo: %s %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} creó el conjunto de datos {dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "No hay una revisión especificada" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} agregó el extra {extra} al conjunto de datos {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "No hay ninguna revisión con la identificación: %s" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} agregó el recurso {resource} al conjunto de datos {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "" +"Término de búsqueda faltante ('since_id=UUID' o 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} se registró" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "No se pueden leer los parámetros: %r" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} eliminó la etiqueta {tag} del conjunto de datos {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Opción de búsqueda errónea: %s" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} comenzó a seguir {dataset}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Registro desconocido: %s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} comenzó a seguir a {user}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Valor de qjson mal formado: %r" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} comenzó a seguir a {group}" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" +"Los parámetros requeridos debe estar en forma de un diccionario en código " +"json." -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Ver" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Grupo no encontrado" -#: 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/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organización no encontrada" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Enero" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Tipo de grupo incorrecto" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Febrero" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organizaciones" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Marzo" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Grupos" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Abril" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Etiquetas" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Mayo" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formatos" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Junio" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licencias" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Julio" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "El usuario %r no está autorizado para editar %s" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Agosto" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "No autorizado para realizar una actualización masiva" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Septiembre" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "No estás autorizado para crear un grupo" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Octubre" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Error de integridad" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Noviembre" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "El usuario %r no está autorizado para editar %s autorizaciones" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Diciembre" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "No estás autorizado para eliminar el grupo %s" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Justo ahora" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "La organización ha sido eliminada." -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "El grupo ha sido eliminado." -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s ha sido eliminadp." -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "No estás autorizado para agregar miembros al grupo %s" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "No estás autorizado para borrar miembros del grupo %s" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Miembro del grupo ha sido eliminado." -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Selecciona dos revisiones antes de hacer la comparación." -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Historial de Revisión Grupo CKAN" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Cambios recientes al grupo CKAN:" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Mensaje del log:" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Ahora estás siguiendo a {0}" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Ya no estás siguiendo a {0}" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "No estás autorizado para ver seguidores %s" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: 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/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/home.py:73 +#, 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/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parámetro \"{parameter_name}\" no es un entero" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "No se encontró el conjunto de datos" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Formato de revisión inválido: %r" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Actualiza tu avatar en gravatar.com" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "No estás autorizado a leer el paquete %s" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Desconocido" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Historial de revisión del conjunto de datos CKAN" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Recurso sin nombre" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Cambios recientes al conjunto de datos CKAN" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Nuevo conjuto de datos creado." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "No está autorizado para crear crear el paquete" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Recursos editados." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "No está autorizado a editar este recurso" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Opciones editadas." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "No estás autorizado para actualizar el conjunto de datos" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "El conjunto de datos {id} no pudo ser encontrado." -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Debes añadir al menos un recurso de datos" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "No estás autorizado a crear un recurso" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "" -"¡No está disponible la dirección de correo electrónico del destinatario!" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "No estás autorizado para crear un recurso para este paquete" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organización" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "No se puede agregar el paquete al índice de búsqueda." -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "grupo" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "No se puede actualizar el índice de búsqueda." -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Falta el valor" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "El conjunto de datos ha sido eliminado." -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "No se esperaba el campo %(name)s." +msgid "Unauthorized to delete package %s" +msgstr "No estás autorizado a borrar el paquete %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Introduce un valor entero" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "El recurso ha sido eliminado" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Recursos" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "No estás autorizado a eliminar el recurso %s" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Recurso(s) del paquete invalido(s)" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "No se encontró la vista del recurso" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Extras" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "No se enctraron los datos del recurso" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "El vocabulario de etiquetas \"%s\" no existe" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "No hay descargas disponibles" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Usuario" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "No estás autorizado a leer el conjunto de datos %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Conjunto de datos" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "No estás autorizado para leer el recurso %s" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Grupo" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "No estás autorizado para editar recurso" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "No se puede parsear como un JSON válido" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "No se encontró la vista" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "No se encontró el tipo de Vista " -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organización no existe" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Datos de vista de recurso no adecuados" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "No es posible agregar un conjunto de datos a esta organización" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "No se proporcionó la vista de recurso" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Entero no válido" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "No se ha definido una previsualización." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Debe ser un número entero" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Historial de revisiones del repositorio CKAN" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Debe ser un número positivo" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Cambios recientes del repositorio CKAN" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Formato de fecha incorrecto" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Conjuntos de datos afectados: %s.\n" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "En el log_message no están permitidos los enlaces." +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Revisión actualizada" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "id del conjunto de datos ya existe" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Otro" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Recurso" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Etiqueta no encontrada" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Nombre o identificador de grupo desconocido." +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "No estás autorizado para crear un usuario" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Tipo de actividad" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "No estás autorizado para crear un usuario" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Los nombres deben ser cadenas de caracteres" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "No estás autorizado a eliminar el usuario con id \"{user_id}\"." -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Este nombre no se puede usar" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "No se ha especificado ningún usuario" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Must be at least %s characters long" -msgstr "Debe tener al menos %s caracteres de longitud" +msgid "Unauthorized to edit user %s" +msgstr "No estás autorizado para editar el usuario %s" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Usuario no encontrado" + +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Perfil actualizado" + +#: ckan/controllers/user.py:245 #, 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" +msgid "Unauthorized to create user %s" +msgstr "No estás autorizado para crear el usuario %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Captcha erróneo. Inténtalo de nuevo." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Debe contener solamente caracteres alfanuméricos (ascii) en minúsculas y " -"estos símbolos: -_" +"El usuario \"%s\" ha sido registrado, pero aún tienes la sesión iniciada " +"como \"%s\"" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Ese URL ya esta siendo utilizado." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "No estás autorizado para editar un usuario" -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, 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" +msgid "User %s not authorized to edit %s" +msgstr "El usuario %s no está autorizado para editar %s" -#: ckan/logic/validators.py:369 -#, 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/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "La contraseña introducida no es correcta" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "La versión debe tener como máximo %i caracteres" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Contraseña anterior" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Clave duplicada \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "Contraseña incorrecta" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Este nombre de grupo ya existe en la base de datos" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "" +"No se ha podido iniciar sesión. Nombre de usuario o contraseña incorrectos." -#: ckan/logic/validators.py:415 -#, 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/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "No estás autorizado a restablecer la contraseña." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, 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" +msgid "\"%s\" matched several users" +msgstr "\"%s\" coincide con varios usuarios" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "La etiqueta \"%s\" debe contener caracteres alfanuméricos o símbolos: -_." +msgid "No such user: %s" +msgstr "No existe el usuario: %s" + +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Revisa tu bandeja de entrada para el código de restablecimiento." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "La etiqueta \"%s\" no debe estar en mayúsculas" +msgid "Could not send reset link: %s" +msgstr "No se pudo enviar el enlace de restablecimiento: %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Los nombres de usuarios deben ser cadenas de caracteres" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "No estás autorizado a restablecer la contraseña." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Este nombre de inicio de sesión no está disponible." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Clave de restablecimiento no válida. Inténtalo de nuevo." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Introduce ambas contraseñas" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Se ha restablecido tu contraseña." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Las claves deben ser cadenas de caracteres" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "La contraseña debe tener 4 caracteres o más." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "La contraseña debe tener 4 caracteres o más" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Las contraseñas introducidas no coinciden." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Las contraseñas introducidas no coinciden" - -#: ckan/logic/validators.py:610 -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/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Debes proporcionar una contraseña" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "El nombre debe contener al menos %s caracteres" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Elemento siguiente no encontrado" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Este nombre de vocabulario ya está en uso." +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} no encontrado" -#: ckan/logic/validators.py:633 -#, 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/controllers/user.py:654 +msgid "Everything" +msgstr "Todo" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "No se ha encontrado el vocabulario de etiquetas." +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Falta el valor" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "La etiqueta %s no pertenece al vocabulario %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "No se permite redirección a sitio externo." -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Falta el nombre de la etiqueta" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} ha añadido la etiqueta {tag} al conjunto de datos {dataset}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "La etiqueta %s ya pertenece al vocabulario %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} actualizó el grupo {group}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Proporciona una URL válida" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} actualizó la organización {organization}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "rol no existe." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} actualizó el conjunto de datos {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Los conjuntos de datos sin organización no pueden ser privados." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} actualizó los extra {extra} del conjunto de datos {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "No es una lista" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" +"{actor} actualizó el recurso {resource} en el conjunto de datos {dataset}" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "No es una cadena" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} actualizó su perfil" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Este padre crearía un lazo en la jerarquía" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} borró el grupo {group}" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" y \"filter_values\" deben tener la misma longitud" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} borró la organización {organization}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" es requerido cuando se ingresa \"filter_values\"" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} borró el conjunto de datos {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" es requerido cuando se ingresa \"filter_fields\"" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} eliminó el extra {extra} del conjunto de datos {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Existe un campo de esquema con el mismo nombre" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} borró el recurso {resource} del conjunto de datos {dataset}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Crear objeto %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} creó el grupo {group}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Crear la relación de paquete: %s %s %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} creó la organización {organization}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "API REST: Crear objecto miembro %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} creó el conjunto de datos {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Intentando crear una organización como un grupo" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} agregó el extra {extra} al conjunto de datos {dataset}" -#: ckan/logic/action/create.py:881 -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/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} agregó el recurso {resource} al conjunto de datos {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Debe suministrar una valoración (parámetro \"rating\")" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} se registró" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "La valoración debe ser un valor entero." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} eliminó la etiqueta {tag} del conjunto de datos {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "La valoración debe ser entre %i y %i." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} comenzó a seguir {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} comenzó a seguir a {user}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Debe haber iniciado sesión para seguir a usuarios" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} comenzó a seguir a {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "No puedes seguirte a ti mismo" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Ver" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Ya estás siguiendo a {0}" +#: 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/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Debes haber iniciado sesión para seguir a un conjunto de datos." +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Enero" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "El usuario {username} no existe." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Febrero" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Debe haber iniciado sesión para seguir a un grupo." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Marzo" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Abril" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Eliminar paquete: %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Mayo" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Eliminar %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Junio" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Eliminar Miembro: %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Julio" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id no presente en los datos" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Agosto" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "No se ha encontrado el vocabulario \"%s\"" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Septiembre" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "No se ha encontrado la etiqueta \"%s\"" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Octubre" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Debe haber iniciado sesión para dejar de seguir algo" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Noviembre" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "No estás siguiendo a {0}" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Diciembre" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "No se ha encontrado el recurso." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Justo ahora" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "No ha especificado si quiere usar el parámetro \"query\"" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Debe ser un par : " +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "El campo \"{field}\" no se ha reconocido en resource_search." +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "No se ha encontrado el paquete." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: actualización de objeto %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Actualizar la relación de paquetes: %s %s %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "No se ha encontrado TaskStatus." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organización no encontrada." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: 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/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "El usuario %s no está autorizado para editar estos grupos" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: 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/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -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/lib/formatters.py:187 +msgid "{n}" +msgstr "{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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "No está autorizado a crear usuarios" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "No se ha encontrado el grupo." +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Es necesaria una clave de API válida para crear un paquete" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Es necesaria una clave de API válida para crear un grupo" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Actualiza tu avatar en gravatar.com" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "El usuario %s no está autorizado para agregar miembros" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Desconocido" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "El usuario %s no está autorizado para editar el grupo %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Recurso sin nombre" -#: 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/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Nuevo conjuto de datos creado." -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "Vista de recurso no encontrada, no se puede comprobar autorización." +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Recursos editados." -#: 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/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Opciones editadas." -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" -#: 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/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/auth/delete.py:103 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organizations" -msgstr "El usuario %s no está autorizado para eliminar organizaciones" +msgid "%s <%s>" +msgstr "%s <%s>" -#: 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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "" +"¡No está disponible la dirección de correo electrónico del destinatario!" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organización" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "No estás autorizado" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grupo" -#: 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/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Falta el valor" -#: ckan/logic/auth/get.py:130 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read package %s" -msgstr "El usuario %s no está autorizado para leer el paquete %s" +msgid "The input field %(name)s was not expected." +msgstr "No se esperaba el campo %(name)s." -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "El usuario %s no está autorizado para leer el recurso %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Introduce un valor entero" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "El usuario %s no está autorizado para leer el grupo %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/auth/get.py:258 -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/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Recurso(s) del paquete invalido(s)" -#: ckan/logic/auth/update.py:39 -#, 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/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Extras" -#: ckan/logic/auth/update.py:71 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "El usuario %s no está autorizado para editar el recurso %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "El vocabulario de etiquetas \"%s\" no existe" -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "No se puede parsear como un JSON válido" + +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" msgstr "" -"El usuario %s no está autorizado para cambiar el estado del paquete %s" -#: ckan/logic/auth/update.py:128 -#, 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/validators.py:47 +msgid "Organization does not exist" +msgstr "Organización no existe" -#: ckan/logic/auth/update.py:145 -#, 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/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "No es posible agregar un conjunto de datos a esta organización" -#: ckan/logic/auth/update.py:162 -#, 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/validators.py:92 +msgid "Invalid integer" +msgstr "Entero no válido" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Tiene que estar conectado para editar un usuario" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Debe ser un número entero" -#: ckan/logic/auth/update.py:197 -#, 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/validators.py:103 +msgid "Must be a postive integer" +msgstr "Debe ser un número positivo" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "El usuario {0} no autorizado para actualizar al usuario {1}" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Formato de fecha incorrecto" -#: ckan/logic/auth/update.py:216 -#, 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/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "En el log_message no están permitidos los enlaces." + +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "id del conjunto de datos ya existe" + +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Recurso" + +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Nombre o identificador de grupo desconocido." + +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Tipo de actividad" + +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Los nombres deben ser cadenas de caracteres" + +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Este nombre no se puede usar" -#: ckan/logic/auth/update.py:225 +#: ckan/logic/validators.py:338 #, 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" +msgid "Must be at least %s characters long" +msgstr "Debe tener al menos %s caracteres de longitud" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "User %s not authorized to update term_translation table" +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:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" msgstr "" -"El usuario %s no está autorizado a actualizar la tabla term_translation" +"Debe contener solamente caracteres alfanuméricos (ascii) en minúsculas y " +"estos símbolos: -_" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Es necesaria una clave de API válida para editar un paquete" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Ese URL ya esta siendo utilizado." -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Es necesaria una clave de API válida para editar un grupo" +#: ckan/logic/validators.py:366 +#, 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/model/license.py:222 -msgid "License not specified" -msgstr "No se especificó la licencia" +#: ckan/logic/validators.py:370 +#, 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/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" +#: ckan/logic/validators.py:376 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "La versión debe tener como máximo %i caracteres" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:394 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Clave duplicada \"%s\"" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Este nombre de grupo ya existe en la base de datos" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:416 +#, 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/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:420 +#, 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/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:428 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "La etiqueta \"%s\" debe contener caracteres alfanuméricos o símbolos: -_." -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "La etiqueta \"%s\" no debe estar en mayúsculas" -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Otra (Abierta)" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Los nombres de usuarios deben ser cadenas de caracteres" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Otra (Public Domain)" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Este nombre de inicio de sesión no está disponible." -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Otra (Atribución)" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Introduce ambas contraseñas" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Las claves deben ser cadenas de caracteres" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Cualquiera)" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "La contraseña debe tener 4 caracteres o más" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Otra (No comercial)" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Las contraseñas introducidas no coinciden" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Otra (No abierta)" +#: ckan/logic/validators.py:611 +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/model/package_relationship.py:54 +#: ckan/logic/validators.py:620 #, python-format -msgid "depends on %s" -msgstr "depende de %s" +msgid "Name must be at least %s characters long" +msgstr "El nombre debe contener al menos %s caracteres" -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is a dependency of %s" -msgstr "es dependiente de %s" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Este nombre de vocabulario ya está en uso." -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:634 #, python-format -msgid "derives from %s" -msgstr "deriva de %s" +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/model/package_relationship.py:55 -#, python-format -msgid "has derivation %s" -msgstr "tiene un derivado en %s" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "No se ha encontrado el vocabulario de etiquetas." -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:656 #, python-format -msgid "links to %s" -msgstr "enlaza a %s" +msgid "Tag %s does not belong to vocabulary %s" +msgstr "La etiqueta %s no pertenece al vocabulario %s" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "is linked from %s" -msgstr "enlazado desde %s" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Falta el nombre de la etiqueta" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:675 #, python-format -msgid "is a child of %s" -msgstr "es hijo de %s" +msgid "Tag %s already belongs to vocabulary %s" +msgstr "La etiqueta %s ya pertenece al vocabulario %s" -#: ckan/model/package_relationship.py:57 -#, python-format -msgid "is a parent of %s" -msgstr "es padre de %s" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Proporciona una URL válida" -#: ckan/model/package_relationship.py:61 -#, python-format -msgid "has sibling %s" -msgstr "tiene un hermano %s" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "rol no existe." -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Cargando ..." +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Los conjuntos de datos sin organización no pueden ser privados." -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "No existen datos de API para cargar para este recurso" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "No es una lista" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Falló carga de información de datos de API" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "No es una cadena" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "No se encontraron coincidencias" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Este padre crearía un lazo en la jerarquía" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Comience a escribir..." +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" y \"filter_values\" deben tener la misma longitud" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Ingreso es muy corto, debe tener al menos un caracter" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" es requerido cuando se ingresa \"filter_values\"" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Existen modificaciones no guardadas para este formulario" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" es requerido cuando se ingresa \"filter_fields\"" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Confirma la acción" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Existe un campo de esquema con el mismo nombre" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "¿Seguro de que deseas realizar esta acción?" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Confirmar" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Crear objeto %s" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Cancelar" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Crear la relación de paquete: %s %s %s" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Seguir" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "API REST: Crear objecto miembro %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Dejar de seguir" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Intentando crear una organización como un grupo" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Subir" +#: ckan/logic/action/create.py:893 +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/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Enlace" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Debe suministrar una valoración (parámetro \"rating\")" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Quitar" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "La valoración debe ser un valor entero." -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Imagen" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "La valoración debe ser entre %i y %i." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Archivo" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Debe haber iniciado sesión para seguir a usuarios" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Subir un archivo de tu PC" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "No puedes seguirte a ti mismo" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Ya estás siguiendo a {0}" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Reordenar recursos" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Debes haber iniciado sesión para seguir a un conjunto de datos." -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Guardar orden" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "El usuario {username} no existe." -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Guardando..." +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Debe haber iniciado sesión para seguir a un grupo." -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Sube un archivo" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Ocurrió un error" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Eliminar paquete: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Recurso subido" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Eliminar %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "No se pudo subir el archivo" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Eliminar Miembro: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "No se pudo autenticar subida" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id no presente en los datos" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "No se pudo obtener datos para el archivo subido" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "No se ha encontrado el vocabulario \"%s\"" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Estás subiendo un archivo. ¿Estás seguro que quieres salir y detener esta " -"subida?" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "No se ha encontrado la etiqueta \"%s\"" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Reordenar vista de recurso" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Debe haber iniciado sesión para dejar de seguir algo" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Editar" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "No estás siguiendo a {0}" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Mostrar más" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "No se ha encontrado el recurso." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Esconder" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "No ha especificado si quiere usar el parámetro \"query\"" -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Debe ser un par : " + +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "El campo \"{field}\" no se ha reconocido en resource_search." + +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "No se ha encontrado el paquete." + +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 #, python-format -msgid "Error %(error_code)s" -msgstr "Error %(error_code)s" +msgid "REST API: Update object %s" +msgstr "REST API: actualización de objeto %s" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Acerca de {0}" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Actualizar la relación de paquetes: %s %s %s" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "API CKAN" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "No se ha encontrado TaskStatus." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/action/update.py:1059 +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:45 +#, 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/templates/footer.html:24 -msgid "" -"Powered by CKAN" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." msgstr "" -"Gestionado con CKAN" +"No se ingresó id del conjunto de datos, no se puede comprobar autenticación." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Opciones de Administrador" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +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/templates/header.html:19 -msgid "View profile" -msgstr "Ver perfil" +#: 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/templates/header.html:26 +#: ckan/logic/auth/create.py:108 #, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" +msgid "User %s not authorized to edit these packages" +msgstr "El usuario %s no está autorizado para editar estos paquetes" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Pizarra" +#: 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/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Editar opciones" +#: 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/templates/header.html:37 -msgid "Settings" -msgstr "Configuración" +#: 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/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Salir" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "No está autorizado a crear usuarios" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Iniciar Sesión" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "No se ha encontrado el grupo." -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Registro" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Es necesaria una clave de API válida para crear un paquete" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Conjuntos de datos" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Es necesaria una clave de API válida para crear un grupo" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Buscar conjuntos de datos" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "El usuario %s no está autorizado para agregar miembros" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Búsqueda" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "El usuario %s no está autorizado para editar el grupo %s" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Ir al contenido" +#: 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/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Cargar menos" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "Vista de recurso no encontrada, no se puede comprobar autorización." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Cargar más" +#: 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/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/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/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administración" +#: 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/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Administradores" +#: 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/templates/admin/base.html:9 -msgid "Config" -msgstr "Configuración" +#: 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/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Papelera" +#: 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/templates/admin/config.html:16 -#: 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/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "No estás autorizado" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Restablecer" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "El usuario %s no está autorizado para leer estos paquetes" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Actualizar Configuración" +#: 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/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "Opciones de configuración de CKAN" +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/get.py:170 #, 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.

" +msgid "User %s not authorized to read group %s" +msgstr "El usuario %s no está autorizado para leer el grupo %s" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Confirma Restablecer" +#: ckan/logic/auth/get.py:252 +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/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Administrar CKAN" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "El usuario %s no está autorizado para editar el paquete %s" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/update.py:71 #, 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

" +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:100 +#, python-format +msgid "User %s not authorized to change state of package %s" 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

" +"El usuario %s no está autorizado para cambiar el estado del paquete %s" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Purgar" +#: ckan/logic/auth/update.py:128 +#, 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/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" +#: ckan/logic/auth/update.py:145 +#, 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:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" msgstr "" -"

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

" +"El usuario %s no está autorizado para editar los permisos del grupo %s" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "API de datos" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Tiene que estar conectado para editar un usuario" -#: ckan/templates/ajax_snippets/api_info.html:23 -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" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "El usuario %s no está autorizado para editar el usuario %s" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" +#: ckan/logic/auth/update.py:209 +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:217 +#, python-format +msgid "User %s not authorized to change state of revision" msgstr "" -"Más información en la documentación del API de Datos principal y del DataStore " -"de CKAN.

" +"El usuario %s no está autorizado para cambiar el estado de la revisión" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Punto de acceso API" +#: ckan/logic/auth/update.py:226 +#, 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/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" msgstr "" -"El API de Datos es accesible a través de las siguientes acciones de la API " -"de acción de CKAN." - -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Crear" +"El usuario %s no está autorizado a actualizar la tabla term_translation" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Actualizar / Insertar" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Es necesaria una clave de API válida para editar un paquete" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Consulta" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Es necesaria una clave de API válida para editar un grupo" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Consulta (vía SQL)" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "No se especificó la licencia" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Consultando" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Ejemplo de consulta (primeros cinco resultados)" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Consulta ejemplo (resultados que contienen 'jones')" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Consulta ejemplo (vía sentencia SQL)" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Ejemplo: Javascript" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: ckan/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." +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Ejemplo: Python" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: 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/model/license.py:301 +msgid "Other (Open)" +msgstr "Otra (Abierta)" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Haga click aquí para más información." +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Otra (Public Domain)" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Descargar recurso" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Otra (Atribución)" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Tu navegador no soporta iframes." +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "No está disponible la vista preliminar." +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Cualquiera)" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Más detalles..." +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Otra (No comercial)" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Otra (No abierta)" + +#: ckan/model/package_relationship.py:54 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "No se ha definido controlador para el tipo de dato: %(type)s." +msgid "depends on %s" +msgstr "depende de %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Estándar" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "es dependiente de %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Ingreso Estándar" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "deriva de %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Mediano" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "tiene un derivado en %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Ingreso de ancho mediano" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "enlaza a %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Completo" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "enlazado desde %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Ingreso de ancho completo" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "es hijo de %s" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Largo" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "es padre de %s" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Ingreso Largo" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "tiene un hermano %s" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Anteponer" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "No existen datos de API para cargar para este recurso" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Anteponer ingreso" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Falló carga de información de datos de API" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Campo Personalizado (vacío)" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Comience a escribir..." -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Campo Personalizado" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "No se encontraron coincidencias" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Marcado" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Área de Texto" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Existen modificaciones no guardadas para este formulario" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Seleccionar" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Confirma la acción" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Flujo de Actividad" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "¿Seguro de que deseas realizar esta acción?" -#: 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/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Confirmar" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Añadir un grupo" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Formulario de Grupo" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Dejar de seguir" -#: 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/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Seguir" -#: 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/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Enlace" -#: 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/public/base/javascript/modules/image-upload.js:61 +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/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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Administrar" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Subir" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Editar Grupo" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Quitar" -#: 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/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Subir un archivo de tu PC" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Seguidores" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Historial" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Archivo" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Añadir grupo" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Guardar orden" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Buscar grupos..." +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Guardando..." -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Nombre Ascendente" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Sube un archivo" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Nombre Descendente" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Ocurrió un error" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "No existen actualmente grupos para este sitio" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "No se pudo subir el archivo" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "¿Qué tal creando uno?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "No se pudo autenticar subida" -#: 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/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Recurso subido" -#: 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/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "No se pudo obtener datos para el archivo subido" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Agregar Miembro" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +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/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Usuario existente" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Agregar Filtro" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" msgstr "" -"Si quiere añadir un usuario existente, buscar el nombre del usuario abajo." - -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "o" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Usuario nuevo" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Editar" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Si deseas invitar a un usuario, escribe su dirección de correo electrónico" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Mostrar más" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Rol" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Esconder" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "¿Seguro de que deseas eliminar a este miembro?" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Error %(error_code)s" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Eliminar" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Acerca de {0}" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Guardar" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API CKAN" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "¿Qué son los roles?" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" -#: ckan/templates/group/member_new.html:81 +#: ckan/templates/footer.html:24 msgid "" -"

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

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

" +"Powered by CKAN" 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" +"Gestionado con CKAN" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Actualizar Grupo" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Opciones de Administrador" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Crear Grupo" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Ver perfil" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevancia" +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Última modificación" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Pizarra" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Popular" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Editar opciones" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Buscar conjuntos de datos..." +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Configuración" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Conjuntos de datos en el grupo: {group}" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Salir" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Historial de Revisiones reciente" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Iniciar Sesión" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Nombre" - -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Mi Grupo" - -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "mi-grupo" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registro" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Descripción" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Conjuntos de datos" -#: 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/header.html:116 +msgid "Search Datasets" +msgstr "Buscar conjuntos de datos" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "¿Seguro de que deseas eliminar este Grupo?" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Búsqueda" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Guardar Grupo" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Ir al contenido" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Cargar menos" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Conjuntos de Datos" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Cargar más" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Ver {name}" +#: 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/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Eliminar el conjunto de datos de este grupo" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administración" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "¿Qué son los Grupos?" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Administradores" -#: 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/admin/base.html:9 +msgid "Config" +msgstr "Configuración" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Comparar" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Papelera" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Eliminado" +#: ckan/templates/admin/config.html:16 +#: 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/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "leer más" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Restablecer" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Revisión" +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Actualizar Configuración" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Marca de tiempo" +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "Opciones de configuración de CKAN" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Autor" +#: ckan/templates/admin/config.html:33 +#, 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/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Mensaje de registro" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Confirma Restablecer" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Bienvenida" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrar CKAN" -#: ckan/templates/home/snippets/about_text.html:1 +#: ckan/templates/admin/index.html:20 +#, python-format 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/

" +"

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 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/" +"

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/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Bienvenido a CKAN" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Purgar" -#: 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 " +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

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

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

" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Esta es una sección destacada" +#: 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/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "Ej: ambiente" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Haga click aquí para más información." -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Buscar datos" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Descargar recurso" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Etiquetas populares" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "No está disponible la vista preliminar." -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} estadísticas" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Más detalles..." -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "conjunto de datos" +#: 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/home/snippets/stats.html:11 -msgid "datasets" -msgstr "conjuntos de datos" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Estándar" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "Organizaciones" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Ingreso Estándar" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "grupos" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Mediano" -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" -"Puedes usar formato Markdown aquí" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Ingreso de ancho mediano" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Este campo es requerido" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Completo" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Personalizado" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Ingreso de ancho completo" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "El formulario contiene entradas no válidas:" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Largo" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Campo requerido" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Ingreso Largo" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://ejemplo.com/mi-imagen.jpg" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Anteponer" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL de la imagen" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Anteponer ingreso" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Eliminar Carga" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Campo Personalizado (vacío)" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Formulario de la Organización" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Campo Personalizado" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Editar Conjunto de datos" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Marcado" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Añade conjunto de datos" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Área de Texto" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "encontrados para \"{query}\"" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Seleccionar" -#: 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/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Flujo de Actividad" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Hacer público" +#: 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/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Hacer privado" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Añadir un grupo" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Borrador" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Formulario de Grupo" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Privado" +#: 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/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Esta organización no tiene conjuntos de datos asociados a ella" +#: 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/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/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/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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Administrar" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Editar Grupo" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Agregar Organización" +#: ckan/templates/group/edit_base.html:23 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/organization/index.html:20 -msgid "Search organizations..." -msgstr "Buscar organizaciones" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Historial" -#: 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/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Añadir grupo" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nombre de usuario" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Buscar grupos..." -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "Dirección de correo electrónico" +#: 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/organization/member_new.html:62 -msgid "Update Member" -msgstr "Actualizar miembro" +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "¿Qué tal creando uno?" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/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/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Crear una Organizació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 "Editar Miembro" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Actualizar Organización" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Agregar Miembro" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Crear Organización" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Usuario existente" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Agrega conjunto de datos" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Si quiere añadir un usuario existente, buscar el nombre del usuario abajo." -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Conjuntos de datos en organización: {group}" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "o" -#: 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/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Usuario nuevo" -#: 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).

" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -"

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

" +"Si deseas invitar a un usuario, escribe su dirección de correo electrónico" -#: 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/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Rol" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Mi Organización" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "mi-organizacion" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Eliminar" -#: 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/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "¿Qué son los roles?" -#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/group/member_new.html:80 msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +"

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

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

" msgstr "" -"¿Seguro de que deseas eliminar esta Organización? Esto eliminará los " -"conjuntos de datos privados y públicos que pertenecen a esta organización." +"

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/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Guardar Organización" +#: 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/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Ver {organization_name}" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Actualizar Grupo" -#: ckan/templates/package/base.html:22 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/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Crear Grupo" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "¿Qué son los conjuntos de datos?" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Buscar 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/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Conjuntos de datos en el grupo: {group}" -#: 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/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Historial de Revisiones reciente" -#: 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/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Nombre" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Ver conjunto de datos" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Mi Grupo" + +#: ckan/templates/group/snippets/group_form.html:18 +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/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Editar metadatos" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "¿Seguro de que deseas eliminar este Grupo?" -#: 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/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Guardar Grupo" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Previsualización" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Ver {name}" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Actualizar" +#: 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/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Asocia este grupo con este conjunto de datos" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "¿Qué son los Grupos?" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Añadir al grupo" +#: 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/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/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Comparar" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Actualizar Conjunto de datos" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Eliminado" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Agregar datos al conjunto de datos" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "leer más" -#: 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/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Revisión" -#: 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/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Marca de tiempo" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Nuevo recurso" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Autor" -#: 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/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Mensaje de registro" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Bienvenida" + +#: ckan/templates/home/snippets/about_text.html:1 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"

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 "" -"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 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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Añade" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Bienvenido a CKAN" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"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 "" -"Esta es una versión antigua de este conjunto de datos, editada en " -"%(timestamp)s. Puede diferir significativamente de la versión actual." - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Subir a DataStore" +"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/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Error en la subida:" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Esta es una sección destacada" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Error:" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Ej: ambiente" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Buscar datos" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Estado" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Etiquetas populares" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Última actualización" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} estadísticas" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Nunca" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "conjunto de datos" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Log de subida" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "conjuntos de datos" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Detalles" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "Organizaciones" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "Fin del log" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupos" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Todos los recursos" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Ver recurso" +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Puedes usar formato Markdown aquí" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Editar recurso" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Este campo es requerido" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Personalizado" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Vistas" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "El formulario contiene entradas no válidas:" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "Punto de acceso API" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Campo requerido" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Ir al recurso" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://ejemplo.com/mi-imagen.jpg" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Descargar" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL de la imagen" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Eliminar Carga" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Del resumen del conjunto de datos" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Formulario de la Organización" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "Fuente: %(dataset)s" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Editar Conjunto de datos" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Todavía no existen vistas creadas para este recurso." +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Añade conjunto de datos" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "¿No encuentra las vistas que esperaba?" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "encontrados para \"{query}\"" -#: ckan/templates/package/resource_read.html:121 -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/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/package/resource_read.html:123 -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/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Hacer público" -#: ckan/templates/package/resource_read.html:124 -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/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Hacer privado" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"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/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Borrador" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Información adicional" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Privado" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Campo" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Esta organización no tiene conjuntos de datos asociados a ella" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Valor" +#: 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/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "desconocido" +#: 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/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Creado" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Agregar Organización" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Formato" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Buscar organizaciones" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licencia" +#: 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/package/resource_views.html:10 -msgid "New view" -msgstr "Nueva vista" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nombre de usuario" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Este recurso no tiene vistas" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Dirección de correo electrónico" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Añadir nuevo recurso" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Actualizar miembro" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format +#: ckan/templates/organization/member_new.html:81 msgid "" -"

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

" +"

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 "" -"

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

" +"

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/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API Docs" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Crear una Organización" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "volcado completo de {format}" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Actualizar Organización" -#: ckan/templates/package/search.html:56 -#, python-format +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Crear Organización" + +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Agrega conjunto de datos" + +#: ckan/templates/organization/snippets/feeds.html:3 +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 "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " +"

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

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 "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " +" 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 "" -"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" +"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/package/view_edit_base.html:12 -msgid "View view" -msgstr "Ver vista" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Mi Organización" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Ver previsualización" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "mi-organizacion" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Información Adicional" +#: 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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Fuente" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"¿Seguro de que deseas eliminar esta Organización? Esto eliminará los " +"conjuntos de datos privados y públicos que pertenecen a esta organización." -#: ckan/templates/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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Guardar Organización" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Versió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/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Estado" +#: ckan/templates/package/base.html:22 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/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Última actualización" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "¿Qué son los conjuntos de datos?" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: 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/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: 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/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." -msgstr "" +#: 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/snippets/cannot_create_package.html:19 -msgid "" -"Ask a system administrator to create an organization before you can " -"continue." -msgstr "" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Ver conjunto de datos" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "API de datos" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Editar metadatos" -#: 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/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/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "ej. Un título descriptivo" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Previsualización" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "ej. mi-conjunto-de-datos" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Actualizar" -#: 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/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Asocia este grupo con este conjunto de 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/group_list.html:14 +msgid "Add to group" +msgstr "Añadir al grupo" -#: ckan/templates/package/snippets/package_basic_fields.html:41 -msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" -"Definiciones de licencias e información adicional puede ser encontrada en opendefinition.org" +#: ckan/templates/package/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/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organización" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Actualizar Conjunto de datos" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Sin organización" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Agregar datos al conjunto de datos" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Visibilidad" +#: 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/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Público" +#: 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/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Activo" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Nuevo recurso" -#: ckan/templates/package/snippets/package_form.html:28 +#: 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 "" -"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." +" Data Explorer views may be slow and unreliable unless the DataStore " +"extension is enabled. For more information, please see the Data Explorer " +"documentation. " 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:44 -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" +"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/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Añade" -#: 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/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "" +"Esta es una versión antigua de este conjunto de datos, editada en " +"%(timestamp)s. Puede diferir significativamente de la versión actual." -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Email del Autor" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Todos los recursos" -#: 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/resource_edit_base.html:19 +msgid "View resource" +msgstr "Ver recurso" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Email del Mantenedor" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Actualizar Recurso" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Vistas" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" -msgstr "" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "Punto de acceso API" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Ir al recurso" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "ej. Precios del Oro Enero 2011" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Descargar" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Algunas notas útiles sobre los datos" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "ej. CSV, XML ó JSON" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Del resumen del conjunto de datos" -#: ckan/templates/package/snippets/resource_form.html:40 -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/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Fuente: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "ej. 2012-06-05" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "Todavía no existen vistas creadas para este recurso." -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Tamaño de Archivo" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "¿No encuentra las vistas que esperaba?" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "ej. 1024" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "Tipo MIME" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "ej. application/json" +#: ckan/templates/package/resource_read.html:121 +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/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "¿Seguro de que deseas eliminar este recurso?" +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Anterior" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Información adicional" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Guardar y Agregar otro" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Campo" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Terminar" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valor" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "¿Qué es un recurso?" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "desconocido" + +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -"Un recurso puede ser cualquier archivo o enlace a un archivo que contiene " -"datos útiles." -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Explorar" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Creado" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Más información" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Formato" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Incrustar" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licencia" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "Esta vista de recurso no está disponible al momento." +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nueva vista" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Incrustar vista de recurso" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Este recurso no tiene vistas" -#: ckan/templates/package/snippets/resource_view.html:66 +#: 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:26 +#, python-format msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +"

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

" msgstr "" -"Puedes copiar y pegar el código de inserción en un CMS o blog que soporte " -"HTML crudo" - -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Ancho" - -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Alto" +"

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

" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Código" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Previsualización de Recurso" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API Docs" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Datos y Recursos" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "volcado completo de {format}" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Este conjunto de datos no tiene datos" +#: 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/snippets/revisions_table.html:24 +#: ckan/templates/package/search.html:60 #, python-format -msgid "Read dataset as of %s" -msgstr "Leer conjunto de datos a partir de %s" +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/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Crear conjunto de datos" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Todas las vistas" -#: 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/view_edit_base.html:12 +msgid "View view" +msgstr "Ver vista" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "ej: Mi Vista" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Ver previsualización" -#: 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/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Información Adicional" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Agregar Filtro" +#: 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: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/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Quitar Filtro" +#: 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/view_form_filters.html:46 -msgid "Filters" -msgstr "Filtros" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Estado" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "¿Qué es una vista?" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Última actualización" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." msgstr "" -"Una vista es una representación de los datos que se tienen sobre un recurso" - -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Diferencias" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Diferencias en las revisiones -" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Diferencias" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Sin diferencias" +#: 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/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Historial de revisiones" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Título" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Revisiones" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "ej. Un título descriptivo" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Recuperar" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "ej. mi-conjunto-de-datos" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Cambios" +#: 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/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Etiquetas de los conjuntos de 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/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entidad" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Definiciones de licencias e información adicional puede ser encontrada en opendefinition.org" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Nuevo elemento de actividad" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organización" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Incrustar Visor de datos" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Sin organización" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Inserta esta vista en tu página web copiando este código:" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Visibilidad" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Escoge la anchura y altura en píxeles:" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Público" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Anchura:" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Activo" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Altura:" +#: 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/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Estado de Datapusher: {status}" +#: 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/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "URL de Trackback" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Siguiente: Agregar Datos" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Mostrar Más {facet_type}" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://ejemplo.com/dataset.json" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Mostrar Solamente Populares {facet_type}" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "No hay {facet_type} que coincidan con esta búsqueda" +#: 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/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Inicio" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email del Autor" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Idioma" +#: 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/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Ir" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email del Mantenedor" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "No se ha proporcionado una licencia" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Actualizar Recurso" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" msgstr "" -"Este conjunto de datos cumple con la Definición de Conocimiento Abierto - " -"Open Definition." - -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "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:17 -msgid "Submit" -msgstr "Enviar" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Ordenar por" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "ej. Precios del Oro Enero 2011" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filtrar Resultados" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Algunas notas útiles sobre los datos" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Intenta otra búsqueda.

" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "ej. CSV, XML ó JSON" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "" +#: ckan/templates/package/snippets/resource_form.html:40 +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/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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "ej. 2012-06-05" -#: 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/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Tamaño de Archivo" -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "ej. 1024" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Conjuntos de datos no encontrados" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "Tipo MIME" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "ej. application/json" -#: 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/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "¿Seguro de que deseas eliminar este recurso?" -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Anterior" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "No se han encontrado grupos" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Guardar y Agregar otro" -#: 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/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Terminar" -#: 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/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "¿Qué es un recurso?" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" -msgstr[1] "" +#: 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/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Lo sentimos, no se encontraron organizaciones" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Explorar" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Social" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Más información" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Suscribir" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Incrustar" -#: 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:82 -msgid "Email" -msgstr "Dirección de correo electrónico" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "Esta vista de recurso no está disponible al momento." -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Incrustar vista de recurso" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Cambios" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Puedes copiar y pegar el código de inserción en un CMS o blog que soporte " +"HTML crudo" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Buscar Etiquetas" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Ancho" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Feed de Noticias" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Alto" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Mis Conjuntos de Datos" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Código" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Mis organizaciones" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Previsualización de Recurso" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Mis Grupos" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Datos y Recursos" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Actividad de los elementos que sigues" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Este conjunto de datos no tiene datos" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "No has creado ningún conjunto de datos." +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Leer conjunto de datos a partir de %s" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "¿Crear uno ahora?" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Crear conjunto de datos" -#: 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/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/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "No eres miembro de ninguna de las organizaciones." +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "ej: Mi Vista" -#: 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/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "ej: Información sobre mi vista" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Información de la Cuenta" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Quitar Filtro" -#: 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/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "¿Qué es una vista?" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Cambie sus detalles" +#: 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/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Nombre completo" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Diferencias" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "ej: Joe Bloggs" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Diferencias en las revisiones -" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "ej: joe@ejemplo.com" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Diferencias" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Un poco de información acerca tuyo" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Sin diferencias" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Suscribirse a emails de notificación" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Historial de revisiones" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Cambia tu contraseña" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Revisiones" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Recuperar" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Contraseña" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Cambios" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Confirmar Contraseña" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Etiquetas de los conjuntos de datos" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "¿Seguro que deseas eliminar a este miembro?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entidad" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "¿Seguro que deseas regenerar la clave API?" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Nuevo elemento de actividad" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Regenerar Clave API" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Incrustar Visor de datos" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Actualizar Perfil" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Inserta esta vista en tu página web copiando este código:" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Todos los Usuarios" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Escoge la anchura y altura en píxeles:" -#: 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/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Anchura:" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "¿Necesita una cuenta?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Altura:" -#: 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/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Estado de Datapusher: {status}" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Crear una Cuenta" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "URL de Trackback" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "¿Olvidaste tu contraseña?" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Mostrar Más {facet_type}" -#: 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/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Mostrar Solamente Populares {facet_type}" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "¿Olvidaste tu contraseña?" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "No hay {facet_type} que coincidan con esta búsqueda" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Sesión terminada" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Inicio" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Cerraste la sesión." +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Idioma" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Ya inició sesión como {user}." +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Ir" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Salir" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "No se ha proporcionado una licencia" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Recordarme" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "" +"Este conjunto de datos cumple con la Definición de Conocimiento Abierto - " +"Open Definition." -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Ya inició la sesión" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "No existe una descripción para esta organización" -#: ckan/templates/user/logout_first.html:24 -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/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Este conjunto de datos no tiene una descripción" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Cerrar la sesión ahora" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Enviar" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Registro" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Ordenar por" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Regístrese para una Cuenta" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filtrar Resultados" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "¿Por qué registrarse?" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Intenta otra búsqueda.

" -#: 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/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "nombre de usuario" +#: 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/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Nombre Completo" +#: 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/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Crear Cuenta" +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Restablece tu contraseña" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Conjuntos de datos no encontrados" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Restablecer Contraseña" +#: 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/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Actualizar contraseña" +#: 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/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "¿Cómo funciona esto?" +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/user/perform_reset.html:40 -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/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "No se han encontrado grupos" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "El usuario no ha creado ningún conjunto de datos." +#: 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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "No has proporcionado una biografía." +#: 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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Este usuario no tiene una biografía." +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Lo sentimos, no se encontraron organizaciones" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Esto significa que solo tu puedes ver esto" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Miembro Desde" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Suscribir" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "Clave API" +#: 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:82 +msgid "Email" +msgstr "Dirección de correo electrónico" -#: 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/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Restablecer contraseña" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Cambios" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Solicitar restablecimiento" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Buscar Etiquetas" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Ingrese tu nombre de usuario en el recuadro y te enviaremos un email con un " -"enlace para ingresar una nueva contraseña." +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Feed de Noticias" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Actividad de:" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Mis Conjuntos de Datos" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Lista de búsqueda..." +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mis organizaciones" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "No estás siguiendo nada" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mis Grupos" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Sin seguidores" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Actividad de los elementos que sigues" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Buscar Usuarios" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "No has creado ningún conjunto de datos." -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Completado" +#: 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:16 +msgid "Create one now?" +msgstr "¿Crear uno ahora?" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Pendiente" +#: 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." -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Enviando" +#: 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." -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Sin actualizar aún" +#: 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" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "No se ha encontrado el recurso." +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Información de la Cuenta" -#: ckanext/datastore/db.py:663 +#: ckan/templates/user/edit.html:19 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -"Los datos fueron inválidos (por ejemplo: un valor numérico estuvo fuera de " -"rango o fue insertado en un campo de texto)." - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -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/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Conjuntos de datos por página" +"Tu perfil le permite a otros usuarios de CKAN conocer acerca tuyo y sobre lo" +" que haces." -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Configuración de prueba" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Cambie sus detalles" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Campo Personalizado Ascendente" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Nombre completo" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Campo Personalizado Descendente" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "ej: Joe Bloggs" -#: 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" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "ej: joe@ejemplo.com" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "texto personalizado" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Un poco de información acerca tuyo" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Código de País" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Suscribirse a emails de notificación" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "texto personalizado de recurso" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Cambia tu contraseña" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Este grupo no tiene una descripción" - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" -"La herramienta de previsualización de CKAN tiene algunas características " -"poderosas" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Contraseña" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "URL de la imagen" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Confirmar Contraseña" -#: 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)" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "¿Seguro que deseas eliminar a este miembro?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Explorador de Datos" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "¿Seguro que deseas regenerar la clave API?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Tabla" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Regenerar Clave API" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Gráfico" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Actualizar Perfil" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Mapa" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Todos los Usuarios" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -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 "Conectarse" -#: 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" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "¿Necesita una cuenta?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "ej: 0" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Entonces regístrese, solamente toma un minuto" -#: 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" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Crear una Cuenta" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "ej: 100" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "¿Olvidaste tu contraseña?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Tipo de gráfico" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Grupo (Eje 1)" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "¿Olvidaste tu contraseña?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Series (Eje 2)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Sesión terminada" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Tipo de campo" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Cerraste la sesión." -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Campo de latitud" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Ya inició sesión como {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Campo de longitud" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Salir" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "Campo de GeoJSON" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Recordarme" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Auto acercar a características" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Ya inició la sesión" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Marcadores de cluster" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Número total de conjuntos de datos" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Cerrar la sesión ahora" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Fecha" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registro" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Total de conjuntos de datos" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Regístrese para una Cuenta" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Versiones de Conjuntos de Datos por Semana" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "¿Por qué registrarse?" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Todas las versiones del conjunto de datos" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Crear conjuntos de datos, grupos y otras cosas interesantes" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Nuevos conjuntos de datos" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "nombre de usuario" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Conjuntos de datos mejor valorados" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nombre Completo" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Valoración promedio" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Crear Cuenta" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Número de valoraciones" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Restablece tu contraseña" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Ninguna valoración" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Restablecer Contraseña" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Conjuntos de datos más editados" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Actualizar contraseña" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Número de ediciones" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "¿Cómo funciona esto?" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "No existen conjuntos de datos editados" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Simplemente ingresa una nueva contraseña y actualizaremos tu cuenta" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Grupos más grandes" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "El usuario no ha creado ningún conjunto de datos." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Número de conjuntos de datos" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "No has proporcionado una biografía." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "No existen grupos" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Este usuario no tiene una biografía." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Tags preferidos" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Nombre de la Etiqueta" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Esto significa que solo tu puedes ver esto" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Número de Conjuntos de Datos" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Miembro Desde" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "Clave API" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Menú de Estadísticas" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Restablecer tu contraseña" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Número Total de Conjuntos de Datos" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Restablecer contraseña" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Texto" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Solicitar restablecimiento" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Ingrese tu nombre de usuario en el recuadro y te enviaremos un email con un " +"enlace para ingresar una nueva contraseña." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Sitio web" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Actividad de:" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "Url de página web" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Lista de búsqueda..." -#: 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/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" diff --git a/ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo b/ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo index 2f34001c69c..9a40c463490 100644 Binary files a/ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo and b/ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po b/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po index bec52fbcf7c..bb41574d27d 100644 --- a/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po +++ b/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po @@ -1,38 +1,671 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: fa_IR\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/authz.py:179 +#: 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:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "منبع یافت نشد" + +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "اجازه دیدن این صفحه را ندارد" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/controller.py:46 +#, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" + +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: 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:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "" + +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "" + +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "" + +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "" + +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +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:28 +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:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "" + +#: 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:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "" + +#: 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:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "" + +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +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:101 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "نقشه" + +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +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/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "تعداد کل داده‌ها" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "تاریخ" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "داده‌های جدید" + +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "" + +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "تعداد ویرایش" + +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "بزرگترین گروه‌ها" + +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "گروه" + +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "تعداد داده‌ها" + +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "منوی آمار" + +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "تعداد کل داده‌ها" + +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "" + +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +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:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckan/authz.py:182 #, python-format msgid "Authorization function not found: %s" msgstr "تابع اخیار دهنده یافت نشد %s" -#: ckan/authz.py:191 ckan/templates/header.html:14 +#: ckan/authz.py:194 ckan/templates/header.html:14 msgid "Admin" msgstr "مدیر" -#: ckan/authz.py:195 +#: ckan/authz.py:198 msgid "Editor" msgstr "ویرایشگر" -#: ckan/authz.py:199 +#: ckan/authz.py:202 msgid "Member" msgstr "عضو" @@ -56,7 +689,7 @@ msgstr "" msgid "Site Tag Logo" msgstr "لوگوی تگ سایت" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 #: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 @@ -65,188 +698,179 @@ msgstr "لوگوی تگ سایت" msgid "About" msgstr "درباره" -#: ckan/controllers/admin.py:54 +#: ckan/controllers/admin.py:55 msgid "About page text" msgstr "متن صفحه درباره" -#: ckan/controllers/admin.py:55 +#: ckan/controllers/admin.py:56 msgid "Intro Text" msgstr "توضیح" -#: ckan/controllers/admin.py:55 +#: ckan/controllers/admin.py:56 msgid "Text on home page" msgstr "متن روی صفحه اصلی" -#: ckan/controllers/admin.py:56 +#: ckan/controllers/admin.py:57 msgid "Custom CSS" msgstr "css سفارشی" -#: ckan/controllers/admin.py:56 +#: ckan/controllers/admin.py:57 msgid "Customisable css inserted into the page header" msgstr "سفارشی سازی css درج شده در header صفحه" -#: ckan/controllers/admin.py:57 +#: ckan/controllers/admin.py:58 msgid "Homepage" msgstr "صفحه اصلی" -#: ckan/controllers/admin.py:160 +#: ckan/controllers/admin.py:161 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -#: ckan/controllers/admin.py:182 +#: ckan/controllers/admin.py:183 #, python-format msgid "Problem purging revision %s: %s" msgstr "" -#: ckan/controllers/admin.py:184 +#: ckan/controllers/admin.py:185 msgid "Purge complete" msgstr "پاک سازی کامل شد" -#: ckan/controllers/admin.py:186 +#: ckan/controllers/admin.py:187 msgid "Action not implemented." msgstr "عملیات مورد نظر پیاده سازی نشده است" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "اجازه دیدن این صفحه را ندارد" - -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 msgid "Access denied" msgstr "دسترسی منع شده است" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 #: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 msgid "Not found" msgstr "یافت نشد" -#: ckan/controllers/api.py:134 +#: ckan/controllers/api.py:136 msgid "Bad request" msgstr "درخواست نامناسب" -#: ckan/controllers/api.py:168 +#: ckan/controllers/api.py:170 #, python-format msgid "Action name not known: %s" msgstr "این عمل شناخته شده نیست: %s" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 #, python-format msgid "JSON Error: %s" msgstr "" "خطا در JSON:\n" "%s" -#: ckan/controllers/api.py:195 +#: ckan/controllers/api.py:197 #, python-format msgid "Bad request data: %s" msgstr "تقاضای نامناسب داده : %s" -#: ckan/controllers/api.py:298 +#: ckan/controllers/api.py:300 #, python-format msgid "Cannot list entity of this type: %s" msgstr "موجودیتی از این نوع قابل نمایش نیست: %s" -#: ckan/controllers/api.py:327 +#: ckan/controllers/api.py:329 #, python-format msgid "Cannot read entity of this type: %s" msgstr "موجودیتی از این نوع قابل خواندن نیست: %s" -#: ckan/controllers/api.py:365 +#: ckan/controllers/api.py:367 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "نمی توان موجودیت جدیدی از این نوع را ایجاد کرد :%s %s" -#: ckan/controllers/api.py:398 +#: ckan/controllers/api.py:400 msgid "Unable to add package to search index" msgstr "ناتوان از افزودن پکیج به ایندکس جستجو " -#: ckan/controllers/api.py:428 +#: ckan/controllers/api.py:430 #, python-format msgid "Cannot update entity of this type: %s" msgstr "" -#: ckan/controllers/api.py:452 +#: ckan/controllers/api.py:454 msgid "Unable to update search index" msgstr "ناتوان از به روز رسانی ایندکس جستجو" -#: ckan/controllers/api.py:475 +#: ckan/controllers/api.py:477 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "" -#: ckan/controllers/api.py:498 +#: ckan/controllers/api.py:500 msgid "No revision specified" msgstr "هیچ بازخوانی ثبت نشده" -#: ckan/controllers/api.py:502 +#: ckan/controllers/api.py:504 #, python-format msgid "There is no revision with id: %s" msgstr "" -#: ckan/controllers/api.py:512 +#: ckan/controllers/api.py:514 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/controllers/api.py:524 +#: ckan/controllers/api.py:526 #, python-format msgid "Could not read parameters: %r" msgstr "پارامتر ها خوانده نشد: %r" -#: ckan/controllers/api.py:585 +#: ckan/controllers/api.py:587 #, python-format msgid "Bad search option: %s" msgstr "پارامتر های جستجو اشتباه است: %s" -#: ckan/controllers/api.py:588 +#: ckan/controllers/api.py:590 #, python-format msgid "Unknown register: %s" msgstr "رجیستر ناشناخته:%s" -#: ckan/controllers/api.py:597 +#: ckan/controllers/api.py:599 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:607 +#: ckan/controllers/api.py:609 msgid "Request params must be in form of a json encoded dictionary." msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 msgid "Group not found" msgstr "گروه یافت نشد" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 msgid "Incorrect group type" msgstr "نوع گروه اشتباه است" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 #: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 @@ -258,22 +882,23 @@ msgstr "نوع گروه اشتباه است" msgid "Organizations" msgstr "سازمان ها" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 #: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 #: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "گروه ها" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 #: 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 @@ -281,278 +906,268 @@ msgstr "گروه ها" msgid "Tags" msgstr "برچسب ها" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 msgid "Formats" msgstr "فرمت ها" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:448 +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "" + +#: ckan/controllers/group.py:442 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:466 +#: ckan/controllers/group.py:460 msgid "Unauthorized to create a group" msgstr "اجازه ساخت گروه ندارید" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "" - -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 #: ckan/controllers/user.py:249 ckan/controllers/user.py:379 #: ckan/controllers/user.py:548 msgid "Integrity Error" msgstr "خطای یکپارچگی" -#: ckan/controllers/group.py:600 +#: ckan/controllers/group.py:594 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 #, python-format msgid "Unauthorized to delete group %s" msgstr "دسترسی لازم برای حذف گروه %s را ندارید." -#: ckan/controllers/group.py:626 +#: ckan/controllers/group.py:620 msgid "Organization has been deleted." msgstr "سازمان حذف شده است" -#: ckan/controllers/group.py:628 +#: ckan/controllers/group.py:622 msgid "Group has been deleted." msgstr "گروه حذف شده است" -#: ckan/controllers/group.py:630 +#: ckan/controllers/group.py:624 #, python-format msgid "%s has been deleted." msgstr "" -#: ckan/controllers/group.py:704 +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:705 #, python-format msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 #, python-format msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/controllers/group.py:730 +#: ckan/controllers/group.py:731 msgid "Group member has been deleted." msgstr "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 msgid "Select two revisions before doing the comparison." msgstr "" -#: ckan/controllers/group.py:778 +#: ckan/controllers/group.py:779 msgid "CKAN Group Revision History" msgstr "" -#: ckan/controllers/group.py:782 +#: ckan/controllers/group.py:783 msgid "Recent changes to CKAN Group: " msgstr "" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 msgid "Log message: " msgstr "" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 #: ckan/controllers/user.py:715 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 #: ckan/controllers/user.py:735 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 #, python-format msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/controllers/home.py:36 +#: ckan/controllers/home.py:35 msgid "This site is currently off-line. Database is not initialised." msgstr "" -#: ckan/controllers/home.py:81 +#: ckan/controllers/home.py:73 #, python-format msgid "Please update your profile and add your email address. " msgstr "" -#: ckan/controllers/home.py:83 +#: ckan/controllers/home.py:75 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "" -#: ckan/controllers/package.py:290 +#: ckan/controllers/package.py:288 msgid "Invalid search query: {error_message}" msgstr "" -#: ckan/controllers/package.py:307 +#: ckan/controllers/package.py:304 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 msgid "Dataset not found" msgstr "" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 #, python-format msgid "Invalid revision format: %r" msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 #, python-format msgid "Unauthorized to read package %s" msgstr "" -#: ckan/controllers/package.py:448 +#: ckan/controllers/package.py:444 msgid "CKAN Dataset Revision History" msgstr "" -#: ckan/controllers/package.py:451 +#: ckan/controllers/package.py:447 msgid "Recent changes to CKAN Dataset: " msgstr "" -#: ckan/controllers/package.py:507 +#: ckan/controllers/package.py:503 msgid "Unauthorized to create a package" msgstr "" -#: ckan/controllers/package.py:577 +#: ckan/controllers/package.py:573 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "منبع یافت نشد" - -#: ckan/controllers/package.py:654 +#: ckan/controllers/package.py:644 msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:660 +#: ckan/controllers/package.py:650 msgid "You must add at least one data resource" msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "" - -#: ckan/controllers/package.py:691 +#: ckan/controllers/package.py:681 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:727 +#: ckan/controllers/package.py:714 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:941 +#: ckan/controllers/package.py:928 msgid "Unable to add package to search index." msgstr "" -#: ckan/controllers/package.py:989 +#: ckan/controllers/package.py:976 msgid "Unable to update search index." msgstr "" -#: ckan/controllers/package.py:1026 +#: ckan/controllers/package.py:1013 msgid "Dataset has been deleted." msgstr "" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1041 msgid "Resource has been deleted." msgstr "" -#: ckan/controllers/package.py:1060 +#: ckan/controllers/package.py:1052 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1158 +#: ckan/controllers/package.py:1150 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1167 +#: ckan/controllers/package.py:1159 msgid "No download is available" msgstr "" -#: ckan/controllers/package.py:1305 +#: ckan/controllers/package.py:1296 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1413 +#: ckan/controllers/package.py:1404 #, python-format msgid "Unauthorized to read resource %s" msgstr "" -#: ckan/controllers/package.py:1477 +#: ckan/controllers/package.py:1468 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1495 +#: ckan/controllers/package.py:1486 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1501 +#: ckan/controllers/package.py:1492 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1557 +#: ckan/controllers/package.py:1548 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1566 +#: ckan/controllers/package.py:1557 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1595 +#: ckan/controllers/package.py:1586 msgid "No preview has been defined." msgstr "" @@ -581,13 +1196,6 @@ msgstr "دیگر" msgid "Tag not found" msgstr "برچسب یافت نشد" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "کاربر مورد نظر یافت نشد" - #: ckan/controllers/user.py:161 msgid "Unauthorized to register as a user." msgstr "" @@ -610,6 +1218,13 @@ msgstr "هیج کاربری مشخص نشده است" msgid "Unauthorized to edit user %s" msgstr "" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "کاربر مورد نظر یافت نشد" + #: ckan/controllers/user.py:234 ckan/controllers/user.py:367 msgid "Profile updated" msgstr "پروفایل به روز رسانی شد" @@ -810,7 +1425,7 @@ msgstr "" msgid "{actor} started following {group}" msgstr "" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -870,129 +1485,129 @@ msgstr "" msgid "December" msgstr "" -#: ckan/lib/formatters.py:116 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "" -#: ckan/lib/formatters.py:118 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" -#: ckan/lib/formatters.py:121 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" -#: ckan/lib/formatters.py:127 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" -#: ckan/lib/formatters.py:130 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" -#: ckan/lib/formatters.py:132 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" -#: ckan/lib/formatters.py:148 +#: ckan/lib/formatters.py:146 msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:153 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "" -#: ckan/lib/formatters.py:169 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "" -#: ckan/lib/formatters.py:171 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "" -#: ckan/lib/formatters.py:173 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "" -#: ckan/lib/formatters.py:175 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "" -#: ckan/lib/formatters.py:177 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "" -#: ckan/lib/formatters.py:189 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:191 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:193 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:195 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:197 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:199 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:201 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:203 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:205 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:1018 +#: ckan/lib/helpers.py:1048 msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 msgid "Unknown" msgstr "" -#: ckan/lib/helpers.py:1330 +#: ckan/lib/helpers.py:1361 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1370 +#: ckan/lib/helpers.py:1401 msgid "Created new dataset." msgstr "" -#: ckan/lib/helpers.py:1372 +#: ckan/lib/helpers.py:1403 msgid "Edited resources." msgstr "" -#: ckan/lib/helpers.py:1374 +#: ckan/lib/helpers.py:1405 msgid "Edited settings." msgstr "" -#: ckan/lib/helpers.py:1616 +#: ckan/lib/helpers.py:1648 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" -#: ckan/lib/helpers.py:1618 +#: ckan/lib/helpers.py:1650 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1023,7 +1638,8 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:32 #: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 #: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 msgid "Missing value" msgstr "" @@ -1032,25 +1648,19 @@ msgstr "" msgid "The input field %(name)s was not expected." msgstr "" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "" + +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 msgid "Package resource(s) invalid" msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 #: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 msgid "Extras" msgstr "افزوده ها" @@ -1060,396 +1670,381 @@ msgstr "افزوده ها" msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "" - -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "" - -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "گروه" - #: ckan/logic/converters.py:180 msgid "Could not parse as valid JSON" msgstr "" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 msgid "An organization must be provided" msgstr "" -#: ckan/logic/validators.py:46 +#: ckan/logic/validators.py:47 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:51 +#: ckan/logic/validators.py:52 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:91 +#: ckan/logic/validators.py:92 msgid "Invalid integer" msgstr "" -#: ckan/logic/validators.py:96 +#: ckan/logic/validators.py:97 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:102 +#: ckan/logic/validators.py:103 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:129 +#: ckan/logic/validators.py:130 msgid "Date format incorrect" msgstr "" -#: ckan/logic/validators.py:138 +#: ckan/logic/validators.py:139 msgid "No links are allowed in the log_message." msgstr "" -#: ckan/logic/validators.py:158 +#: ckan/logic/validators.py:159 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:199 +#: ckan/logic/validators.py:200 msgid "Resource" msgstr "" -#: ckan/logic/validators.py:253 +#: ckan/logic/validators.py:254 msgid "That group name or ID does not exist." msgstr "" -#: ckan/logic/validators.py:267 +#: ckan/logic/validators.py:268 msgid "Activity type" msgstr "" -#: ckan/logic/validators.py:330 +#: ckan/logic/validators.py:331 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:334 +#: ckan/logic/validators.py:335 msgid "That name cannot be used" msgstr "" -#: ckan/logic/validators.py:337 +#: ckan/logic/validators.py:338 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:342 +#: ckan/logic/validators.py:343 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:360 +#: ckan/logic/validators.py:361 msgid "That URL is already in use." msgstr "" -#: ckan/logic/validators.py:365 +#: ckan/logic/validators.py:366 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:369 +#: ckan/logic/validators.py:370 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/logic/validators.py:375 +#: ckan/logic/validators.py:376 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:393 +#: ckan/logic/validators.py:394 #, python-format msgid "Duplicate key \"%s\"" msgstr "" -#: ckan/logic/validators.py:409 +#: ckan/logic/validators.py:410 msgid "Group name already exists in database" msgstr "گروهی به این نام در دیتا بیس وجود دارد" -#: ckan/logic/validators.py:415 +#: ckan/logic/validators.py:416 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:419 +#: ckan/logic/validators.py:420 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/logic/validators.py:427 +#: ckan/logic/validators.py:428 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -#: ckan/logic/validators.py:435 +#: ckan/logic/validators.py:436 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "" -#: ckan/logic/validators.py:544 +#: ckan/logic/validators.py:545 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:560 +#: ckan/logic/validators.py:561 msgid "That login name is not available." msgstr "" -#: ckan/logic/validators.py:569 +#: ckan/logic/validators.py:570 msgid "Please enter both passwords" msgstr "" -#: ckan/logic/validators.py:577 +#: ckan/logic/validators.py:578 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:581 +#: ckan/logic/validators.py:582 msgid "Your password must be 4 characters or longer" msgstr "" -#: ckan/logic/validators.py:589 +#: ckan/logic/validators.py:590 msgid "The passwords you entered do not match" msgstr "" -#: ckan/logic/validators.py:610 +#: ckan/logic/validators.py:611 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -#: ckan/logic/validators.py:619 +#: ckan/logic/validators.py:620 #, python-format msgid "Name must be at least %s characters long" msgstr "نام می بایست حداقل %s کاراکتر داشته باشد" -#: ckan/logic/validators.py:627 +#: ckan/logic/validators.py:628 msgid "That vocabulary name is already in use." msgstr "" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:634 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/logic/validators.py:642 +#: ckan/logic/validators.py:643 msgid "Tag vocabulary was not found." msgstr "" -#: ckan/logic/validators.py:655 +#: ckan/logic/validators.py:656 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:661 +#: ckan/logic/validators.py:662 msgid "No tag name" msgstr "" -#: ckan/logic/validators.py:674 +#: ckan/logic/validators.py:675 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:697 +#: ckan/logic/validators.py:698 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:712 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:740 +#: ckan/logic/validators.py:741 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:746 +#: ckan/logic/validators.py:747 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:749 +#: ckan/logic/validators.py:750 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:781 +#: ckan/logic/validators.py:782 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:791 +#: ckan/logic/validators.py:792 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:802 +#: ckan/logic/validators.py:803 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:806 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:820 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 #, python-format msgid "REST API: Create object %s" msgstr "" -#: ckan/logic/action/create.py:532 +#: ckan/logic/action/create.py:544 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/create.py:573 +#: ckan/logic/action/create.py:585 #, python-format msgid "REST API: Create member object %s" msgstr "" -#: ckan/logic/action/create.py:792 +#: ckan/logic/action/create.py:804 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:881 +#: ckan/logic/action/create.py:893 msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -#: ckan/logic/action/create.py:884 +#: ckan/logic/action/create.py:896 msgid "You must supply a rating (parameter \"rating\")." msgstr "" -#: ckan/logic/action/create.py:889 +#: ckan/logic/action/create.py:901 msgid "Rating must be an integer value." msgstr "" -#: ckan/logic/action/create.py:893 +#: ckan/logic/action/create.py:905 #, python-format msgid "Rating must be between %i and %i." msgstr "" -#: ckan/logic/action/create.py:1052 +#: ckan/logic/action/create.py:1064 msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1285 +#: ckan/logic/action/create.py:1297 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1390 +#: ckan/logic/action/create.py:1402 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:45 +#: ckan/logic/action/delete.py:54 msgid " Delete User: {0}" msgstr "" -#: ckan/logic/action/delete.py:86 +#: ckan/logic/action/delete.py:92 #, python-format msgid "REST API: Delete Package: %s" msgstr "" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, python-format msgid "REST API: Delete %s" msgstr "" -#: ckan/logic/action/delete.py:312 +#: ckan/logic/action/delete.py:318 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 msgid "id not in data" msgstr "" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:572 +#: ckan/logic/action/delete.py:578 #, python-format msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:613 +#: ckan/logic/action/delete.py:619 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 msgid "Resource was not found." msgstr "" -#: ckan/logic/action/get.py:2049 +#: ckan/logic/action/get.py:2087 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:2058 +#: ckan/logic/action/get.py:2096 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:2090 +#: ckan/logic/action/get.py:2128 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 msgid "Package was not found." msgstr "" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 #, python-format msgid "REST API: Update object %s" msgstr "" -#: ckan/logic/action/update.py:380 +#: ckan/logic/action/update.py:401 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/update.py:740 +#: ckan/logic/action/update.py:761 msgid "TaskStatus was not found." msgstr "" -#: ckan/logic/action/update.py:1038 +#: ckan/logic/action/update.py:1059 msgid "Organization was not found." msgstr "" @@ -1473,7 +2068,7 @@ 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:143 ckan/logic/auth/update.py:63 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" @@ -1505,24 +2100,24 @@ msgstr "" msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:191 +#: ckan/logic/auth/create.py:189 msgid "Group was not found." msgstr "" -#: ckan/logic/auth/create.py:211 +#: ckan/logic/auth/create.py:209 msgid "Valid API key needed to create a package" msgstr "" -#: ckan/logic/auth/create.py:219 +#: ckan/logic/auth/create.py:217 msgid "Valid API key needed to create a group" msgstr "" -#: ckan/logic/auth/create.py:239 +#: ckan/logic/auth/create.py:237 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 #, python-format msgid "User %s not authorized to edit group %s" msgstr "" @@ -1566,31 +2161,31 @@ msgstr "" msgid "User %s not authorized to delete task_status" msgstr "" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 msgid "Not authorized" msgstr "" -#: ckan/logic/auth/get.py:108 +#: ckan/logic/auth/get.py:109 #, python-format msgid "User %s not authorized to read these packages" msgstr "" -#: ckan/logic/auth/get.py:130 +#: ckan/logic/auth/get.py:124 #, python-format msgid "User %s not authorized to read package %s" msgstr "" -#: ckan/logic/auth/get.py:149 +#: ckan/logic/auth/get.py:143 #, python-format msgid "User %s not authorized to read resource %s" msgstr "" -#: ckan/logic/auth/get.py:176 +#: ckan/logic/auth/get.py:170 #, python-format msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:258 +#: ckan/logic/auth/get.py:252 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1624,39 +2219,39 @@ msgstr "" msgid "User %s not authorized to edit permissions of group %s" msgstr "" -#: ckan/logic/auth/update.py:189 +#: ckan/logic/auth/update.py:190 msgid "Have to be logged in to edit user" msgstr "" -#: ckan/logic/auth/update.py:197 +#: ckan/logic/auth/update.py:198 #, python-format msgid "User %s not authorized to edit user %s" msgstr "" -#: ckan/logic/auth/update.py:208 +#: ckan/logic/auth/update.py:209 msgid "User {0} not authorized to update user {1}" msgstr "" -#: ckan/logic/auth/update.py:216 +#: ckan/logic/auth/update.py:217 #, python-format msgid "User %s not authorized to change state of revision" msgstr "" -#: ckan/logic/auth/update.py:225 +#: ckan/logic/auth/update.py:226 #, python-format msgid "User %s not authorized to update task_status table" msgstr "" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/auth/update.py:240 #, python-format msgid "User %s not authorized to update term_translation table" msgstr "" -#: ckan/logic/auth/update.py:261 +#: ckan/logic/auth/update.py:262 msgid "Valid API key needed to edit a package" msgstr "" -#: ckan/logic/auth/update.py:271 +#: ckan/logic/auth/update.py:272 msgid "Valid API key needed to edit a group" msgstr "" @@ -1765,57 +2360,49 @@ msgstr "" msgid "has sibling %s" msgstr "" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:20 +#: ckan/public/base/javascript/modules/api-info.js:96 msgid "There is no API data to load for this resource" msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:21 +#: ckan/public/base/javascript/modules/api-info.js:124 msgid "Failed to load data API information" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:34 +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, python-format msgid "Input is too short, must be at least one character" -msgstr "" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" #: ckan/public/base/javascript/modules/basic-form.js:4 msgid "There are unsaved modifications to this form" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:7 +#: ckan/public/base/javascript/modules/confirm-action.js:97 msgid "Please Confirm Action" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:8 +#: ckan/public/base/javascript/modules/confirm-action.js:100 msgid "Are you sure you want to perform this action?" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:9 +#: ckan/public/base/javascript/modules/confirm-action.js:102 #: ckan/templates/user/new_user_form.html:9 #: ckan/templates/user/perform_reset.html:21 msgid "Confirm" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 #: ckan/templates/admin/confirm_reset.html:9 #: ckan/templates/group/confirm_delete.html:14 #: ckan/templates/group/confirm_delete_member.html:15 @@ -1826,39 +2413,42 @@ msgstr "" msgid "Cancel" msgstr "" -#: ckan/public/base/javascript/modules/follow.js:23 +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:72 #: ckan/templates/snippets/follow_button.html:14 msgid "Follow" msgstr "" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:18 +#: ckan/public/base/javascript/modules/image-upload.js:72 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 #: ckan/templates/snippets/search_form.html:68 msgid "Remove" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: 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 @@ -1866,84 +2456,78 @@ msgstr "" msgid "URL" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:21 +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 msgid "File" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 msgid "Save order" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 msgid "Saving..." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 msgid "Upload a file" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 msgid "An Error Occurred" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 msgid "Unable to upload file" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 msgid "Unable to authenticate upload" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 msgid "Unable to get data for uploaded file" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" msgstr "" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" msgstr "" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 #: ckan/templates/organization/bulk_process.html:65 #: ckan/templates/organization/edit.html:3 #: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 +#: ckan/templates/organization/members.html:33 #: ckan/templates/package/edit_base.html:11 #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 +#: ckan/templates/package/snippets/resource_item.html:56 msgid "Edit" msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 msgid "Show more" msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 msgid "Hide" msgstr "" @@ -2073,19 +2657,19 @@ msgstr "" msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:17 +#: ckan/templates/admin/config.html:16 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:18 +#: ckan/templates/admin/config.html:17 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:27 +#: ckan/templates/admin/config.html:26 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:34 +#: ckan/templates/admin/config.html:33 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2130,81 +2714,12 @@ msgstr "" msgid "

Purge deleted datasets forever and irreversibly.

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

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." msgstr "" #: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 +#: ckan/templates/package/resource_read.html:115 #: ckan/templates/package/snippets/resource_view.html:26 msgid "Click here for more information." msgstr "" @@ -2214,12 +2729,6 @@ msgstr "" msgid "Download resource" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." msgstr "" @@ -2352,8 +2861,8 @@ msgstr "" 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/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 @@ -2368,26 +2877,12 @@ msgstr "" msgid "Edit Group" msgstr "" -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 +#: ckan/templates/group/edit_base.html:23 ckan/templates/group/members.html:3 #: ckan/templates/organization/edit_base.html:24 #: ckan/templates/organization/members.html:3 msgid "Members" msgstr "" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "" - #: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 #: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 msgid "History" @@ -2402,28 +2897,6 @@ msgstr "" msgid "Search groups..." msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - #: ckan/templates/group/index.html:29 msgid "There are currently no groups for this site" msgstr "" @@ -2445,11 +2918,11 @@ msgid "Edit Member" msgstr "" #: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 +#: ckan/templates/group/member_new.html:64 ckan/templates/group/members.html:6 #: ckan/templates/organization/member_new.html:7 #: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 +#: ckan/templates/organization/member_new.html:65 +#: ckan/templates/organization/members.html:8 msgid "Add Member" msgstr "" @@ -2479,44 +2952,40 @@ msgid "If you wish to invite a new user, enter their email address." msgstr "" #: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 +#: ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 +#: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" #: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 +#: ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 +#: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 #: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 #: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 #: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 +#: ckan/templates/user/edit_user_form.html:45 msgid "Delete" msgstr "" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 msgid "What are roles?" msgstr "" -#: ckan/templates/group/member_new.html:81 +#: ckan/templates/group/member_new.html:80 msgid "" "

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

Member: Can add/remove " @@ -2536,32 +3005,6 @@ msgstr "" msgid "Create Group" msgstr "" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." @@ -2590,14 +3033,6 @@ msgstr "" msgid "my-group" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "" - #: ckan/templates/group/snippets/group_form.html:20 msgid "A little information about my group..." msgstr "" @@ -2606,25 +3041,10 @@ msgstr "" msgid "Are you sure you want to delete this Group?" msgstr "" -#: ckan/templates/group/snippets/group_form.html:64 +#: ckan/templates/group/snippets/group_form.html:63 msgid "Save Group" msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 msgid "View {name}" @@ -2770,6 +3190,10 @@ msgstr "" msgid "groups" msgstr "" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -2891,11 +3315,11 @@ msgstr "" msgid "Email address" msgstr "" -#: ckan/templates/organization/member_new.html:62 +#: ckan/templates/organization/member_new.html:61 msgid "Update Member" msgstr "" -#: ckan/templates/organization/member_new.html:82 +#: ckan/templates/organization/member_new.html:81 msgid "" "

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

Editor: Can add and " @@ -2904,6 +3328,11 @@ msgid "" "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 @@ -2969,12 +3398,12 @@ msgid "" "public and private datasets belonging to this organization." msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:64 +#: ckan/templates/organization/snippets/organization_form.html:63 msgid "Save Organization" msgstr "" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 msgid "View {organization_name}" msgstr "" @@ -3019,7 +3448,7 @@ msgstr "" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 +#: ckan/templates/package/snippets/resource_item.html:32 #: ckan/templates/snippets/datapreview_embed_dialog.html:16 msgid "Preview" msgstr "" @@ -3079,57 +3508,15 @@ msgid "" msgstr "" #: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 +#: ckan/templates/package/snippets/resource_form.html:81 msgid "Add" msgstr "" -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" - -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "" - -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" #: ckan/templates/package/resource_edit_base.html:17 @@ -3141,15 +3528,11 @@ msgid "View resource" msgstr "" #: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 +#: ckan/templates/package/resource_edit_base.html:30 msgid "Edit resource" msgstr "" #: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 msgid "Views" msgstr "" @@ -3158,91 +3541,100 @@ msgid "API Endpoint" msgstr "" #: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 +#: ckan/templates/package/snippets/resource_item.html:47 msgid "Go to resource" msgstr "" #: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 +#: ckan/templates/package/snippets/resource_item.html:44 msgid "Download" msgstr "" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 msgid "URL:" msgstr "" -#: ckan/templates/package/resource_read.html:69 +#: ckan/templates/package/resource_read.html:66 msgid "From the dataset abstract" msgstr "" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/package/resource_read.html:68 #, python-format msgid "Source: %(dataset)s" msgstr "" -#: ckan/templates/package/resource_read.html:112 +#: ckan/templates/package/resource_read.html:109 msgid "There are no views created for this resource yet." msgstr "" -#: ckan/templates/package/resource_read.html:116 +#: ckan/templates/package/resource_read.html:113 msgid "Not seeing the views you were expecting?" msgstr "" -#: ckan/templates/package/resource_read.html:121 +#: ckan/templates/package/resource_read.html:118 msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -#: ckan/templates/package/resource_read.html:123 +#: ckan/templates/package/resource_read.html:120 msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/resource_read.html:124 +#: ckan/templates/package/resource_read.html:121 msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/resource_read.html:125 +#: ckan/templates/package/resource_read.html:122 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" msgstr "" -#: ckan/templates/package/resource_read.html:147 +#: ckan/templates/package/resource_read.html:144 msgid "Additional Information" msgstr "" -#: ckan/templates/package/resource_read.html:151 +#: ckan/templates/package/resource_read.html:148 #: ckan/templates/package/snippets/additional_info.html:6 #: ckan/templates/revision/diff.html:43 #: ckan/templates/snippets/additional_info.html:11 msgid "Field" msgstr "" -#: ckan/templates/package/resource_read.html:152 +#: ckan/templates/package/resource_read.html:149 #: ckan/templates/package/snippets/additional_info.html:7 #: ckan/templates/snippets/additional_info.html:12 msgid "Value" msgstr "" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 msgid "unknown" msgstr "" -#: ckan/templates/package/resource_read.html:161 +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:162 #: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "" -#: ckan/templates/package/resource_read.html:165 +#: ckan/templates/package/resource_read.html:166 #: ckan/templates/package/snippets/resource_form.html:37 #: ckan/templates/package/snippets/resource_info.html:16 msgid "Format" msgstr "" -#: ckan/templates/package/resource_read.html:169 +#: ckan/templates/package/resource_read.html:170 #: ckan/templates/package/snippets/package_basic_fields.html:30 #: ckan/templates/snippets/license.html:21 msgid "License" @@ -3260,8 +3652,8 @@ msgstr "" msgid "Add new resource" msgstr "" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" "

This dataset has no data, why not " @@ -3355,10 +3747,6 @@ msgid "" "continue." msgstr "" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "" - #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 msgid "Title" @@ -3420,7 +3808,7 @@ msgstr "" msgid "Are you sure you want to delete this dataset?" msgstr "" -#: ckan/templates/package/snippets/package_form.html:44 +#: ckan/templates/package/snippets/package_form.html:43 msgid "Next: Add Data" msgstr "" @@ -3506,15 +3894,15 @@ msgstr "" msgid "Are you sure you want to delete this resource?" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:72 +#: ckan/templates/package/snippets/resource_form.html:71 msgid "Previous" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:75 +#: ckan/templates/package/snippets/resource_form.html:74 msgid "Save & add another" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 +#: ckan/templates/package/snippets/resource_form.html:77 msgid "Finish" msgstr "" @@ -3526,11 +3914,11 @@ msgstr "" msgid "A resource can be any file or link to a file containing useful data." msgstr "" -#: ckan/templates/package/snippets/resource_item.html:24 +#: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:36 +#: ckan/templates/package/snippets/resource_item.html:35 msgid "More information" msgstr "" @@ -3572,7 +3960,7 @@ msgstr "" msgid "Data and Resources" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:29 +#: ckan/templates/package/snippets/resources_list.html:30 msgid "This dataset has no data" msgstr "" @@ -3600,18 +3988,10 @@ msgstr "" msgid "eg. Information about my view" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" msgstr "" @@ -3710,11 +4090,11 @@ msgstr "" msgid "Home" msgstr "" -#: ckan/templates/snippets/language_selector.html:4 +#: ckan/templates/snippets/language_selector.html:3 msgid "Language" msgstr "" -#: ckan/templates/snippets/language_selector.html:12 +#: ckan/templates/snippets/language_selector.html:11 #: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 @@ -3873,7 +4253,7 @@ msgstr "" #: ckan/templates/user/dashboard_datasets.html:19 #: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 #: ckan/templates/user/read.html:16 msgid "Create one now?" msgstr "" @@ -3882,7 +4262,7 @@ msgstr "" msgid "You are not a member of any groups." msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 +#: ckan/templates/user/dashboard_organizations.html:21 msgid "You are not a member of any organizations." msgstr "" @@ -3946,488 +4326,204 @@ msgstr "" msgid "Confirm Password" msgstr "" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "" - -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "" - -#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 -#: ckan/templates/user/login.html:12 -#: ckan/templates/user/snippets/login_form.html:28 -msgid "Login" -msgstr "" - -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "" - -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "" - -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "" - -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "" - -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" - -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "" - -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "" - -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "" - -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "" - -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "" - -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "" - -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" msgstr "" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: 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 "" -#: 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" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." 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" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" msgstr "" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." msgstr "" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." msgstr "" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." msgstr "" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "جدول" - -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "نقشه" - -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" +#: ckan/templates/user/new.html:6 +msgid "Registration" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "تعداد کل داده‌ها" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "تاریخ" - -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "داده‌های جدید" - -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "تعداد ویرایش" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "بزرگترین گروه‌ها" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "تعداد داده‌ها" - -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "منوی آمار" - -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "تعداد کل داده‌ها" - -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." msgstr "" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "وبگاه" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "نشانی وبگاه" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" msgstr "" diff --git a/ckan/i18n/fi/LC_MESSAGES/ckan.mo b/ckan/i18n/fi/LC_MESSAGES/ckan.mo index fc0ed34c094..6cff633b297 100644 Binary files a/ckan/i18n/fi/LC_MESSAGES/ckan.mo and b/ckan/i18n/fi/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/fi/LC_MESSAGES/ckan.po b/ckan/i18n/fi/LC_MESSAGES/ckan.po index d713116f910..f8ad049e28b 100644 --- a/ckan/i18n/fi/LC_MESSAGES/ckan.po +++ b/ckan/i18n/fi/LC_MESSAGES/ckan.po @@ -1,4587 +1,4689 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Zharktas , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Auktorisointifunktiota ei löydy: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Valmis" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Ylläpitäjä - Admin" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Odottaa" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Muokkaaja - Editor" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Lähetetään" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Jäsen" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Virhe" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Hallinnointia varten pitää olla järjestelmän ylläpitäjä " +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Tätä ei ole vielä ladattu" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Sivuston otsikko" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Resurssia ei löydy" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Tyyli" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Tämän sivun näyttäminen ei ole sallittu" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Sivun slogan" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Lataa DataStoreen" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Sivun logo" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Latausvirhe:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Virhe:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Tietoja-sivun teksti" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Virhetulostus:" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Johdantoteksti" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Tila" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Teksti kotisivulla" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Viimeksi päivitetty" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Muokattu CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Ei koskaan" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Muokattava CSS lisätty sivun header-osioon" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Lataa lokitiedosto" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Kotisivu" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Yksityiskohdat" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Lokitiedoston loppu" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" -#: ckan/controllers/admin.py:160 +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "Tietostomuoto pitää olla tyyppiä: %s" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "DataStore-resurssia ei löytynyt" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Ei voida poistaa tietoaineistoa %s, koska tähän liitetty revisio %s sisältää" -" poistamattomia tietoaineistoja %s" +"Tieto oli virheellistä (esimerkiksi: numeerinen arvo on rajojen ulkopuolella" +" ta oli lisätty tekstitietoon)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Ongelma näiden revisioiden poistamisessa %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Resurssia \"{0}\" ei löytynyt." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Poistaminen suoritettu" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Käyttäjällä {0} ei ole lupaa päivittää resurssia {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Toimintoa ei ole toteutettu." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Tämän sivun näyttäminen ei ole sallittu" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "Sisällöt on saatavilla myös kyselyrajapinna (API) kautta" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Pääsy evätty" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Lisätietoa löydät CKAN informaatio API:sta ja DataStore " +"dokumentaatiosta.

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Ei löytynyt" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Päätepisteet" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Virheellinen pyyntö" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Toiminnon nimi tuntematon: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Lisää uusi" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON-virhe: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Päivitä / Lisää" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Huono datapyyntö: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Haku" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Ei pystytä listaamaan entiteettiä, joka on tyyppiä %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "SQL-haku" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Ei pystytä lukemaan entiteettiä, joka on tyyppiä %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Hakeminen" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Ei pystytä luomaan entiteettiä, joka on tyyppiä %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Hakuesimerkki (ensimmäiset 5 tulosta)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Ei voitu lisätä tietoaineistoa hakuindeksiin" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Kyselyesimerkki (tulokset sisältäen 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Ei pystytä muokkaamaan entiteettiä, joka on tyyppiä %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Kyselyesimerkki (SQL-haun kautta)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Hakuindeksiä ei voitu päivittää" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Esimerkki: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Ei pystytä poistamaan entiteettiä, joka on tyyppiä %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Yksinkertainen ajax (JSONP) kysely data-apiin käyttäen jQuery-kutsua." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Revisiota ei annettu" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Esimerkki: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Revisiota tällä tunnisteella ei löydy: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "tietokenttä {num}." -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Hakutermi puuttuu ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Otsikko" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Parametreja ei voitu lukea: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Kuvaus" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Huono hakuvaihtoehto: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Tallenna" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Tuntematon rekisteri: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Sanakirja" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Väärässä muodossa oleva qjson-arvo: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Sarake" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Kyselyparametrit täytyy olla json-enkoodatussa muodossa" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "Tyyppi" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Ryhmää ei löydy" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Ladataan..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organisaatioita ei löytynyt" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Data API" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Väärä ryhmän tyyppi" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Taulu" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organisaatiot" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Responsiivinen näyttö" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Ryhmät" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Näytä sarakkeet" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Avainsanat" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "Piilota/näytä sarakkeet" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Muodot" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Aineistoa sivulla" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Lisenssit" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testikonfiguraatio" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Ei oikeutta tehdä massapäivityksiä (bulk update)" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevanssi" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Ei oikeuksia luoda ryhmää" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Käyttäjällä %r ei oikeutta muokata %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Eheysvirhe" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Viimeksi muokattu" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Käyttäjällä %r ei oikeutta muokata %s oikeuksia" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Muokattu kenttä nousevasti" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Ei oikeuksia poistaa ryhmää %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Muokattu kenttä laskevasti" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organisaatio on poistettu" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Suositut" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Ryhmä on poistettu." +#: 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" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s on poistettu." +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "muokattu teksti" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Ei oikeuksia lisätä käyttäjää ryhmään %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Maakoodi" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Ei oikeuksia poistaa ryhmän %s jäseniä" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "muokattu resurssi teksti" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Ryhmän jäsen on poistettu." +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Tämä on kääntämätön teksti" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Valitse kaksi revisiota vertailuun." +#: 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/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "CKAN-ryhmän revisioiden muutoshistoria" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Viimeaikaiset muutokset CKAN-ryhmään:" +#: 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" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Lokiviesti:" +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Seuraat nyt tätä: {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Seuraajat" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Et seuraa enää tätä: {0}" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Aineistolinkit" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Ei oikeuksia nähdä seuraajia %s" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Kuva" -#: ckan/controllers/home.py:36 -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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Kuvan url" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -"Ole hyvä ja päivitä profiilisi ja lisää " -"sähköpostiosoitteesi." +"esim. http://esimerkki.com/kuva.jpg (jos tyhjä ,käyttää resurssien url:ia)" -#: ckan/controllers/home.py:83 -#, 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." +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Data Explorer" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Kaavio" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parametri \"{parameter_name}\" ei ole kokonaisluku" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Kartta" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Tietoaineistoa ei löydy" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "virhe ladattaessa näkymää" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Väärä revision muoto: %r" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "Näkymää ei pystytty lataamaan" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" -"{package_type}-tietoaineistojen katselu {format}-muodossa ei ole mahdollista" -" (mallitiedostoa {file} ei löydy)." +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "DataStore palautti virheen" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Ei oikeuksia lukea tietoaineistoa %s" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "Dataproxy palautti virheen" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "CKAN-tietoaineiston muutoshistoria" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "Taulokku" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Viimeisimmät muutokset CKAN-tietoaineistoon:" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Suodattimet" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Ei oikeuksia luoda tietoaineistoa" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Rivin siirtymä" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Ei oikeuksia muokata tätä resurssia " +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "esim: 0" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Resurssia ei löydy" +#: 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ä" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Ei oikeuksia päivittää tietoaineistoa" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "esim: 100" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Tietoaineistoa {id} ei löydy." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Kaavion tyyppi" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Sinun täytyy lisätä vähintään yksi dataresurssi" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Ryhmä (Akseli 1)" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Virhe" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Sarjat (Akseli 2)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Ei oikeutta luoda resurssia" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Kentän tyyppi" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Käyttäjällä ei ole oikeutta luoda uutta resurssia tähän pakettiin." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Latituudikenttä" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Ei voitu lisätä pakettia hakuindeksiin" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Longituudikenttä" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Ei voitu päivittää hakuindeksiä" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON-kenttä" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Tietoaineisto on poistettu." +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Kohdista ominaisuuksiin automaattisesti" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Ei oikeutta poistaa tietoaineistoa %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Klusterin markkerit" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Resurssi on poistettu." +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Tietoaineistoja yhteensä" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Ei oikeuksia poistaa resurssia %s" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Päivämäärä" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Resurssinäkymää ei löytynyt" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Tietoaineistoja yhteensä" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Resurssin dataa ei löydy" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Viikon revisiot tietoaineistosta" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Ei ladattavaa saatavilla" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Kaikki tietoaineistojen revisiot" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Ei oikeuksia lukea tietoaineistoa %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Uudet tietoaineistot" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Ei oikeuksia lukea resurssia %s" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Korkeimman arvostelun saaneet tietoaineistot" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Ei oikeuksia muokata resursseja" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Arvostelujen keskiarvo" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Näkymää ei löydy" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Arvostelujen määrä" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Näkymätyyppiä ei löytynyt" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Ei arvosteluja" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Virheelliset resurssinäkymän tiedot" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Eniten muokatut tietoaineistot" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Resurssinäkymää ei saatavilla" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Tietoaineisto" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Esikatselua ei ole määritelty." +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Muokkausten määrä" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "CKAN-tietovarannon historia" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Ei muokattuja tietoaineistoja" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Viimeisimmät CKAN-tietovarannon muutokset." +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Suurimmat ryhmät" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Muutetut tietoaineistot: %s.⏎\n" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Ryhmä" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Revisio päivitetty" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Tietoaineistojen lukumäärä" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Muu" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Ei ryhmiä" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Avainsanaa ei löydy" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Käytetyimmät avainsanat" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Käyttäjää ei löydy" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Tunnisteen nimi" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Ei oikeuksia rekisteröityä käyttäjäksi." +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Tietoaineistojen lukumäärä" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Ei oikeutta luoda käyttäjää" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "Eniten tietoaineistoja luovat käyttäjät" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Ei oikeutta käyttäjän \"{user_id}\" poistamiseen." +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Käyttäjä" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Käyttäjää ei määritelty" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Tilastovalikko" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Käyttäjän %s muokkaus ei sallittu" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Tietoaineistojen kokonaismäärä" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profiili päivitetty" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Teksti" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Ei oiketta lisätä käyttäjää %s" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Verkkosivusto" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Väärä Captcha sana. Yritä uudelleen." +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Verkkosivuston url" -#: ckan/controllers/user.py:265 -#, 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" +#: 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/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Ei oikeuksia muokata käyttäjää." +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Selaimesi ei tue kehyksiä." -#: ckan/controllers/user.py:320 +#: ckan/authz.py:182 #, python-format -msgid "User %s not authorized to edit %s" -msgstr "Käyttäjällä %s ei oikeutta muokata %s" - -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Annettu salasana oli väärin" +msgid "Authorization function not found: %s" +msgstr "Auktorisointifunktiota ei löydy: %s" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Vanha salasana" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Ylläpitäjä - Admin" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "väärä salasana" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Muokkaaja - Editor" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Kirjautuminen epäonnistui. Väärä käyttäjätunnus tai salasana." +#: ckan/authz.py:202 +msgid "Member" +msgstr "Jäsen" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Ei oikeutta pyytää salasanan resetoimista." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Hallinnointia varten pitää olla järjestelmän ylläpitäjä " -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" kohdistui moneen käyttäjään" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Sivuston otsikko" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Ei käyttäjää: %s" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Tyyli" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Ole hyvä ja tarkista sähköpostisi resetointikoodia varten" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Sivun slogan" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Resetointilinkkiä ei voitu lähettää: %s" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Sivun logo" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Ei oikeutta salasanan resetoimiseen." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Epäkelpo resetointiavain. Yritä uudelleen." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Tietoja-sivun teksti" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Salasanasi on resetoitu" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Johdantoteksti" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Salasanasi pitää olla 4 merkkiä tai pidempi" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Teksti kotisivulla" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Syötetyt salasanat eivät ole samoja" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Muokattu CSS" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Sinun täytyy antaa salasanasi" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Muokattava CSS lisätty sivun header-osioon" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Seurattavaa kohdetta ei löytynyt" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Kotisivu" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} ei löytynyt" +#: ckan/controllers/admin.py:161 +#, 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/user.py:654 -msgid "Everything" -msgstr "Kaikki" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Ongelma näiden revisioiden poistamisessa %s: %s" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Puuttuva arvo" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Poistaminen suoritettu" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Uudellenohjaus ulkopuoliseen sijaintiin ei sallittu." +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Toimintoa ei ole toteutettu." -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} lisäsi avainsanan {tag} tietoaineistoon {dataset}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Pääsy evätty" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} päivitti ryhmää {group}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Ei löytynyt" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} päivitti organisaatiota {organization}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Virheellinen pyyntö" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} päivitti tietoaineistoa {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Toiminnon nimi tuntematon: %s" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} muutti tietoaineiston {dataset} lisäystä {extra} " +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON-virhe: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} päivitti resurssia {resource} tietoaineistossa {dataset}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Huono datapyyntö: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} päivitti profiiliaan" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Ei pystytä listaamaan entiteettiä, joka on tyyppiä %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} poisti ryhmän {group}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Ei pystytä lukemaan entiteettiä, joka on tyyppiä %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} poisti organisaation {organization}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Ei pystytä luomaan entiteettiä, joka on tyyppiä %s %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} poisti tietoaineiston {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Ei voitu lisätä tietoaineistoa hakuindeksiin" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} poisti lisäkentän {extra} tietoaineistosta {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Ei pystytä muokkaamaan entiteettiä, joka on tyyppiä %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} poisti resurssin {resource} tietoaineistosta {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Hakuindeksiä ei voitu päivittää" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} loi ryhmän {group}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Ei pystytä poistamaan entiteettiä, joka on tyyppiä %s %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} loi organisaation {organization}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Revisiota ei annettu" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} loi tietoaineiston {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Revisiota tällä tunnisteella ei löydy: %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} lisäsi lisäkentän {extra} tietoaineistoon {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Hakutermi puuttuu ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} lisäsi resurssin {resource} tietoaineistoon {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Parametreja ei voitu lukea: %r" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} kirjautui sisään" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Huono hakuvaihtoehto: %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} poisti avainsanan {tag} tietoaineistosta {dataset}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Tuntematon rekisteri: %s" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} alkoi seurata tietoaineistoa {dataset}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Väärässä muodossa oleva qjson-arvo: %r" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} alkoi seurata käyttäjää {user}" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Kyselyparametrit täytyy olla json-enkoodatussa muodossa" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} alkoi seurata ryhmää {group}" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Ryhmää ei löydy" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Näytä" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organisaatioita ei löytynyt" -#: 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/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Väärä ryhmän tyyppi" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "tammikuu" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organisaatiot" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "helmikuu" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Ryhmät" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "maaliskuu" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Avainsanat" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "huhtikuu" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Muodot" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "toukokuu" - -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "kesäkuu" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Lisenssit" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "heinäkuu" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Käyttäjällä %r ei oikeutta muokata %s" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "elokuu" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Ei oikeutta tehdä massapäivityksiä (bulk update)" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "syyskuu" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Ei oikeuksia luoda ryhmää" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "lokakuu" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Eheysvirhe" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "marraskuu" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Käyttäjällä %r ei oikeutta muokata %s oikeuksia" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "joulukuu" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Ei oikeuksia poistaa ryhmää %s" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Juuri nyt" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organisaatio on poistettu" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} minuutti sitten" -msgstr[1] "{mins} minuuttia sitten" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Ryhmä on poistettu." -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} tunti sitten" -msgstr[1] "{hours} tuntia sitten" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s on poistettu." -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} päivä sitten" -msgstr[1] "{days} päivää sitten" +#: ckan/controllers/group.py:653 +#, 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/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} kuukausi sitten" -msgstr[1] "{months} kuukautta sitten" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Ei oikeuksia lisätä käyttäjää ryhmään %s" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "yli {years} vuosi sitten" -msgstr[1] "yli {years} vuotta sitten" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Ei oikeuksia poistaa ryhmän %s jäseniä" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Ryhmän jäsen on poistettu." -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{day}. {month}, {year}" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Valitse kaksi revisiota vertailuun." -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} tavua" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "CKAN-ryhmän revisioiden muutoshistoria" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Viimeaikaiset muutokset CKAN-ryhmään:" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Lokiviesti:" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Seuraat nyt tätä: {0}" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Et seuraa enää tätä: {0}" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Ei oikeuksia nähdä seuraajia %s" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: 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/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/home.py:73 +#, 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/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "Virheellinen haku: {error_message}" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametri \"{parameter_name}\" ei ole kokonaisluku" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Tietoaineistoa ei löydy" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Väärä revision muoto: %r" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:396 +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/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Päivitä avatarisi osoitteessa gravatar.com" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Ei oikeuksia lukea tietoaineistoa %s" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Tuntematon" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "CKAN-tietoaineiston muutoshistoria" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Nimetön resurssi" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Viimeisimmät muutokset CKAN-tietoaineistoon:" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Uusi tietoaineisto luotu." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Ei oikeuksia luoda tietoaineistoa" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Tietoaineistolinkkejä muokattu." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Ei oikeuksia muokata tätä resurssia " -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Asetuksia muokattu." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Ei oikeuksia päivittää tietoaineistoa" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} katselukerta" -msgstr[1] "{number} katselukertaa" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Tietoaineistoa {id} ei löydy." -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} viimeaikainen katselukerta" -msgstr[1] "{number} viimeaikaista katselukertaa" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Sinun täytyy lisätä vähintään yksi dataresurssi" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Ei oikeutta luoda resurssia" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Vastaanottajan sähköpostiosoite ei saatavilla!" +#: ckan/controllers/package.py:714 +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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organisaatio" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Ei voitu lisätä pakettia hakuindeksiin" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "ryhmä" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Ei voitu päivittää hakuindeksiä" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Puuttuva arvo" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Tietoaineisto on poistettu." -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "Syöttökenttää %(name)s ei odotettu." +msgid "Unauthorized to delete package %s" +msgstr "Ei oikeutta poistaa tietoaineistoa %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Ole hyvä ja syötä kokonaislukuarvo" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Resurssi on poistettu." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Aineistolinkit" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Ei oikeuksia poistaa resurssia %s" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Tietoaineiston tiedostolinkki(t) virheellisiä" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Resurssinäkymää ei löytynyt" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Lisätiedot" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Resurssin dataa ei löydy" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Avainsana-sanastoa %s ei ole olemassa" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Ei ladattavaa saatavilla" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Käyttäjä" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Ei oikeuksia lukea tietoaineistoa %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Tietoaineisto" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Ei oikeuksia lukea resurssia %s" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Ryhmä" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Ei oikeuksia muokata resursseja" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Ei pystytty parseroimaan JSON-muotoa." +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Näkymää ei löydy" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Näkymätyyppiä ei löytynyt" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organisaatiota ei ole" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Virheelliset resurssinäkymän tiedot" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Et voi lisätä tietoaineistoa tähän organisaatioon" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Resurssinäkymää ei saatavilla" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Vääränlainen kokonaisluku" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Esikatselua ei ole määritelty." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Tulee olla luonnollinen luku" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "CKAN-tietovarannon historia" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Tulee olla positiivinen kokonaisluku" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Viimeisimmät CKAN-tietovarannon muutokset." -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Päivämäärän muoto väärä" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Muutetut tietoaineistot: %s.⏎\n" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Linkkejä ei saa olla logiviestissä" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Revisio päivitetty" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Tietojoukon id on jo olemassa" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Muu" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Tietoaineistolinkki" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Avainsanaa ei löydy" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Ryhmän nimeä tai tunnistetta ei ole olemassa." +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Ei oikeuksia rekisteröityä käyttäjäksi." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Aktiviteetin tyyppi" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Ei oikeutta luoda käyttäjää" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Nimien tulee olla merkkijonoja" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Ei oikeutta käyttäjän \"{user_id}\" poistamiseen." -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Nimeä ei voida käyttää" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Käyttäjää ei määritelty" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Must be at least %s characters long" -msgstr "Tulee olla vähintään %s merkkiä pitkä" +msgid "Unauthorized to edit user %s" +msgstr "Käyttäjän %s muokkaus ei sallittu" + +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Käyttäjää ei löydy" + +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profiili päivitetty" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Nimi voi olla korkeintaan of %i merkkiä pitkä" +msgid "Unauthorized to create user %s" +msgstr "Ei oiketta lisätä käyttäjää %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Väärä Captcha sana. Yritä uudelleen." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Tulee olla kokonaisuudessaan pienin alfanumeerisin (ascii) merkein ja näillä" -" symbooleilla: -_" +"Käyttäjä %s on nyt rekisteröity, mutta olet edelleen kirjautunut sisään " +"käyttäjänä %s" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Tämä URL on jo käytössä." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Ei oikeuksia muokata käyttäjää." -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Nimen \"%s\" pituus on vähemmän kuin minimi %s" +msgid "User %s not authorized to edit %s" +msgstr "Käyttäjällä %s ei oikeutta muokata %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Nimen \"%s\" pituus on enemmän kuin maksimi %s" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Annettu salasana oli väärin" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Versio saa olla maksimissaan %i merkkiä pitkä" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Vanha salasana" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Duplikaatti avain \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "väärä salasana" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Ryhmän nimi löytyy jo tietokannasta" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Kirjautuminen epäonnistui. Väärä käyttäjätunnus tai salasana." -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Avainsanan \"%s\" pituus on oltava vähintään %s merkkiä" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Ei oikeutta pyytää salasanan resetoimista." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Avainsana \"%s\" on pidempi kuin maksimi %i" +msgid "\"%s\" matched several users" +msgstr "\"%s\" kohdistui moneen käyttäjään" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" -"Avainsanan \"%s\" pitää koostua alfanumeerisita merkeistä (ascii) ja näistä " -"erikoismerkeistä: -_." +msgid "No such user: %s" +msgstr "Ei käyttäjää: %s" + +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Ole hyvä ja tarkista sähköpostisi resetointikoodia varten" -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Avainsana \"%s\" ei saa sisältää isoja kirjaimia" +msgid "Could not send reset link: %s" +msgstr "Resetointilinkkiä ei voitu lähettää: %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Käyttäjätunnusten tulee olla merkkijonoja" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Ei oikeutta salasanan resetoimiseen." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Tämä kirjautumisnimi ei käytettävissä" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Epäkelpo resetointiavain. Yritä uudelleen." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Ole hyvä ja syötä molemmat salasanat" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Salasanasi on resetoitu" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Salasanojen tulee olla tulee olla merkkijonoja" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Salasanasi pitää olla 4 merkkiä tai pidempi" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Salasanasi pitää olla vähintään 4 merkkiä" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Syötetyt salasanat eivät ole samoja" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Syötetyt salasanat eivät samat" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Sinun täytyy antaa salasanasi" -#: ckan/logic/validators.py:610 -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/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Seurattavaa kohdetta ei löytynyt" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Nimen tulee olla vähintään %s merkkiä pitkä" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} ei löytynyt" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Sanaston nimi on jo käytössä" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Kaikki" -#: ckan/logic/validators.py:633 -#, 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/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Puuttuva arvo" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Avainsana-sanastoa ei löytynyt." - -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Avainsana %s ei sisälly sanastoon %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Uudellenohjaus ulkopuoliseen sijaintiin ei sallittu." -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Ei avainsanan nimeä" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} lisäsi avainsanan {tag} tietoaineistoon {dataset}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Avainsana %s sisältyy jo sanastoon %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} päivitti ryhmää {group}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Ole hyvä ja anna validi URL" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} päivitti organisaatiota {organization}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "roolia ei ole." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} päivitti tietoaineistoa {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Ilman organisaatiota olevat tietoaineistot eivät voi olla yksityisiä." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} muutti tietoaineiston {dataset} lisäystä {extra} " -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Ei lista" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} päivitti resurssia {resource} tietoaineistossa {dataset}" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Ei merkkijono" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} päivitti profiiliaan" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Tämä ylätaso loisi silmukan hierarkiassa" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} poisti ryhmän {group}" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" ja \"filter_values\" tulee olla saman pituisia" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} poisti organisaation {organization}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" on pakollinen, kun \"filter_values\" on täytetty" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} poisti tietoaineiston {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" on pakollinen, kun \"filter_fields\" on täytetty" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} poisti lisäkentän {extra} tietoaineistosta {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Saman niminen skeematieto on jo olemassa" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} poisti resurssin {resource} tietoaineistosta {dataset}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Luo objekti %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} loi ryhmän {group}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Luo tietoaineistojen suhteet: %s %s %s " +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} loi organisaation {organization}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Luo jäsenobjekti %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} loi tietoaineiston {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Yrittää luoda organisaatiota ryhmäksi" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} lisäsi lisäkentän {extra} tietoaineistoon {dataset}" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "Sinun täytyy antaa tietoaineiston id tai nimi (parametri \"package\")." +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} lisäsi resurssin {resource} tietoaineistoon {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Luokitus täytyy antaa (parametri \"rating\")." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} kirjautui sisään" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Luokituksen tulee olla kokonaislukuarvo." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} poisti avainsanan {tag} tietoaineistosta {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Luokituksen tulee olla väliltä %i ja %i." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} alkoi seurata tietoaineistoa {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} alkoi seurata käyttäjää {user}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Sinun tulee olla kirjautunut seurataksesi käyttäjiä" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} alkoi seurata ryhmää {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Et voi seurata itseäsi" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Näytä" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Seuraat jo tätä: {0}" +#: 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/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Sinun tulee olla kirjautunut seurataksesi tietoaineistoa." +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "tammikuu" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Käyttäjää {username} ei ole." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "helmikuu" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Sinun tulee olla kirjautunut seurataksesi ryhmää." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "maaliskuu" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "huhtikuu" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Poistetaan tietoaineisto: %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "toukokuu" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Poista %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "kesäkuu" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Poista käyttäjä %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "heinäkuu" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id ei ole datassa" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "elokuu" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Ei löytynyt sanastoa %s" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "syyskuu" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Ei löytynyt avainsanaa %s" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "lokakuu" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Sinun tulee olla kirjautunut lopettaaksesi jonkin asian seuraaminen." +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "marraskuu" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Et seuraa tätä: {0}" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "joulukuu" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Tietoaineistolinkkiä ei löytynyt" +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Juuri nyt" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Älä määrittele, jos käytät \"query\"-parametria" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} minuutti sitten" +msgstr[1] "{mins} minuuttia sitten" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Täytyy olla : pari(eja)" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} tunti sitten" +msgstr[1] "{hours} tuntia sitten" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Kentää \"{field}\" ei tunnistettu toiminnossa resource_search." +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} päivä sitten" +msgstr[1] "{days} päivää sitten" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Tietoaineistoa ei löytynyt" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} kuukausi sitten" +msgstr[1] "{months} kuukautta sitten" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Päivitä objektit %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "yli {years} vuosi sitten" +msgstr[1] "yli {years} vuotta sitten" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Päivitä tietoaineistojen suhteet: %s %s %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus ei löydetty" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{day}. {month}, {year}" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organisaatiota ei löytynyt." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} tavua" -#: 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/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, 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/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: 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/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "" -"Tietoaineistoa ei löytynyt tälle aineistolinkille, ei voida tarkistaa " -"valtuutusta" +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: 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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Ei oikeutta luoda käyttäjiä" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Ryhmiä ei löytynyt." +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Tietoaineiston luomiseen tarvitaan voimassa oleva API-avain" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Ryhmän luomiseen tarvitaan voimassa oleva API-avain" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Päivitä avatarisi osoitteessa gravatar.com" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Käyttäjällä %s ei ole oikeuksia lisätä jäseniä" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Tuntematon" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Käyttäjällä %s ei ole oikeuksia muokata ryhmää %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Nimetön resurssi" -#: 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/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Uusi tietoaineisto luotu." -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "Resurssinäyttöä ei löytynyt, tekijää ei voida tarkistaa." +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Tietoaineistolinkkejä muokattu." -#: 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/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Asetuksia muokattu." -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} katselukerta" +msgstr[1] "{number} katselukertaa" -#: 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/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} viimeaikainen katselukerta" +msgstr[1] "{number} viimeaikaista katselukertaa" -#: ckan/logic/auth/delete.py:103 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organizations" -msgstr "Käyttäjällä %s ei ole oikeuksia poistaa organisaatioita" +msgid "%s <%s>" +msgstr "%s <%s>" -#: 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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Vastaanottajan sähköpostiosoite ei saatavilla!" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organisaatio" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Ei oikeutta" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "ryhmä" -#: 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/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Puuttuva arvo" -#: ckan/logic/auth/get.py:130 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read package %s" -msgstr "Käyttäjällä %s ei ole oikeuksia lukea tietoaineistoa %s" +msgid "The input field %(name)s was not expected." +msgstr "Syöttökenttää %(name)s ei odotettu." -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Käyttäjällä %s ei ole oikeutta lukea resurssia %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Ole hyvä ja syötä kokonaislukuarvo" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "Käyttäjällä %s ei ole oikeuksia lukea joukkoa %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "Arvon tulee olla Unicode merkkijono" -#: ckan/logic/auth/get.py:258 -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/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Tietoaineiston tiedostolinkki(t) virheellisiä" -#: ckan/logic/auth/update.py:39 -#, 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/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Lisätiedot" -#: ckan/logic/auth/update.py:71 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Käyttäjällä %s ei oikeuksia muokata resurssia %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Avainsana-sanastoa %s ei ole olemassa" -#: ckan/logic/auth/update.py:100 -#, 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/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Ei pystytty parseroimaan JSON-muotoa." -#: ckan/logic/auth/update.py:128 -#, 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/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "Organisaatio pitää antaa" -#: ckan/logic/auth/update.py:145 -#, 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/validators.py:47 +msgid "Organization does not exist" +msgstr "Organisaatiota ei ole" -#: ckan/logic/auth/update.py:162 -#, 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/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Et voi lisätä tietoaineistoa tähän organisaatioon" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Pitää olla kirjautunut sisään muokatakseen käyttäjää" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Vääränlainen kokonaisluku" -#: ckan/logic/auth/update.py:197 -#, 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/validators.py:97 +msgid "Must be a natural number" +msgstr "Tulee olla luonnollinen luku" -#: ckan/logic/auth/update.py:208 -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/validators.py:103 +msgid "Must be a postive integer" +msgstr "Tulee olla positiivinen kokonaisluku" -#: ckan/logic/auth/update.py:216 -#, 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/validators.py:130 +msgid "Date format incorrect" +msgstr "Päivämäärän muoto väärä" -#: ckan/logic/auth/update.py:225 -#, 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/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Linkkejä ei saa olla logiviestissä" -#: ckan/logic/auth/update.py:239 -#, 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/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Tietojoukon id on jo olemassa" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Tietoaineiston muokkaukseen tarvitaan voimassa oleva API-avain" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Tietoaineistolinkki" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Ryhmän muokkaukseen tarvitaan voimassa oleva API-avain" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Ryhmän nimeä tai tunnistetta ei ole olemassa." -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Lisenssiä ei määritelty" - -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" - -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" - -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" - -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" - -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" - -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" - -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Muu (avoin)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Aktiviteetin tyyppi" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Muu (Public Domain)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Nimien tulee olla merkkijonoja" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Muu (Attribution)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Nimeä ei voida käyttää" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Tulee olla vähintään %s merkkiä pitkä" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Nimi voi olla korkeintaan of %i merkkiä pitkä" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Muu (Non-Commercial)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Tulee olla kokonaisuudessaan pienin alfanumeerisin (ascii) merkein ja näillä" +" symbooleilla: -_" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Muu (Not Open)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Tämä URL on jo käytössä." -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "riippuu %s:stä" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Nimen \"%s\" pituus on vähemmän kuin minimi %s" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "on %s riippuvuus" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Nimen \"%s\" pituus on enemmän kuin maksimi %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "on johdettavissa %s:sta" +msgid "Version must be a maximum of %i characters long" +msgstr "Versio saa olla maksimissaan %i merkkiä pitkä" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "on haara %s" +msgid "Duplicate key \"%s\"" +msgstr "Duplikaatti avain \"%s\"" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "linkittää %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Ryhmän nimi löytyy jo tietokannasta" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "on linkitetty %s:ta" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Avainsanan \"%s\" pituus on oltava vähintään %s merkkiä" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "on %s:n lapsi" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Avainsana \"%s\" on pidempi kuin maksimi %i" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "on %s:n äiti" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Avainsanan \"%s\" pitää koostua alfanumeerisita merkeistä (ascii) ja näistä " +"erikoismerkeistä: -_." -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "on sisarus %s" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Ladataan..." +msgid "Tag \"%s\" must not be uppercase" +msgstr "Avainsana \"%s\" ei saa sisältää isoja kirjaimia" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "API:n kautta ei ole ladattavissa dataa tälle resurssille" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Käyttäjätunnusten tulee olla merkkijonoja" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Data API:n tietojen lataaminen epäonnistui" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Tämä kirjautumisnimi ei käytettävissä" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Ei yhtään osumaa" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Ole hyvä ja syötä molemmat salasanat" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Ala kirjoittaa..." +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Salasanojen tulee olla tulee olla merkkijonoja" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Liian lyhyt, pitää olla vähintään yksi merkki" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Salasanasi pitää olla vähintään 4 merkkiä" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Lomakkeella on tallentamattomia tietoja" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Syötetyt salasanat eivät samat" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Vahvista toimenpide" +#: ckan/logic/validators.py:611 +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/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Oletko varma, että haluat tehdä tämän?" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Nimen tulee olla vähintään %s merkkiä pitkä" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Vahvista" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Sanaston nimi on jo käytössä" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Peruuta" +#: ckan/logic/validators.py:634 +#, 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/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Seuraa" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Avainsana-sanastoa ei löytynyt." -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Lopeta seuraaminen" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Avainsana %s ei sisälly sanastoon %s" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Lataa" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Ei avainsanan nimeä" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Linkki" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Avainsana %s sisältyy jo sanastoon %s" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Poista" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Ole hyvä ja anna validi URL" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Kuva" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "roolia ei ole." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Ilman organisaatiota olevat tietoaineistot eivät voi olla yksityisiä." -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Tiedosto" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Ei lista" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Lataa tiedosto työasemalta" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Ei merkkijono" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Tämä ylätaso loisi silmukan hierarkiassa" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Uudelleenjärjestä resurssit" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" ja \"filter_values\" tulee olla saman pituisia" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Tallenna tilaus" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" on pakollinen, kun \"filter_values\" on täytetty" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Tallentaa..." +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" on pakollinen, kun \"filter_fields\" on täytetty" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Tallenna tiedosto" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Saman niminen skeematieto on jo olemassa" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Tapahtui virhe" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "Sähköposti {email} ei ole oikeellisessa muodossa" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Resurssi on ladattu" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Luo objekti %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Tiedoston lataaminen epäonnistui" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Luo tietoaineistojen suhteet: %s %s %s " -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Lataamisen autentikointi epäonnistui" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Luo jäsenobjekti %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Datan saaminen ladattavaan tiedostoon epäonnistui" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Yrittää luoda organisaatiota ryhmäksi" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Olet parhaillaan lataamassa tiedostoa palvelimelle. Oletko varma, että " -"haluat poistua sivulta ja keskeyttää lataamisen?" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Sinun täytyy antaa tietoaineiston id tai nimi (parametri \"package\")." -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Uudelleenjärjestä resurssinäyttö" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Luokitus täytyy antaa (parametri \"rating\")." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Muokkaa" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Luokituksen tulee olla kokonaislukuarvo." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Näytä enemmän" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Luokituksen tulee olla väliltä %i ja %i." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Piilota" +#: ckan/logic/action/create.py:1064 +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/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Virhe %(error_code)s" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Sinun tulee olla kirjautunut seurataksesi käyttäjiä" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Tietoa {0}" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Et voi seurata itseäsi" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN ohjelmointirajapinta (API)" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Seuraat jo tätä: {0}" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Sinun tulee olla kirjautunut seurataksesi tietoaineistoa." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Toteutettu CKAN-ohjelmistolla" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Käyttäjää {username} ei ole." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Järjestelmän ylläpitäjän asetukset" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Sinun tulee olla kirjautunut seurataksesi ryhmää." -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Näytä profiili" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "Poista käyttäjä: {0}" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:92 #, 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)" +msgid "REST API: Delete Package: %s" +msgstr "REST API: Poistetaan tietoaineisto: %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Yhteenveto" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Poista %s" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Muokkaa asetuksia" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Poista käyttäjä %s" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Asetukset" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id ei ole datassa" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Kirjaudu ulos" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Ei löytynyt sanastoa %s" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Kirjaudu sisään" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Ei löytynyt avainsanaa %s" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Rekisteröidy" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Sinun tulee olla kirjautunut lopettaaksesi jonkin asian seuraaminen." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Tietoaineistot" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Et seuraa tätä: {0}" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Etsi tietoaineistoja" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Tietoaineistolinkkiä ei löytynyt" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Etsi" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Älä määrittele, jos käytät \"query\"-parametria" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Siirry sisältöön" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Täytyy olla : pari(eja)" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Lataa vähemmän" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Kentää \"{field}\" ei tunnistettu toiminnossa resource_search." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Lataa enemmän" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Tietoaineistoa ei löytynyt" -#: 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/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Päivitä objektit %s" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Ylläpito" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Päivitä tietoaineistojen suhteet: %s %s %s" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Järjestelmän ylläpitäjät" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus ei löydetty" -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Asetus" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organisaatiota ei löytynyt." -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Roskakori" +#: 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/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "Haluatko varmasti palauttaa konfiguroinnin oletusasetukset?" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, 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/templates/admin/config.html:17 -msgid "Reset" -msgstr "Oletusasetukset" +#: 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/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Päivitä asetukset" +#: 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/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN konfigurointi" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Tietoaineistoa ei löytynyt tälle aineistolinkille, ei voida tarkistaa " +"valtuutusta" -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:76 #, 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.

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

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

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

" +"Käyttäjällä {user} ei ole oikeutta luoda käyttäjiä API-rajapinnan kautta." -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Tyhjennä" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Ei oikeutta luoda käyttäjiä" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" -"

Tyhjennä poistetut tietojoukot lopullisesti ja ilman " -"palautusmahdollisuutta.

" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Ryhmiä ei löytynyt." -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Tietoaineiston luomiseen tarvitaan voimassa oleva API-avain" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "Sisällöt on saatavilla myös kyselyrajapinna (API) kautta" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Ryhmän luomiseen tarvitaan voimassa oleva API-avain" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

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

" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Käyttäjällä %s ei ole oikeuksia lisätä jäseniä" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Päätepisteet" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Käyttäjällä %s ei ole oikeuksia muokata ryhmää %s" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"Data API:a voidaan käyttää seuraavilla CKAN action API:n toiminnoilla." +#: 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/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Lisää uusi" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "Resurssinäyttöä ei löytynyt, tekijää ei voida tarkistaa." -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Päivitä / Lisää" +#: 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/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Haku" +#: 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/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "SQL-haku" +#: 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Hakeminen" +#: 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/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Hakuesimerkki (ensimmäiset 5 tulosta)" +#: 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Kyselyesimerkki (tulokset sisältäen 'jones')" +#: 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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Kyselyesimerkki (SQL-haun kautta)" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Ei oikeutta" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Esimerkki: Javascript" +#: ckan/logic/auth/get.py:109 +#, 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/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-apiin käyttäen jQuery-kutsua." +#: 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/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Esimerkki: Python" +#: 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/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/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Käyttäjällä %s ei ole oikeuksia lukea joukkoa %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Klikkaa tästä saadaksesi lisätietoa..." +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Sinun pitää olla kirjautunut päästäksesi omalle työpöydällesi" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Lataa resurssi" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Käyttäjällä %s ei ole oikeuksia muokata tietoaineistoa %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Selaimesi ei tue kehyksiä." +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Käyttäjällä %s ei oikeuksia muokata resurssia %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Ei esikatselua saatavilla." +#: ckan/logic/auth/update.py:100 +#, 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/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Lisätietoja..." +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Käyttäjällä %s ei ole oikeuksia muokata organisaatiota %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:145 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Ei käsittelijää datatyypille: %(type)s." +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/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Standardi" +#: ckan/logic/auth/update.py:162 +#, 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/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Vakiosyöte" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Pitää olla kirjautunut sisään muokatakseen käyttäjää" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Keskipitkä" +#: ckan/logic/auth/update.py:198 +#, 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/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Keskipitkä syöte" +#: ckan/logic/auth/update.py:209 +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/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Täyspitkä" +#: ckan/logic/auth/update.py:217 +#, 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/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Täyspitkä syöte" +#: ckan/logic/auth/update.py:226 +#, 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/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Pitkä" +#: ckan/logic/auth/update.py:240 +#, 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/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Pitkä syöte" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Tietoaineiston muokkaukseen tarvitaan voimassa oleva API-avain" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Etuliite" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Ryhmän muokkaukseen tarvitaan voimassa oleva API-avain" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Syötteen etuliite" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Lisenssiä ei määritelty" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Muokattu kenttä (tyhjä)" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Muokattu kenttä" - -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "kuvauskieli" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Tekstikenttä" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Valitse" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Aktiivisuusvirta" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: 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/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Lisää ryhmä" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Ryhmälomake" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Muu (avoin)" -#: 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/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Muu (Public Domain)" -#: 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/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Muu (Attribution)" -#: 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/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Hallinnoi" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Muokkaa ryhmää" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Muu (Non-Commercial)" -#: 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/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Muu (Not Open)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Seuraajat" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "riippuu %s:stä" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Historia" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "on %s riippuvuus" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Lisää ryhmä" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "on johdettavissa %s:sta" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Etsi ryhmiä..." +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "on haara %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Nimen mukaan nousevasti" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "linkittää %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Nimen mukaan laskevasti" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "on linkitetty %s:ta" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "Sivulla ei ole tällä hetkellä ryhmiä." +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "on %s:n lapsi" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Mitäs jos tekisit yhden?" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "on %s:n äiti" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "Takaisin jäsenlistaukseen" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "on sisarus %s" -#: 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/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "API:n kautta ei ole ladattavissa dataa tälle resurssille" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Lisää jäsen" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Data API:n tietojen lataaminen epäonnistui" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Olemassa oleva käyttäjä" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Ala kirjoittaa..." -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Jos haluat lisätä olemassa olevan käyttäjän, etsi häntä käyttäjänimellä." +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Ei yhtään osumaa" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "tai" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Uusi käyttäjä" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Lomakkeella on tallentamattomia tietoja" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Jos haluat kutsua uuden käyttäjän, niin kirjoita kutsuttavan " -"sähköpostiosoite alle." +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Vahvista toimenpide" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Rooli" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Oletko varma, että haluat tehdä tämän?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Haluatko varmasti poistaa tämän jäsenen?" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Vahvista" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Poista" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:61 -msgid "Save" -msgstr "Tallenna" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Lopeta seuraaminen" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Mitä roolit ovat?" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Seuraa" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

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

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

" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Linkki" -#: 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/public/base/javascript/modules/image-upload.js:61 +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/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Päivitä ryhmä" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Lataa" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Luo uusi ryhmä" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Poista" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevanssi" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Lataa tiedosto työasemalta" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Viimeksi muokattu" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Suositut" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Tiedosto" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Etsi tietoaineistoista..." +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Tallenna järjestys" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Ryhmän: {group} tietoaineistot" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Tallentaa..." -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Viimeaikaisin revisiohistoria" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Tallenna tiedosto" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Nimi" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Tapahtui virhe" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Minun ryhmäni" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Tiedoston lataaminen epäonnistui" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "Minun ryhmäni" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Lataamisen autentikointi epäonnistui" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Kuvaus" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Resurssi on ladattu" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Hieman listätietoa ryhmästäni..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Datan saaminen ladattavaan tiedostoon epäonnistui" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Haluatko varmasti poistaa tämän ryhmän?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +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/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Tallenna ryhmä" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Lisää suodatin" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} tietoaineistoa" -msgstr[1] "{num} tietoaineistoa" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "Valitse tietokenttä" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 tietoaineistoa" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Muokkaa" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Näkymä {name}" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Näytä enemmän" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Poista tietoaineisto tästä ryhmästä" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Piilota" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Mitä ryhmät ovat?" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Virhe %(error_code)s" -#: ckan/templates/group/snippets/helper.html:8 +#: 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 "" -" 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. " +"Powered by CKAN" 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ä." +"Toteutettu CKAN-ohjelmistolla" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Vertaa" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Järjestelmän ylläpitäjän asetukset" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Poistetut" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Näytä profiili" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "Lisätietoja" +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Työpöydällä (%(num)d uusi kohde)" +msgstr[1] "Työpöydällä (%(num)d uutta kohdetta)" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Revisio" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Yhteenveto" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Aikaleima" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Muokkaa asetuksia" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Laatija" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Asetukset" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Logiviesti" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Kirjaudu ulos" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Tervetuloa" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Kirjaudu sisää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 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/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Rekisteröidy" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Tervetuloa CKAN:iin" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Tietoaineistot" -#: 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/header.html:116 +msgid "Search Datasets" +msgstr "Etsi tietoaineistoja" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Tämä on näytteillä oleva osuus" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Etsi" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "Esim. ympäristö" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Siirry sisältöön" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Etsi tietoja" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Lataa vähemmän" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Suositut avainsanat" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Lataa enemmän" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} tilastoa" +#: 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/home/snippets/stats.html:11 -msgid "dataset" -msgstr "tietoaineisto" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Ylläpito" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "tietoaineistoa" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Järjestelmän ylläpitäjät" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organisaatiot" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Asetus" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "ryhmät" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Roskakori" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Haluatko varmasti palauttaa konfiguroinnin oletusasetukset?" + +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Oletusasetukset" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Päivitä asetukset" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN konfigurointi" + +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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 "" -"Voit käyttää tässä Markdown-muotoiluja" +"

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/macros/form.html:265 -msgid "This field is required" -msgstr "Tämä kenttä on pakollinen" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Vahvista resetointi" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Muokattu" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Hallinnoi CKAN:ia" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Lomake sisältää virheellisiä syötteitä" +#: 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/macros/form.html:395 -msgid "Required field" -msgstr "Pakollinen kenttä" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Tyhjennä" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "" +"

Tyhjennä poistetut tietojoukot lopullisesti ja ilman " +"palautusmahdollisuutta.

" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "Kuvan URL" +#: 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/macros/form.html:424 -msgid "Clear Upload" -msgstr "Tyhjennä lataus" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Klikkaa tästä saadaksesi lisätietoa..." -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Organisaatiolomake" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Lataa resurssi" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Muokkaa tietoaineistoja" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Ei esikatselua saatavilla." -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Lisää tietoaineisto" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Lisätietoja..." -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "löytyi haulla \"{query}\"" +#: 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/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Haulla \"{query}\" ei löytynyt tietoaineistoja" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standardi" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Muuta julkiseksi" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Vakiosyöte" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Muuta yksityiseksi" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Keskipitkä" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Luonnos" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Keskipitkä syöte" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Yksityinen" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Täyspitkä" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Tällä organisaatiolla ei ole tietoaineistoja" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Täyspitkä syöte" -#: 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/development/snippets/form.html:8 +msgid "Large" +msgstr "Pitkä" -#: 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/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Pitkä syöte" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Lisää organisaatio" +#: 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/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "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:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "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/organization/index.html:20 -msgid "Search organizations..." -msgstr "Etsi organisaatioita.." +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Lisää ryhmä" -#: 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/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Ryhmälomake" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Käyttäjätunnus" +#: ckan/templates/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/organization/member_new.html:50 -msgid "Email address" -msgstr "Sähköpostiosoite" +#: 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/organization/member_new.html:62 -msgid "Update Member" -msgstr "Päivitä jäsen" +#: 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/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Hallinnoi" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Luo uusi organisaatio" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Muokkaa ryhmää" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Päivitä organisaatiota" +#: ckan/templates/group/edit_base.html:23 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/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Luo uusi organisaatio" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Historia" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Lisää tietoaineisto" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Lisää ryhmä" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Tietojoukot organisaatiossa: {group}" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Etsi ryhmiä..." -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Mitä organisaatiot ovat?" +#: 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/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/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Mitäs jos tekisit yhden?" -#: 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/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Takaisin jäsenlistaukseen" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Minun organisaationi" +#: 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/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "Organisaationi" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Lisää jäsen" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Hieman lisätietoa organisaatiostani..." +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Olemassa oleva käyttäjä" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"Haluatko varmasti poistaa tämän organisaation? Tämä poistaa kaikki julkiset " -"ja yksityiset tietoaineistot, jotka kuuluvat tälle organisaatiolle." +"Jos haluat lisätä olemassa olevan käyttäjän, etsi häntä käyttäjänimellä." -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Tallenna organisaatio" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "tai" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Näytä {organization_name}" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Uusi käyttäjä" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Luo uusi tietoaineisto" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Jos haluat kutsua uuden käyttäjän, niin kirjoita kutsuttavan " +"sähköpostiosoite alle." -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Mitä tietoaineistot ovat?" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Rooli" -#: 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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "Haluatko varmasti poistaa tietoaineiston - {name}?" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Poista" -#: 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/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Mitä roolit ovat?" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Tarkastele tietoaineistoa" +#: ckan/templates/group/member_new.html:80 +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/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Muokkaa metadataa" +#: 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/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äyttöä" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Päivitä ryhmä" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Esikatselu" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Luo uusi ryhmä" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Päivitä" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Etsi tietoaineistoista..." -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Liitä ryhmä tähän aineistoon" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Ryhmän: {group} tietoaineistot" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Lisää ryhmään" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Viimeaikaisin revisiohistoria" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "Aineistoon ei ole liitetty ryhmiä" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Nimi" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Päivitä tietoaineisto" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Minun ryhmäni" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Lisää dataa tietoaineistoon" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "Minun ryhmäni" -#: 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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Hieman listätietoa ryhmästäni..." -#: 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/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Haluatko varmasti poistaa tämän ryhmän?" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Uusi resurssi" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Tallenna ryhmä" -#: 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äyttö" +#: 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/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/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Poista tietoaineisto tästä ryhmästä" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Lisää" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Mitä ryhmät ovat?" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/group/snippets/helper.html:8 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +" 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 "" -"Tämä on tietoaineiston vanha revisio, jota on muokattu %(timestamp)s. Se voi" -" poiketa merkittävästi nykyisestä revisiosta." +"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/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Lataa DataStoreen" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Vertaa" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Latausvirhe:" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Poistetut" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Virhe:" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "Lisätietoja" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Revisio" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Tila" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Aikaleima" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Viimeksi päivitetty" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Laatija" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Ei koskaan" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Logiviesti" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Lataa lokitiedosto" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Tervetuloa" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Yksityiskohdat" +#: 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/package/resource_data.html:81 -msgid "End of log" -msgstr "Lokitiedoston loppu" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Tervetuloa CKAN:iin" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Kaikki resurssit" +#: 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/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Tarkastele resurssia" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Tämä on näytteillä oleva osuus" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Muokkaa resurssia" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Esim. ympäristö" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Etsi tietoja" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Näkymät" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Suositut avainsanat" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API-osoite" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} tilastoa" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Mene resurssiin" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "tietoaineisto" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Lataa" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "tietoaineistoa" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisaatiot" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Tietoaineiston yhteenvedosta" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "ryhmät" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Sivun logo" + +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Lähde: %(dataset)s" +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Voit käyttää tässä Markdown-muotoiluja" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Tälle resurssille ei ole luotu vielä yhtään näkymää." +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Tämä kenttä on pakollinen" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Et näe odottamiasi näkymiä?" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Muokattu" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "Tässä joitakin syitä, jos et näe odottamiasi näkymiä:" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Lomake sisältää virheellisiä syötteitä" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "Tälle resurssille ei ole luotu yhtään sopivaa näkymää" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Pakollinen kenttä" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" -"Voi olla, ettei järjestelmänhoitaja ole ottanut käyttöön asiaan liittyviä " -"liitännäisiä" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"Jos nä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/macros/form.html:411 +msgid "Image URL" +msgstr "Kuvan URL" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Lisätietoa" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Tyhjennä lataus" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Kenttä" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Organisaatiolomake" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Arvo" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Muokkaa tietoaineistoja" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "tuntematon" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Lisää tietoaineisto" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Luotu" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "löytyi haulla \"{query}\"" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Muoto" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Haulla \"{query}\" ei löytynyt tietoaineistoja" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Lisenssi" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Muuta julkiseksi" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Uusi näkymä" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Muuta yksityiseksi" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Tällä resurssilla ei ole näkymiä" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Luonnos" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Lisää uusi resurssi" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Yksityinen" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

Tässä tietoaineistossa ei ole dataa, mikset lisäisi sitä? " +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Tällä organisaatiolla ei ole tietoaineistoja" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: 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/package/search.html:53 -msgid "API Docs" -msgstr "API-dokumentaatio" +#: 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/package/search.html:55 -msgid "full {format} dump" -msgstr "täysi {format} dumppi" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Lisää organisaatio" -#: 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/organization/index.html:20 +msgid "Search organizations..." +msgstr "Etsi organisaatioita.." -#: 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/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Sivustolla ei ole tällä hetkellä organisaatioita" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "Kaikki näkymät" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Käyttäjätunnus" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "Näytä näkymä" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Sähköpostiosoite" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Näytä esikatselu" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Päivitä jäsen" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Lisätietoja" +#: ckan/templates/organization/member_new.html:81 +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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Lähde" +#: 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/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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Luo uusi organisaatio" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Versio" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Päivitä organisaatiota" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Tila" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Luo uusi organisaatio" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Viimeksi päivitetty" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Lisää tietoaineisto" -#: 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/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Tietojoukot organisaatiossa: {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Mitä organisaatiot ovat?" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Data API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Minun organisaationi" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Nimike" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "Organisaationi" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "esim. kuvaava otsikko" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Hieman lisätietoa organisaatiostani..." -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "esim. my-dataset" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Haluatko varmasti poistaa tämän organisaation? Tämä poistaa kaikki julkiset " +"ja yksityiset tietoaineistot, jotka kuuluvat tälle organisaatiolle." -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "esim. datan sanallinen kuvaus" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Tallenna organisaatio" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "esim. talous, mielenterveys, hallinto" +#: 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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -" Lisenssien määritykset ja lisätiedot löydät osoitteesta opendefinition.org " +"Tietoaineisto tarkoittaa CKAN:issa kokoelmaa resursseja (esim. tiedostoja) " +"sekä niihin liittyvää kuvausta ja muuta metatietoa, kuten pysyvää URL-" +"osoitetta." -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organisaatio" +#: 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/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Ei organisaatiota" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Näkyvyys" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Tarkastele tietoaineistoa" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Julkinen" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Muokkaa metadataa" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Aktiivinen" +#: 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äyttöä" -#: 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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Esikatselu" -#: 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/edit_view.html:21 +msgid "Update" +msgstr "Päivitä" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Seuraavaksi: Lisää dataa" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Liitä ryhmä tähän aineistoon" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Lisää ryhmään" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Päivitä tietoaineisto" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Tekijän sähköpostiosoite" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Lisää dataa tietoaineistoon" -#: 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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Lisää uusi resurssi" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Ylläpitäjän sähköposti" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Päivitä 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äyttö" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: 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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Lisää" + +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Tämä on tietoaineiston vanha revisio, jota on muokattu %(timestamp)s. Se voi" +" poiketa merkittävästi nykyisestä revisiosta." -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "esim. Kullan hinta tammikuussa 2011" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Kaikki resurssit" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Datan sanallinen kuvaus" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Tarkastele resurssia" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "esim. CSV, XML tai JSON" +#: 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/snippets/resource_form.html:40 -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/resource_edit_base.html:26 +msgid "Views" +msgstr "Näkymät" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "esim. 2012-06-05" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API-osoite" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Tiedoston koko" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Mene resurssiin" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "esim. 1024" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Lataa" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME-tyyppi" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "esim. application/json" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Tietoaineiston yhteenvedosta" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Haluatko varmasti poistaa tämän resurssin?" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Lähde: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Edellinen" +#: ckan/templates/package/resource_read.html:109 +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/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Tallenna ja lisää toinen" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Et näe odottamiasi näkymiä?" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Valmis" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Mikä on resurssi?" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -"Resurssi on mikä tahansa tiedosto tai linkki tiedostoon, jossa on " -"hyödyllistä dataa." - -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Tutki" +"Voi olla, ettei järjestelmänhoitaja ole ottanut käyttöön asiaan liittyviä " +"liitännäisiä" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Lisää tietoa" +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Upota" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Lisätietoa" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "Tämä resurssinäyttö ei ole saatavissa tällä hetkellä." +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Kenttä" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Upota resurssinäyttö" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Arvo" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" -"Voit leikata ja liimata upotuskoodin sisällönhallintajärjestelmään tai " -"blogiin, joka sallii raakaa HTML-koodia" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "Data viimeksi päivitetty" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Leveys" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "tuntematon" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Korkeus" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "Metatieto viimeksi päivitetty" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Koodi" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Luotu" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Resurssin esikatselu" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Muoto" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Data ja resurssit" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Lisenssi" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Tässä tietojoukossa ei ole dataa" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Uusi näkymä" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "Lue tietoaineisto alkaen %s" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Tällä resurssilla ei ole näkymiä" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Luo uusi tietoaineisto" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Lisää uusi resurssi" -#: 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/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, 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/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "esim. minun näkymäni" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: 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/search.html:53 +msgid "API Docs" +msgstr "API-dokumentaatio" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Lisää suodatin" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "täysi {format} dumppi" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Poista suodatin" +#: 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/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Suodattimet" +#: 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/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Mikä on näkymä?" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Kaikki näkymät" -#: 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/package/view_edit_base.html:12 +msgid "View view" +msgstr "Näytä näkymä" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Erot" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Näytä esikatselu" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Revision erot" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Lisätietoja" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Ero" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Lähde" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Ei eroja" +#: 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/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Revisiohistoria" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versio" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Revisiot" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Tila" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Peru poistaminen" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Viimeksi päivitetty" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Muutokset" +#: 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/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Tietoaineistojen avainsanat" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Luo uusi organisaatio" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entiteetti" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "Organisaatioita ei ole, mihin voit sijoittaa tämän tietiaineston." -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Uusi tapahtuma" +#: 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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Upota datan näkymä" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Nimike" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Sisällytä tämä näkymä verkkosivulle kopioimalla tämä:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "esim. kuvaava otsikko" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Valitse leveys ja korkeus pikseleinä:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "esim. my-dataset" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Leveys:" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "esim. datan sanallinen kuvaus" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Korkeus:" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "esim. talous, mielenterveys, hallinto" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Datapusherin tila: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +" Lisenssien määritykset ja lisätiedot löydät osoitteesta opendefinition.org " -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Takaisinlinkitys URL" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisaatio" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Näytä lisää {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Ei organisaatiota" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Näytä suosituimmat {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Näkyvyys" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Tällä haulla ei löydy {facet_type} -tyypin sisältöä" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Julkinen" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Aloitussivu" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Aktiivinen" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Kieli" +#: 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/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Siirry" +#: 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/snippets/license.html:14 -msgid "No License Provided" -msgstr "Ei lisenssiä" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Seuraavaksi: Lisää dataa" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Tämä tietoaineisto täyttää Open Definition -määrittelyn" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Tällä organisaatiolla ei ole kuvausta" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Tietoaineistolla ei ole kuvausta" +#: 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/snippets/search_form.html:17 -msgid "Submit" -msgstr "Lähetä" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Tekijän sähköpostiosoite" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Lajittelu" +#: ckan/templates/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/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Suodata tuloksia" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Ylläpitäjän sähköposti" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Kokeile toisenlaisia hakutermejä.

" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Päivitä resurssi" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Data" -#: 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/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "Haulla \"{query}\" ei löytynyt tietoaineistoja" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "esim. Kullan hinta tammikuussa 2011" -#: 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/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Datan sanallinen kuvaus" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Tietoaineistoja ei löytynyt" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "esim. CSV, XML tai JSON" -#: 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/package/snippets/resource_form.html:40 +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/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Haulla \"{query}\" ei löytynyt ryhmiä" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "esim. 2012-06-05" -#: 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/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Tiedoston koko" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Ryhmiä ei löytynyt" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "esim. 1024" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME-tyyppi" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "Haulla \"{query}\" ei löytynyt organisaatioita" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "esim. application/json" -#: 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/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Haluatko varmasti poistaa tämän resurssin?" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Organisaatioita ei löytynyt" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Edellinen" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Sosiaalinen" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Tallenna ja lisää toinen" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Tilaa" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Valmis" -#: 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:82 -msgid "Email" -msgstr "Sähköposti" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Mikä on resurssi?" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: 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/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Muokkaukset" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Tutki" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Etsi avainsanoja" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Lisää tietoa" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Uutisvirta" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Upota" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Minun tietoaineistoni" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "Tämä resurssinäyttö ei ole saatavissa tällä hetkellä." -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Minun organisaationi" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Upota resurssinäyttö" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Minun ryhmäni" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Voit leikata ja liimata upotuskoodin sisällönhallintajärjestelmään tai " +"blogiin, joka sallii raakaa HTML-koodia" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Seuraamieni osioiden toiminta" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Leveys" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Et ole vielä luonut yhtään tietoaineistoa" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Korkeus" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Luo uusi nyt?" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Koodi" -#: 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/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Resurssin esikatselu" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Et ole minkään organisaation jäsen." +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Data ja resurssit" -#: 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/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Tässä tietojoukossa ei ole dataa" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Käyttäjätilin tiedot" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Lue tietoaineisto alkaen %s" -#: 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/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Luo uusi tietoaineisto" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Muuta tietoja" +#: 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/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Koko nimi" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "esim. minun näkymäni" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "esim. Joe Bloggs" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "esim. tietoja minun näkymästäni" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "joe@example.com" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Poista suodatin" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Hieman tietoa itsestäsi" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Mikä on näkymä?" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Tilaa ilmoitukset sähköpostiisi" +#: 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/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Vaihda salasana" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Erot" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Revision erot" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Salasana" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Ero" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Salasana uudelleen" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Ei eroja" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Haluatko varmasti poistaa tämän käyttäjän?" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Revisiohistoria" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "Oletko varma että haluat uudistaa API-avaimen?" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Revisiot" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Uudista API-avain" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Peru poistaminen" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Päivitä profiili" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Muutokset" -#: 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/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Tietoaineistojen avainsanat" -#: 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/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entiteetti" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Tarvitsetko käyttäjätilin?" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Uusi tapahtuma" -#: 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/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Upota datan näkymä" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Luo käyttäjätili" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Sisällytä tämä näkymä verkkosivulle kopioimalla tämä:" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Unohditko salasanasi?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Valitse leveys ja korkeus pikseleinä:" -#: 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/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Leveys:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Unohditko salasanasi?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Korkeus:" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Uloskirjautunut" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusherin tila: {status}." -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Olet nyt kirjautunut ulos." +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Takaisinlinkitys URL" -#: 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/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Näytä lisää {facet_type}" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Kirjaudu ulos" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Näytä suosituimmat {facet_type}" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Muista minut" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Tällä haulla ei löydy {facet_type} -tyypin sisältöä" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Olet jo kirjautunut sisään" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Aloitussivu" -#: ckan/templates/user/logout_first.html:24 -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/snippets/language_selector.html:3 +msgid "Language" +msgstr "Kieli" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Kirjaudu ulos nyt" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Siirry" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Rekisteröinti" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Ei lisenssiä" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Rekisteröi uusi käyttäjätili" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Tämä tietoaineisto täyttää Open Definition -määrittelyn" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Miksi rekisteröityä?" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Tällä organisaatiolla ei ole kuvausta" -#: 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/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Tietoaineistolla ei ole kuvausta" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "käyttäjänimi" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Lähetä" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Koko nimi" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Lajittelu" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Luo uusi käyttäjätili" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Suodata tuloksia" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Aseta salasana uudelleen" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Kokeile toisenlaisia hakutermejä.

" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Salasanan uudelleenasetus" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" +"

Haussa tapahtui virhe. Yritä " +"uudelleen.

" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Päivitä salasana" +#: 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/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Miten tämä toimii?" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Haulla \"{query}\" ei löytynyt tietoaineistoja" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "Anna salasanasi, niin päivitämme käyttäjätilisi tiedot" +#: 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/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Käyttäjä ei ole luonut yhtään tietoaineistoa." +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Tietoaineistoja ei löytynyt" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Et ole lisännyt biografiaa." +#: 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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Tällä käyttäjällä ei ole biografiaa." +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Haulla \"{query}\" ei löytynyt ryhmiä" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: 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/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Tarkoittaa sitä, että vain sinä näet tämän" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Ryhmiä ei löytynyt" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Jäsenyys alkanut" +#: 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/user/read_base.html:96 -msgid "API Key" -msgstr "API-avain" +#: 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/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Resetoi salasanasi" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Organisaatioita ei löytynyt" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Salasanan uudelleenasetus" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Sosiaalinen" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Pyydä uudelleenasettamista" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Tilaa" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Syötä käyttäjänimesi laatikkoon, niin lähetämme sinulle sähköpostin, jossa " -"on linkki uuden salasanan syöttämislomakkeeseen." +#: ckan/templates/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:82 +msgid "Email" +msgstr "Sähköposti" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Tapahtumia kohteessa:" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Etsi listalta..." +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Muokkaukset" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Et seuraa mitään" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Etsi avainsanoja" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Ei seuraajia" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Uutisvirta" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Etsi käyttäjiä" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Minun tietoaineistoni" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Valmis" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Minun organisaationi" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Odottaa" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Minun ryhmäni" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Lähetetään" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Seuraamieni osioiden toiminta" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Tätä ei ole vielä ladattu" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Et ole vielä luonut yhtään tietoaineistoa" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "DataStore-resurssia ei löytynyt" +#: 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:16 +msgid "Create one now?" +msgstr "Luo uusi nyt?" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" -"Tieto oli virheellistä (esimerkiksi: numeerinen arvo on rajojen ulkopuolella" -" ta oli lisätty tekstitietoon)." +#: 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." -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "Resurssia \"{0}\" ei löytynyt." +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Et ole minkään organisaation jäsen." -#: 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}" +#: 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" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Aineistoa sivulla" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Käyttäjätilin tiedot" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Testikonfiguraatio" +#: 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. " -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Muokattu kenttä nousevasti" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Muuta tietoja" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Muokattu kenttä laskevasti" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Koko nimi" -#: 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" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "esim. Joe Bloggs" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "muokattu teksti" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "joe@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Maakoodi" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Hieman tietoa itsestäsi" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "muokattu resurssi teksti" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Tilaa ilmoitukset sähköpostiisi" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Vaihda salasana" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Tällä ryhmällä ei ole kuvausta" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "Ylläpitäjän salasana" -#: ckanext/example_theme/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/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Salasana" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "Kuvan url" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Salasana uudelleen" -#: 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)" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Haluatko varmasti poistaa tämän käyttäjän?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Data Explorer" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Oletko varma että haluat uudistaa API-avaimen?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Taulu" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Uudista API-avain" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Kaavio" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Päivitä profiili" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Kartta" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Kaikki käyttäjät" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -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 "Kirjaudu" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "Rivin siirtymä" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Tarvitsetko käyttäjätilin?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "esim: 0" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Rekisteröidy, se vie vain hetken." -#: 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ä" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Luo käyttäjätili" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "esim: 100" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Unohditko salasanasi?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Kaavion tyyppi" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Ryhmä (Akseli 1)" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Unohditko salasanasi?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Sarjat (Akseli 2)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Uloskirjautunut" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Kentän tyyppi" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Olet nyt kirjautunut ulos." -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Latituudikenttä" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Olet jo kirjautunut käyttäjänä: {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Longituudikenttä" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Kirjaudu ulos" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "GeoJSON-kenttä" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Muista minut" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Kohdista ominaisuuksiin automaattisesti" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Olet jo kirjautunut sisään" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Klusterin markkerit" +#: ckan/templates/user/logout_first.html:24 +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ä." -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Tietoaineistoja yhteensä" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Kirjaudu ulos nyt" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Päivämäärä" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Rekisteröinti" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Tietoaineistoja yhteensä" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Luo uusi käyttäjätili" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Viikon revisiot tietoaineistosta" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Miksi rekisteröityä?" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Kaikki tietoaineistojen revisiot" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Luo uusia tietoaineistoja, ryhmiä ja muita kiinnostavia asioita" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Uudet tietoaineistot" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "käyttäjänimi" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Korkeimman arvostelun saaneet tietoaineistot" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Koko nimi" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Arvostelujen keskiarvo" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Luo uusi käyttäjätili" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Arvostelujen määrä" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Aseta salasana uudelleen" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Ei arvosteluja" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Salasanan uudelleenasetus" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Eniten muokatut tietoaineistot" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Päivitä salasana" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Muokkausten määrä" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Miten tämä toimii?" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Ei muokattuja tietoaineistoja" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Anna salasanasi, niin päivitämme käyttäjätilisi tiedot" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Suurimmat ryhmät" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Käyttäjä ei ole luonut yhtään tietoaineistoa." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Tietoaineistojen lukumäärä" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Et ole lisännyt biografiaa." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Ei ryhmiä" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Tällä käyttäjällä ei ole biografiaa." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Käytetyimmät avainsanat" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Tunnisteen nimi" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Tarkoittaa sitä, että vain sinä näet tämän" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Tietoaineistojen lukumäärä" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Jäsenyys alkanut" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API-avain" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Tilastovalikko" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Resetoi salasanasi" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Tietoaineistojen kokonaismäärä" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Salasanan uudelleenasetus" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Teksti" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Pyydä uudelleenasettamista" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Syötä käyttäjänimesi laatikkoon, niin lähetämme sinulle sähköpostin, jossa " +"on linkki uuden salasanan syöttämislomakkeeseen." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Verkkosivusto" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Tapahtumia kohteessa:" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "Verkkosivuston url" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Etsi listalta..." -#: 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/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ä" diff --git a/ckan/i18n/fr/LC_MESSAGES/ckan.mo b/ckan/i18n/fr/LC_MESSAGES/ckan.mo index 9da1bb11328..7fed73946d7 100644 Binary files a/ckan/i18n/fr/LC_MESSAGES/ckan.mo and b/ckan/i18n/fr/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/fr/LC_MESSAGES/ckan.po b/ckan/i18n/fr/LC_MESSAGES/ckan.po index 7eadd100ec5..e3140d8b8de 100644 --- a/ckan/i18n/fr/LC_MESSAGES/ckan.po +++ b/ckan/i18n/fr/LC_MESSAGES/ckan.po @@ -1,4659 +1,4755 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: keronos , 2016\n" +"Last-Translator: Adrià Mercader , 2017\n" "Language-Team: French (https://www.transifex.com/okfn/teams/11162/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Fonction d'autorisation non trouvée : %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Terminé" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administrateur" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "En attente" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Éditeur" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "En cours d'envoi" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Membre" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Erreur" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Vous devez être un administrateur système pour administrer" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Pas encore chargé" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Titre du site" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Ressource introuvable" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Style" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Vous n'êtes pas autorisé à consulter cette page" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Slogan du site" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Télécharger vers le DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Logo de base du site" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Erreur de chargement :" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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 "À propos" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Erreur :" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Texte de la page à propos" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "trace laissée par l'erreur:" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Texte d'Intro" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Statut" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Texte de la page d'accueil" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Dernière modification" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "CSS personnalisés" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Jamais" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "CSS personnalisés insérés dans l'en-tête de la page" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Journal de Chargement" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Page d'accueil" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Détails" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Fin de journal" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Ressource de magasin de données non trouvée" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Impossible de purger le paquet %s car la révision %s associée contient les " -"paquets %s non supprimés" +"Les données étaient invalides (par exemple, une valeur numérique est hors de" +" portée ou a été insérée dans un champ de texte)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Un problème a été rencontré lors de la purge de la révision %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "La ressource \"{0}\" est introuvable" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Purge terminée" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "L'utilisateur {0} n'est pas autorisé à mettre à jour la ressource {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Action non implémentée." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "API de données CKAN" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Vous n'êtes pas autorisé à consulter cette page" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Accédez aux données de la ressource via une API web supportant des requêtes " +"puissantes " -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Accès non autorisé" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

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

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Indisponible" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Points d'accès" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Requête incorrecte" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"L'API pour les données peut être accéder via les actions suivantes de l'API " +"CKAN pour les actions" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "L'action %s est inconnue" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Créer" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Erreur JSON : %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Modifier / Insérer" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Mauvaise requête de données : %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Requête" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Impossible de lister les entités de type %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Requête (via SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Impossible de lire les entités de type %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Interrogation" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Ne peut créer un nouvel élément de ce type : %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Exemple de requête (5 premiers résultats)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Échec d'ajout du paquet à l'index de recherche" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Exemple de requête (résultats contenant 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Ne peut modifier un élément de ce type : %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Exemple de requête (via commande SQL)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Échec de mise à jour de l'index de recherche" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Exemple : Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Ne peut supprimer un élément de ce type : %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"Une requête ajax simple (JSONP) à l'API des données en utilisant jQuery." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Aucune révision spécifiée" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Exemple : Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "La révision %s n'existe pas" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" msgstr "" -"Terme de recherche manquant ('since_id=UUID' ou 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Impossible de lire les paramètres %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Description" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Mauvaise option de recherche : %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Enregistrer" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Enregistrement %s inconnu" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Valeur qjson malformée : %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Les paramètres de la requête doivent être encodés au format JSON." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Groupe introuvable" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Chargement..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organisation non trouvée" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "API de données" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Type de groupe incorrect" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Table" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organisations" - -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Groupes" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Mots-clés" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formats" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licenses" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Jeux de données par page" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Vous n'êtes pas autorisé à effectuer des mises à jour par lots" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Configuration du test" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Vous n'êtes pas autorisé à créer un groupe" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Pertinence" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "L'utilisateur %r n'est pas autorisé à éditer %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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 Croissant" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Erreur d'intégrité" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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 Décroissant" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "L'utilisateur %r n'est pas autorisé à éditer les droits de %s" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Modifié le" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Vous n'êtes pas autorisé à supprimer le groupe %s" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Champ personnalisé croissant" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Cette organisation a été supprimée." +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Champ personnalisé décroissant" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Ce groupe a été supprimé." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Populaire" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s a été effacé. " +#: 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 "Texte Personnalisé" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Vous n'êtes pas autorisé à ajouter un membre au groupe %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "texte personnalisé" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Vous n'êtes pas autorisé à supprimer un membre du groupe %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Code Pays" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Le membre de ce groupe a été supprimé" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "texte de la ressource personnalisé" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Sélectionner deux révisions pour pouvoir les comparer." +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Ceci est une chaîne de texte non traduite" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Historique des révisions du groupe CKAN" +#: 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 "Il n'y a pas de description pour ce groupe" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Modifications récentes du groupe CKAN : " +#: 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} Jeu de données" +msgstr[1] "{num} Jeux de données" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Message de log : " +#: 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 Jeu de données " -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Vous suivez maintenant {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 "" +"L'outil de prévisualisation des données de CKAN possède de nombreuses et " +"puissantes fonctionnalités " -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Vous ne suivez plus {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Abonnés" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Vous n'êtes pas autorisé à visualiser les abonnés à %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ressources" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "" -"Le site est actuellement indisponible. La base de données n'est pas " -"initialisée." +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Image" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" -"Merci de mettre à jour votre profil et d'ajouter votre " -"adresse e-mail. " +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL de l'image" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -"%s utilise votre adresse e-mail si vous avez besoin de réinitialiser votre " -"mot de passe." +"p. ex. http://example.com/image.jpg (si elle est vide utiliser l'URL de la " +"ressource)" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "requête de recherche invalide : {error_message}" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Explorateur de données" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Le paramètre \"{parameter_name}\" n'est pas un entier" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Graphe" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Jeu de données introuvable" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Carte" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Le format de révision %r est invalide" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "erreur lors du chargement de la vue" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" msgstr "" -"La visualisation de jeux de données {package_type} dans le format {format} " -"n'est pas supportée (fichier template {file} introuvable)." -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Lecture du paquet %s non autorisée" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Historique des révisions du jeu de données CKAN" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Changements récents du jeu de données CKAN : " +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Vous n'êtes pas autorisé à enregistrer un jeu de données" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filtres" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Vous n'êtes pas autorisé à modifier cette ressource" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Décalage de la ligne" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Ressource introuvable" +#: 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" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Vous n'êtes pas autorisé à mettre à jour ce jeu de données" +#: 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 rangées" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Le jeu de données {id} n'a pas pu être trouvé." +#: 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" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Vous devez ajouter au moins une ressource de données" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Type de graphes" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Erreur" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Groupe (Axe 1)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Vous n'êtes pas autorisé à créer une ressource" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Série (Axe 2)" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Non autorisé à créer une ressource pour cet ensemble" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Type de champs" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Échec d'ajout du paquet à l'index de recherche." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Champ de latitude" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Échec de mise à jour de l'index de recherche." +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Champ de longitude" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Ce jeu de données a été supprimé." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Champ GeoJSON" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Vous n'êtes pas autorisé à supprimer le paquet %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Zoom automatique aux fonctionnalités" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Cette ressource a été supprimée." +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Marqueurs de regroupement" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Vous n'êtes pas autorisé à supprimer la ressource %s" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Nombre total de jeux de données" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "La ressource ne peut être affichée" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Date" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Contenu de la ressource introuvable" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Total des jeux de données" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Pas de téléchargement disponible" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Révisions de jeux de données par semaine" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Vous n'êtes pas autorisé à lire le jeu de données %s" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Historique des révisions du jeu de données" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Vous n'êtes pas autorisé à lire la ressource %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Nouveaux jeux de données" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Non autorisé à éditer la ressource" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Les jeux de données les mieux notés" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Ne peut être affiché" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Note moyenne" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Type d'affichage introuvable" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Nombre de notes" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Données invalides pour cette visualisation de ressource" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Pas de note" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Vue de ressources non fourni" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Les jeux de données les plus édités" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Aucune prévisualisation n'a été définie." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Jeu de données" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Historique du dépôt CKAN." +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Nombre de modifications" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Modifications récentes du dépôt CKAN." +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Aucun jeu de données modifié" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Jeux de données affectés : %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Groupes les plus gros" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Révision mise à jour" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Groupe" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Autre" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Nombre de jeux de données" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Mot-clé introuvable" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Pas de groupes" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Utilisateur introuvable" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Mots-clés les plus utilisés" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Vous n'êtes pas autorisé à vous inscrire comme utilisateur." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Nom de tag" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Vous n'êtes pas autorisé à créer un utilisateur" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Nombre de jeu de données" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Non autorisé à supprimer l'utilisateur avec l'identifiant \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "Utilisateur ayant créé le plus de jeux de données" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Pas d'utilisateur spécifié" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Utilisateur" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Vous n'êtes pas autorisé à modifier l'utilisateur %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Menu des statistiques" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profil mis à jour" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Nombre total de jeux de données" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Vous n'êtes pas autorisé à créer l'utilisateur %s" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Texte" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Mauvais captcha. Merci d'essayer à nouveau." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Site Web" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL de la page Web" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" msgstr "" -"L'utilisateur \"%s\" est désormais enregistré mais vous êtes toujours " -"authentifié en tant que \"%s\"" +"p. ex. http://example.com (si elle est vide utiliser l'URL de la ressource)" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Vous n'êtes pas autorisé à modifier un utilisateur." +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Votre navigateur n'est pas compatible avec iframes" -#: ckan/controllers/user.py:320 +#: ckan/authz.py:182 #, python-format -msgid "User %s not authorized to edit %s" -msgstr "L'utilisateur %s n'est pas autorisé à modifier %s" +msgid "Authorization function not found: %s" +msgstr "Fonction d'autorisation non trouvée : %s" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Mot de passe entré incorrect" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administrateur" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Ancien mot de passe" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Éditeur" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "mot de passe incorrect" - -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Authentification échouée. Mauvais login ou mot de passe." - -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "" -"Vous n'êtes pas autorisé à demander une réinitialisation de mot de passe." +#: ckan/authz.py:202 +msgid "Member" +msgstr "Membre" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" correspond à plusieurs utilisateurs" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Vous devez être un administrateur système pour administrer" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Pas d'utilisateur correspondant à %s" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Titre du site" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "" -"Merci de consulter votre boîte à lettres électronique pour trouver votre " -"code de réinitialisation." +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Style" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Impossible d'envoyer le lien de réinitialisation : %s" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Slogan du site" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Vous n'êtes pas autorisé à réinitialiser un mot de passe." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Logo de base du site" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Clé de réinitialisation invalide. Merci d'essayer à nouveau." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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 "À propos" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Votre mot de passe a bien été réinitialisé." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Texte de la page à propos" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Votre mot de passe doit comporter au moins 4 caractères." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Texte d'Intro" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Les mots de passe saisis ne correspondent pas." +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Texte de la page d'accueil" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Vous devez fournir un mot de passe" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "CSS personnalisés" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "L'élément suivant est introuvable" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "CSS personnalisés insérés dans l'en-tête de la page" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} introuvable" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Page d'accueil" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Tout" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Impossible de purger le paquet %s car la révision %s associée contient les " +"paquets %s non supprimés" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "valeur manquante" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Un problème a été rencontré lors de la purge de la révision %s: %s" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Redirection vers un site externe non autorisée." +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Purge terminée" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} a ajouté le tag {tag} au jeu de données {dataset}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Action non implémentée." -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} a mis à jour le groupe {group}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Accès non autorisé" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} a mis à jour l'organisation {organization}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Indisponible" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} a mis à jour le jeu de données {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Requête incorrecte" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} a modifié l'extra {extra} du jeu de données {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "L'action %s est inconnue" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" -"{actor} a mis à jour la ressource {resource} du jeu de données {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Erreur JSON : %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} a mis à jour son profil" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Mauvaise requête de données : %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} a supprimé le groupe {group}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Impossible de lister les entités de type %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} a supprimé l'organisation {organization}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Impossible de lire les entités de type %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} a supprimé le jeu de données {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Ne peut créer un nouvel élément de ce type : %s %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} a supprimé l'extra {extra} du jeu de données {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Échec d'ajout du paquet à l'index de recherche" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" -"{actor} a supprimé la ressource {resource} du jeu de données {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Ne peut modifier un élément de ce type : %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} a créé le groupe {group}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Échec de mise à jour de l'index de recherche" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} a créé l'organisation {organization}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Ne peut supprimer un élément de ce type : %s %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} a créé le jeu de données {dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Aucune révision spécifiée" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} a ajouté l'extra {extra} au jeu de données {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "La révision %s n'existe pas" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -"{actor} a ajouté la ressource {resource} au jeu de données {dataset}" +"Terme de recherche manquant ('since_id=UUID' ou 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} s'est authentifié" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Impossible de lire les paramètres %r" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} a supprimé le tag {tag} du jeu de données {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Mauvaise option de recherche : %s" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} suit à présent {dataset}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Enregistrement %s inconnu" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} suit à présent {user}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Valeur qjson malformée : %r" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} suit à présent {group}" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Les paramètres de la requête doivent être encodés au format JSON." -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Afficher" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Groupe introuvable" -#: ckan/lib/email_notifications.py:103 -msgid "{n} new activity from {site_title}" -msgid_plural "{n} new activities from {site_title}" -msgstr[0] "{n} nouvelle activité de {site_title}" -msgstr[1] "{n} nouvelles activités de {site_title}" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organisation non trouvée" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Janvier" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Type de groupe incorrect" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Février" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organisations" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Mars" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Groupes" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Avril" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Mots-clés" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Mai" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formats" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Juin" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licenses" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Juillet" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "L'utilisateur %r n'est pas autorisé à éditer %s" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Août" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Vous n'êtes pas autorisé à effectuer des mises à jour par lots" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Septembre" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Vous n'êtes pas autorisé à créer un groupe" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Octobre" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Erreur d'intégrité" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Novembre" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "L'utilisateur %r n'est pas autorisé à éditer les droits de %s" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Décembre" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Vous n'êtes pas autorisé à supprimer le groupe %s" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "A l'instant" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Cette organisation a été supprimée." -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "Il y a {mins} minute" -msgstr[1] "Il y a {mins} minutes" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Ce groupe a été supprimé." -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "Il y a {hours} heure" -msgstr[1] "Il y a {hours} heures" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s a été effacé. " -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "Il y a {days} jour" -msgstr[1] "Il y a {days} jours" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "Il y a {months} mois" -msgstr[1] "Il y a {months} mois" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Vous n'êtes pas autorisé à ajouter un membre au groupe %s" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "Il y a plus de {years} an" -msgstr[1] "Il y a plus de {years} ans" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Vous n'êtes pas autorisé à supprimer un membre du groupe %s" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Le membre de ce groupe a été supprimé" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{day} {month} {year}" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Sélectionner deux révisions pour pouvoir les comparer." -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} octets" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Historique des révisions du groupe CKAN" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} kibi" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Modifications récentes du groupe CKAN : " -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} mébi" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Message de log : " -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} gibi" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Vous suivez maintenant {0}" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} tébi" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Vous ne suivez plus {0}" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Vous n'êtes pas autorisé à visualiser les abonnés à %s" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Le site est actuellement indisponible. La base de données n'est pas " +"initialisée." -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Merci de mettre à jour votre profil et d'ajouter votre " +"adresse e-mail. " -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s utilise votre adresse e-mail si vous avez besoin de réinitialiser votre " +"mot de passe." -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "requête de recherche invalide : {error_message}" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Le paramètre \"{parameter_name}\" n'est pas un entier" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Jeu de données introuvable" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Le format de révision %r est invalide" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Mettez à jour votre avatar sur gravatar.com" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Lecture du paquet %s non autorisée" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Inconnu(e)" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Historique des révisions du jeu de données CKAN" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Ressource sans nom" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Changements récents du jeu de données CKAN : " -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Nouveau jeu de données créé." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Vous n'êtes pas autorisé à enregistrer un jeu de données" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Ressources mises à jour." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Vous n'êtes pas autorisé à modifier cette ressource" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Paramètres mis à jour." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Vous n'êtes pas autorisé à mettre à jour ce jeu de données" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} vue" -msgstr[1] "{number} vues" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Le jeu de données {id} n'a pas pu être trouvé." -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} vue récente" -msgstr[1] "{number} vues récentes" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Vous devez ajouter au moins une ressource de données" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Vous n'êtes pas autorisé à créer une ressource" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Pas d'adresse e-mail destinataire indiquée !" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Non autorisé à créer une ressource pour cet ensemble" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organisation" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Échec d'ajout du paquet à l'index de recherche." -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "groupe" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Échec de mise à jour de l'index de recherche." -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Valeur manquante" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Ce jeu de données a été supprimé." -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "Le champ saisi %(name)s n'était pas attendu." +msgid "Unauthorized to delete package %s" +msgstr "Vous n'êtes pas autorisé à supprimer le paquet %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Vous devez saisir un nombre entier" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Cette ressource a été supprimée." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Ressources" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Vous n'êtes pas autorisé à supprimer la ressource %s" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Ressource(s) du paquet invalide(s)" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "La ressource ne peut être affichée" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Extras" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Contenu de la ressource introuvable" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "le mot-clé \"%s\" n'existe pas" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Pas de téléchargement disponible" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Utilisateur" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Vous n'êtes pas autorisé à lire le jeu de données %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Jeu de données" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Vous n'êtes pas autorisé à lire la ressource %s" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Groupe" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Non autorisé à éditer la ressource" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "JSON syntaxiquement invalide" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Ne peut être affiché" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "Une référence à une organisation doit être fournie" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Type d'affichage introuvable" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Cette organisation n'existe pas" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Données invalides pour cette visualisation de ressource" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Vous ne pouvez pas ajouter un jeu de données à cette organisation" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Vue de ressources non fourni" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Nombre entier invalide" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Aucune prévisualisation n'a été définie." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Ce doit être un nombre naturel" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Historique du dépôt CKAN." -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Ce doit être un nombre entier positif" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Modifications récentes du dépôt CKAN." -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Format de date incorrect" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Jeux de données affectés : %s.\n" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Aucun lien autorisé dans le log_message." +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Révision mise à jour" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "L'identifiant de l'ensemble de données existe déjà" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Autre" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Ressource" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Mot-clé introuvable" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Ce groupe d'utilisateur ou cet identifiant n'existe pas." +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Vous n'êtes pas autorisé à vous inscrire comme utilisateur." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Type d'activité" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Vous n'êtes pas autorisé à créer un utilisateur" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Les noms doivent être des chaînes de caractères" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Non autorisé à supprimer l'utilisateur avec l'identifiant \"{user_id}\"." -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Ce nom ne peut pas être utilisé" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Pas d'utilisateur spécifié" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Must be at least %s characters long" -msgstr "Doit contenir au moins %s caractères" +msgid "Unauthorized to edit user %s" +msgstr "Vous n'êtes pas autorisé à modifier l'utilisateur %s" + +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Utilisateur introuvable" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profil mis à jour" + +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Le nom doit être d'une longueur inférieur à %i caractères" +msgid "Unauthorized to create user %s" +msgstr "Vous n'êtes pas autorisé à créer l'utilisateur %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Mauvais captcha. Merci d'essayer à nouveau." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Doit contenir uniquement des caractères alphanumériques en minuscules " -"(ascii) et ces symboles : -_" +"L'utilisateur \"%s\" est désormais enregistré mais vous êtes toujours " +"authentifié en tant que \"%s\"" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Cette URL est déjà utilisée." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Vous n'êtes pas autorisé à modifier un utilisateur." -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "La longueur du nom \"%s\" est inférieure au minimum %s" +msgid "User %s not authorized to edit %s" +msgstr "L'utilisateur %s n'est pas autorisé à modifier %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "La longueur du nom \"%s\" est supérieur au maximum %s" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Mot de passe entré incorrect" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "La version ne doit pas être plus longue que %i caractère" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Ancien mot de passe" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Clé double \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "mot de passe incorrect" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Le nom de groupe existe déjà dans la base de données" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Authentification échouée. Mauvais login ou mot de passe." -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "La longueur du mot-clé \"%s\" est inférieure au minimum requis (%s)" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "" +"Vous n'êtes pas autorisé à demander une réinitialisation de mot de passe." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "La longueur du mot-clé \"%s\" est supérieure à la longueur maximale %i" +msgid "\"%s\" matched several users" +msgstr "\"%s\" correspond à plusieurs utilisateurs" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgid "No such user: %s" +msgstr "Pas d'utilisateur correspondant à %s" + +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." msgstr "" -"Le mot-clé \"%s\" ne peut contenir que des lettres minuscules, des chiffres " -"ou les symboles : -_." +"Merci de consulter votre boîte à lettres électronique pour trouver votre " +"code de réinitialisation." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Le mot-clé \"%s\" ne peut contenir de lettres majuscules" +msgid "Could not send reset link: %s" +msgstr "Impossible d'envoyer le lien de réinitialisation : %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Les noms d'utilisateurs doivent être des chaînes de caractères" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Vous n'êtes pas autorisé à réinitialiser un mot de passe." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Ce nom d'utilisateur n'est pas disponible." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Clé de réinitialisation invalide. Merci d'essayer à nouveau." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Merci d'entrer les 2 mots de passe" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Votre mot de passe a bien été réinitialisé." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Les mots de passe doivent être des chaînes de caractères" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Votre mot de passe doit comporter au moins 4 caractères." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Votre mot de passe doit comporter au moins 4 caractères" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Les mots de passe saisis ne correspondent pas." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Les mots de passe saisis ne correspondent pas" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Vous devez fournir un mot de passe" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "" -"La modification n'est pas autorisée car elle ressemble à du spam. Merci " -"d'éviter les liens dans votre description." +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "L'élément suivant est introuvable" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Le titre doit comporter au moins %s caractères" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} introuvable" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Ce nom de vocabulaire est déjà utilisé." +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Tout" -#: ckan/logic/validators.py:633 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" -"On ne peut pas changer le valeur de la clé de %s à %s. Cette clé est en " -"lecture seulement " +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "valeur manquante" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Ce vocabulaire de mots-clés n'a pas été trouvé." +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Redirection vers un site externe non autorisée." -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Le mot-clé %s n'appartient pas au vocabulaire %s" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} a ajouté le tag {tag} au jeu de données {dataset}" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Aucun nom pour le mot-clé" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} a mis à jour le groupe {group}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Le mot-clé %s appartient déjà au vocabulaire %s" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} a mis à jour l'organisation {organization}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Merci de fournir une URL valide" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} a mis à jour le jeu de données {dataset}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "Ce rôle n'existe pas" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} a modifié l'extra {extra} du jeu de données {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" msgstr "" -"Les jeux de données n'appartenant pas à une organisation ne peuvent pas être" -" privés." - -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Ce n'est pas une liste" +"{actor} a mis à jour la ressource {resource} du jeu de données {dataset}" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Ce n'est pas une chaîne de caractères" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} a mis à jour son profil" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Ce parent créerait une boucle dans la hiérarchie" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} a supprimé le groupe {group}" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" -"Les valeurs \"filter_fields\" et \"filter_values\" doivent être de même " -"longueur" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} a supprimé l'organisation {organization}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" est nécessaire lorsque \"filter_values\" est rempli" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} a supprimé le jeu de données {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" est nécessaire lorsque \"filter_fields\" est rempli" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} a supprimé l'extra {extra} du jeu de données {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Il y a un champ de schéma avec le même nom" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" +"{actor} a supprimé la ressource {resource} du jeu de données {dataset}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "API REST : création de l'objet %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} a créé le groupe {group}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "API REST : création d'une relation de paquet : %s %s %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} a créé l'organisation {organization}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "API REST : création de l'objet membre %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} a créé le jeu de données {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Tentative de création d'une organisation en tant que groupe" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} a ajouté l'extra {extra} au jeu de données {dataset}" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" msgstr "" -"Vous devez fournir un identifiant ou un titre pour le jeu de données " -"(paramètre \"jeu de données\")." +"{actor} a ajouté la ressource {resource} au jeu de données {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Veuillez proposer une note (paramètre \"note\")." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} s'est authentifié" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "La note doit être un nombre entier." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} a supprimé le tag {tag} du jeu de données {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "La note doit être comprise entre %i et %i." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} suit à présent {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" -"Une erreur est survenue lors de l'envoi du message d'invitation, " -"l'utilisateur n'a pas été créé: {0}" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} suit à présent {user}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Vous devez vous identifier pour suivre des utilisateurs" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} suit à présent {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Il n'est pas possible de s'abonner à soi-même" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Afficher" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Vous suivez déjà {0}" +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} nouvelle activité de {site_title}" +msgstr[1] "{n} nouvelles activités de {site_title}" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Vous devez vous identifier pour suivre un jeu de données." +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Janvier" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "L'utilisateur {username} n'existe pas." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Février" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Vous devez vous identifier pour suivre un groupe." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Mars" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr " Supprimer l'utilisateur: {0}" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Avril" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "API REST : suppression du jeu de données : %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Mai" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "API REST : suppression de %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Juin" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "API REST : Suppression du Membre: %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Juillet" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "cet identifiant n'est pas dans la donnée" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Août" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Impossible de trouver le vocabulaire \"%s\"" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Septembre" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Impossible de trouver le tag \"%s\"" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Octobre" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Vous devez vous identifier pour cesser de suivre quelque chose." +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Novembre" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Vous ne suivez pas {0}." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Décembre" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Ressource introuvable." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "A l'instant" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "" -"Ne sélectionnez pas cette option si vous utilisez le paramètre \"requête\"" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "Il y a {mins} minute" +msgstr[1] "Il y a {mins} minutes" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Paire(s) de : obligatoire" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "Il y a {hours} heure" +msgstr[1] "Il y a {hours} heures" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Le champ \"{field}\" n'est pas reconnu dans resource_search." +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "Il y a {days} jour" +msgstr[1] "Il y a {days} jours" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Jeu de données introuvable." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "Il y a {months} mois" +msgstr[1] "Il y a {months} mois" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "API REST : mise à jour de l'objet %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "Il y a plus de {years} an" +msgstr[1] "Il y a plus de {years} ans" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "API REST : mise à jour de la relation de paquet : %s %s %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "Le statut de la tâche est introuvable." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{day} {month} {year}" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organisation introuvable" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} octets" -#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 -#, python-format -msgid "User %s not authorized to create packages" -msgstr "L'utilisateur %s n'est pas autorisé à enregistrer des jeux de données" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} kibi" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "L'utilisateur %s n'est pas autorisé à modifier ces groupes" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} mébi" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" -"L'utilisateur %s n'est pas autorisé à ajouter un jeu de données à cette " -"organisation" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} gibi" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" -"Aucun identifiant de jeu de données fourni, impossible de vérifier " -"l'authentification." +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} tébi" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "" -"Pas de jeu de données trouvé pour cette ressource, impossible de vérifier " -"l'authentification." +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" -"Utilisateur %s non autorisé à créer des ressources sur le jeu de données %s" +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "L'utilisateur %s n'est pas autorisé à modifier ces jeux de données" +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "L'utilisateur %s n'est pas autorisé à créer ces groupes" +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "L'utilisateur %s n'est pas autorisé à créé des organisations" +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" -msgstr "" -"L'utilisateur {user} n'est pas autorisé à créer des utilisateurs via l'API" +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Non autorisé à créer des utilisateurs" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Groupe introuvable." +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "" -"Une clé d'API valide est nécessaire pour enregistrer un jeu de données" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Une clé d'API valide est nécessaire pour créer un groupe" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Mettez à jour votre avatar sur gravatar.com" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "L'utilisateur %s n'est pas autorisé à ajouter des membres" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Inconnu(e)" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "L'utilisateur %s n'est pas autorisé à modifier le groupe %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Ressource sans nom" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "L'utilisateur %s n'est pas autorisé à supprimer la ressource %s" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Nouveau jeu de données créé." -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" -"Visualisation de ressource introuvable, impossible de vérifier " -"l'authentificaiton" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Ressources mises à jour." -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "L'utilisateur %s n'est pas autorisé à supprimer la relation %s" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Paramètres mis à jour." -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "L'utilisateur %s n'est pas autorisé à supprimer des groupes" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} vue" +msgstr[1] "{number} vues" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "L'utilisateur %s n'est pas autorisé à supprimer le groupe %s" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} vue récente" +msgstr[1] "{number} vues récentes" -#: ckan/logic/auth/delete.py:103 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organizations" -msgstr "L'utilisateur %s n'est pas autorisé à supprimer les organisations" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "L'utilisateur %s n'est pas autorisé à supprimer l'organisation %s" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Pas d'adresse e-mail destinataire indiquée !" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "L'utilisateur %s n'est pas autorisé à supprimer task_status" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organisation" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Non autorisé" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "groupe" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "L'utilisateur %s n'est pas autorisé à lire ces jeux de données" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Valeur manquante" -#: ckan/logic/auth/get.py:130 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read package %s" -msgstr "L'utilisateur %s n'est pas autorisé à lire le jeu de données %s" +msgid "The input field %(name)s was not expected." +msgstr "Le champ saisi %(name)s n'était pas attendu." -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "L'utilisateur %s n'est pas autorisé à lire la ressource %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Vous devez saisir un nombre entier" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "Utilisateur %s non autorisé à lire le groupe %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "Vous devez vous identifier pour accéder à votre tableau de bord" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Ressource(s) du paquet invalide(s)" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "L'utilisateur %s n'est pas autorisé à modifier le jeu de données %s" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Extras" -#: ckan/logic/auth/update.py:71 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "L'utilisateur %s n'est pas autorisé à modifier la ressource %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "le mot-clé \"%s\" n'existe pas" -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "" -"L'utilisateur %s n'est pas autorisé à modifier l'état du jeu de données %s" - -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "L'utilisateur %s n'est pas autorisé à modifier l'organisation %s" - -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "L'utilisateur %s n'est pas autorisé à modifier l'état du groupe %s" - -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "" -"L'utilisateur %s n'est pas autorisé à modifier les permissions du groupe %s" - -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Vous devez vous identifier pour modifier l'utilisateur" - -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "L'utilisateur %s n'est pas autorisé à modifier l'utilisateur %s" - -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "Utilisateur {0} non autorisé à mettre à jour l'utilisateur {1}" - -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "L'utilisateur %s n'est pas autorisé à modifier l'état de révision" - -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "" -"L'utilisateur %s n'est pas autorisé à mettre à jour la table task_status" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "JSON syntaxiquement invalide" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "" -"L'utilisateur %s n'est pas autorisé à mettre à jour la table " -"term_translation" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "Une référence à une organisation doit être fournie" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Une clé d'API valide est nécessaire pour modifier un jeu de données" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Cette organisation n'existe pas" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Une clé d'API valide est nécessaire pour modifier un groupe" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Vous ne pouvez pas ajouter un jeu de données à cette organisation" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Licence non spécifiée" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Nombre entier invalide" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Ce doit être un nombre naturel" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Ce doit être un nombre entier positif" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Format de date incorrect" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Aucun lien autorisé dans le log_message." -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "L'identifiant de l'ensemble de données existe déjà" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Ressource" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Ce groupe d'utilisateur ou cet identifiant n'existe pas." -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Autre (Ouvert)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Type d'activité" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Autre (Domaine Public)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Les noms doivent être des chaînes de caractères" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Autre (Attribution)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Ce nom ne peut pas être utilisé" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Doit contenir au moins %s caractères" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (n'importe laquelle)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Le nom doit être d'une longueur inférieur à %i caractères" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Autre (Non-Commercial)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Doit contenir uniquement des caractères alphanumériques en minuscules " +"(ascii) et ces symboles : -_" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Autre (Fermé)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Cette URL est déjà utilisée." -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "dépend de %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "La longueur du nom \"%s\" est inférieure au minimum %s" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "est une dépendance de %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "La longueur du nom \"%s\" est supérieur au maximum %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "dérive de %s" +msgid "Version must be a maximum of %i characters long" +msgstr "La version ne doit pas être plus longue que %i caractère" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "a pour dérivé %s" +msgid "Duplicate key \"%s\"" +msgstr "Clé double \"%s\"" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "est lié à %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Le nom de groupe existe déjà dans la base de données" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "est référencé par %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "La longueur du mot-clé \"%s\" est inférieure au minimum requis (%s)" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "est un enfant de %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "La longueur du mot-clé \"%s\" est supérieure à la longueur maximale %i" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "est un parent de %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Le mot-clé \"%s\" ne peut contenir que des lettres minuscules, des chiffres " +"ou les symboles : -_." -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "a des liens de fraternité avec %s" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Chargement..." +msgid "Tag \"%s\" must not be uppercase" +msgstr "Le mot-clé \"%s\" ne peut contenir de lettres majuscules" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Il n'y a pas de données API à télécharger pour cette ressource" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Les noms d'utilisateurs doivent être des chaînes de caractères" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Le chargement de l'information de l'API de données a échoué" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Ce nom d'utilisateur n'est pas disponible." -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Aucune correspondance trouvée" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Merci d'entrer les 2 mots de passe" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Commencez la saisie ..." +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Les mots de passe doivent être des chaînes de caractères" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "L'entrée est trop courte ; elle doit avoir au moins un caractère" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Votre mot de passe doit comporter au moins 4 caractères" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Des modifications de ce formulaire n'ont pas été enregistrées" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Les mots de passe saisis ne correspondent pas" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Veuillez confirmer l'action" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"La modification n'est pas autorisée car elle ressemble à du spam. Merci " +"d'éviter les liens dans votre description." -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Etes-vous sûr de vouloir exécuter cette commande ?" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Le titre doit comporter au moins %s caractères" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Confirmation" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Ce nom de vocabulaire est déjà utilisé." -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Annuler" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"On ne peut pas changer le valeur de la clé de %s à %s. Cette clé est en " +"lecture seulement " -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "S'abonner" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Ce vocabulaire de mots-clés n'a pas été trouvé." -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Se désabonner" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Le mot-clé %s n'appartient pas au vocabulaire %s" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Envoi" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Aucun nom pour le mot-clé" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Lien" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Le mot-clé %s appartient déjà au vocabulaire %s" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Supprimer" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Merci de fournir une URL valide" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Image" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "Ce rôle n'existe pas" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "" +"Les jeux de données n'appartenant pas à une organisation ne peuvent pas être" +" privés." -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Fichier" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Ce n'est pas une liste" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Télécharger un fichier sur votre ordinateur" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Ce n'est pas une chaîne de caractères" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" -"Lien vers une URL sur internet (vous pouvez aussi donner un lien vers une " -"API)" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Ce parent créerait une boucle dans la hiérarchie" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Réordonner les ressources" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" +"Les valeurs \"filter_fields\" et \"filter_values\" doivent être de même " +"longueur" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Sauvegarder la commande" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" est nécessaire lorsque \"filter_values\" est rempli" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Sauvegarde en cours..." +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" est nécessaire lorsque \"filter_fields\" est rempli" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Envoyer un fichier depuis votre ordinateur" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Il y a un champ de schéma avec le même nom" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Erreur" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Ressource téléchargée" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "API REST : création de l'objet %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Échec du transfert de fichier " +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "API REST : création d'une relation de paquet : %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Échec de l'authentification du transfert" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "API REST : création de l'objet membre %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Impossible d'accéder aux données du fichier déposé" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Tentative de création d'une organisation en tant que groupe" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -"Vous êtes en train de transférer un fichier. Êtes-vous sûr de vouloir " -"naviguer ailleurs et interrompre ce transfert ?" +"Vous devez fournir un identifiant ou un titre pour le jeu de données " +"(paramètre \"jeu de données\")." -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Réordonner la visualisation de ressource" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Veuillez proposer une note (paramètre \"note\")." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Éditer" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "La note doit être un nombre entier." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Montrer plus" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "La note doit être comprise entre %i et %i." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Cacher" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Une erreur est survenue lors de l'envoi du message d'invitation, " +"l'utilisateur n'a pas été créé: {0}" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Erreur %(error_code)s" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Vous devez vous identifier pour suivre des utilisateurs" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "À propos de {0}" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Il n'est pas possible de s'abonner à soi-même" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "API CKAN" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Vous suivez déjà {0}" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "Association CKAN" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Vous devez vous identifier pour suivre un jeu de données." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Généré par CKAN" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "L'utilisateur {username} n'existe pas." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Réglages sysadmin" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Vous devez vous identifier pour suivre un groupe." -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Voir le profil" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr " Supprimer l'utilisateur: {0}" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:92 #, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "Tableau de bord (%(num)d nouvel élément)" -msgstr[1] "Tableau de bord (%(num)d nouveaux éléments)" +msgid "REST API: Delete Package: %s" +msgstr "API REST : suppression du jeu de données : %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Tableau de bord" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "API REST : suppression de %s" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Modifier les paramètres" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "API REST : Suppression du Membre: %s" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Paramètres" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "cet identifiant n'est pas dans la donnée" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Déconnexion" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Impossible de trouver le vocabulaire \"%s\"" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Connexion" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Impossible de trouver le tag \"%s\"" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "S'inscrire" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Vous devez vous identifier pour cesser de suivre quelque chose." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Jeux de données" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Vous ne suivez pas {0}." -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Rechercher des jeux de données" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Ressource introuvable." -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Rechercher" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "" +"Ne sélectionnez pas cette option si vous utilisez le paramètre \"requête\"" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Passer directement au contenu" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Paire(s) de : obligatoire" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Charger moins" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Le champ \"{field}\" n'est pas reconnu dans resource_search." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Charger plus" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Jeu de données introuvable." -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "Ce flux ne contient pas d'activité" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "API REST : mise à jour de l'objet %s" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administration" - -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Administrateurs systèmes" - -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Configuration" - -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Poubelle" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "API REST : mise à jour de la relation de paquet : %s %s %s" -#: ckan/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "Etes-vous sur de vouloir réinitialiser la configuration ?" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "Le statut de la tâche est introuvable." -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Réinitialisation" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organisation introuvable" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Mettre à jour la configuration" +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "L'utilisateur %s n'est pas autorisé à enregistrer des jeux de données" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN options de configuration" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "L'utilisateur %s n'est pas autorisé à modifier ces groupes" -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:38 #, 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.

" +msgid "User %s not authorized to add dataset to this organization" msgstr "" -"

Titre du Site : C’est le titre de cette instance de " -"CKAN. On le retrouve dans divers endroits d’un bout à l’autre de " -"CKAN.

Style : Choisissez parmi une liste de " -"variations de la principale palette de couleurs afin de mettre en place " -"très rapidement un thème personnalisé.

Logo clé du Site " -": C’est le logo qui apparaît dans l’en-tête de tous les gabarits " -"des instances de CKAN.

À propos : Ce texte " -"apparaîtra dans la page \"à propos\"de ces " -"instances de CKAN .

Texte d’intro : Ce texte " -"apparaîtra dans la page d’accueil de ces " -"instances de CKAN pour accueillir les visiteurs.

CSS " -"Personnalisée : C’est un bloc de CSS qui apparaît dans l'élément " -"<head>de toutes les pages. Si vous voulez personnaliser " -"encore plus les gabarits, nous vous conseillons de lire la documentation.

Page " -"d'accueil: C'est pour choisir une mise en page prédéfinie pour les " -"modules qui apparaissent sur votre page d'accueil.

" +"L'utilisateur %s n'est pas autorisé à ajouter un jeu de données à cette " +"organisation" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Confirmez la demande de réinitialisation" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" +"Aucun identifiant de jeu de données fourni, impossible de vérifier " +"l'authentification." -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Administrer CKAN" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Pas de jeu de données trouvé pour cette ressource, impossible de vérifier " +"l'authentification." -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:76 #, 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

" +msgid "User %s not authorized to create resources on dataset %s" msgstr "" -"

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

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

" +"Utilisateur %s non autorisé à créer des ressources sur le jeu de données %s" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Purger" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "L'utilisateur %s n'est pas autorisé à modifier ces jeux de données" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "Purger les jeux de données supprimés définitivement" +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "L'utilisateur %s n'est pas autorisé à créer ces groupes" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "API de données CKAN" +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "L'utilisateur %s n'est pas autorisé à créé des organisations" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" msgstr "" -"Accédez aux données de la ressource via une API web supportant des requêtes " -"puissantes " +"L'utilisateur {user} n'est pas autorisé à créer des utilisateurs via l'API" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

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

" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Non autorisé à créer des utilisateurs" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Points d'accès" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Groupe introuvable." -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" msgstr "" -"L'API pour les données peut être accéder via les actions suivantes de l'API " -"CKAN pour les actions" +"Une clé d'API valide est nécessaire pour enregistrer un jeu de données" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Créer" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Une clé d'API valide est nécessaire pour créer un groupe" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Modifier / Insérer" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "L'utilisateur %s n'est pas autorisé à ajouter des membres" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Requête" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "L'utilisateur %s n'est pas autorisé à modifier le groupe %s" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Requête (via SQL)" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "L'utilisateur %s n'est pas autorisé à supprimer la ressource %s" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Interrogation" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "" +"Visualisation de ressource introuvable, impossible de vérifier " +"l'authentificaiton" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Exemple de requête (5 premiers résultats)" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "L'utilisateur %s n'est pas autorisé à supprimer la relation %s" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Exemple de requête (résultats contenant 'jones')" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "L'utilisateur %s n'est pas autorisé à supprimer des groupes" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Exemple de requête (via commande SQL)" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "L'utilisateur %s n'est pas autorisé à supprimer le groupe %s" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Exemple : Javascript" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "L'utilisateur %s n'est pas autorisé à supprimer les organisations" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" -"Une requête ajax simple (JSONP) à l'API des données en utilisant jQuery." +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "L'utilisateur %s n'est pas autorisé à supprimer l'organisation %s" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Exemple : Python" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "L'utilisateur %s n'est pas autorisé à supprimer task_status" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "L'aperçu de cette ressource n'est pas disponible pour le moment." +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Non autorisé" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Cliquez ici pour plus d'information." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "L'utilisateur %s n'est pas autorisé à lire ces jeux de données" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Télécharger la ressource" +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "L'utilisateur %s n'est pas autorisé à lire le jeu de données %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Votre navigateur n'est pas compatible avec iframes" +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "L'utilisateur %s n'est pas autorisé à lire la ressource %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Pas d'aperçu disponible." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Utilisateur %s non autorisé à lire le groupe %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Plus de détails..." +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Vous devez vous identifier pour accéder à votre tableau de bord" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:39 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Aucun gestionnaire de défini pour le type de données : %(type)s." +msgid "User %s not authorized to edit package %s" +msgstr "L'utilisateur %s n'est pas autorisé à modifier le jeu de données %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Standard" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "L'utilisateur %s n'est pas autorisé à modifier la ressource %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Entrée standard" +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" +"L'utilisateur %s n'est pas autorisé à modifier l'état du jeu de données %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Medium" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "L'utilisateur %s n'est pas autorisé à modifier l'organisation %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Entrée ayant la largeur du medium" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "L'utilisateur %s n'est pas autorisé à modifier l'état du groupe %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Complet" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" +"L'utilisateur %s n'est pas autorisé à modifier les permissions du groupe %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Entrée sur toute la largeur" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Vous devez vous identifier pour modifier l'utilisateur" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Grand" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "L'utilisateur %s n'est pas autorisé à modifier l'utilisateur %s" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Grande entrée" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "Utilisateur {0} non autorisé à mettre à jour l'utilisateur {1}" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Ajouter un préfixe" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "L'utilisateur %s n'est pas autorisé à modifier l'état de révision" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Saisie du préfixe" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" +"L'utilisateur %s n'est pas autorisé à mettre à jour la table task_status" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Champ personnalisé (vide)" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"L'utilisateur %s n'est pas autorisé à mettre à jour la table " +"term_translation" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Champ personnalisé" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Une clé d'API valide est nécessaire pour modifier un jeu de données" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Une clé d'API valide est nécessaire pour modifier un groupe" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Zone textuelle" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Licence non spécifiée" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Sélectionner" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Flux d'Activité" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: 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 "Administrateurs" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Ajouter un groupe" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Formulaire de groupe" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: 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 "Confirmer la suppression" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "Êtes-vous sûr de vouloir supprimer le groupe - {name}?" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: 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 "Êtes-vous sûr de vouloir supprimer le membre - {name}?" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Autre (Ouvert)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Éditer" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Autre (Domaine Public)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Modifier le Groupe" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Autre (Attribution)" -#: 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/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Abonnés" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (n'importe laquelle)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Historique" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Autre (Non-Commercial)" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Ajouter un groupe" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Autre (Fermé)" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Rechercher les groupes..." +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "dépend de %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Nom Croissant" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "est une dépendance de %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Nom Décroissant" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "dérive de %s" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "Il n'y a actuellement aucun groupe pour ce site" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "a pour dérivé %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Et si vous en créiez un ?" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "est lié à %s" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "Retour à tous les membres" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "est référencé par %s" -#: 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 "Modifier le membre" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "est un enfant de %s" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Ajouter le membre" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "est un parent de %s" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Utilisateur existant" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "a des liens de fraternité avec %s" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Si vous désirez ajouter un utilisateur existant, recherchez son nom ci-" -"dessous" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Il n'y a pas de données API à télécharger pour cette ressource" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "ou" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Le chargement de l'information de l'API de données a échoué" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Nouvel Utilisateur" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Commencez la saisie ..." -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Si vous désirez inviter un nouvel utilisateur, entrez son adresse email." +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Aucune correspondance trouvée" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr " Rôle" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Etes-vous sûr de vouloir supprimer ce membre?" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Des modifications de ce formulaire n'ont pas été enregistrées" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Supprimer" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Veuillez confirmer l'action" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Enregistrer" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Etes-vous sûr de vouloir exécuter cette commande ?" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Que sont les rôles ?" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Confirmation" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

Administrateur: Peut éditer les informations de groupe, " -"ainsi que gérer les membres d'organisations.

Membre:" -" Peut ajouter/supprimer des jeux de données dans les groupes

" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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 "Annuler" -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" -msgstr "Créer un Groupe" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Se désabonner" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Mise à jour du Groupe" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "S'abonner" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Créer le Groupe" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Lien" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Pertinence" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" +"Lien vers une URL sur internet (vous pouvez aussi donner un lien vers une " +"API)" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Modifié le" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Envoi" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Populaire" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Supprimer" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Rechercher les jeux des données..." +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Télécharger un fichier sur votre ordinateur" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Jeux de données du groupe : {group}" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Historique récent des révisions" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Fichier" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Titre" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Sauvegarder la commande" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Mon Groupe" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Sauvegarde en cours..." -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "mon-groupe" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Envoyer un fichier depuis votre ordinateur" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Description" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Erreur" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Un peu d'information au sujet de mon groupe..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Échec du transfert de fichier " -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Etes-vous sûr de vouloir supprimer ce Groupe?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Échec de l'authentification du transfert" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Sauvegarder le Groupe" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Ressource téléchargée" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} Jeu de données" -msgstr[1] "{num} Jeux de données" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Impossible d'accéder aux données du fichier déposé" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Jeu de données " +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Vous êtes en train de transférer un fichier. Êtes-vous sûr de vouloir " +"naviguer ailleurs et interrompre ce transfert ?" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Afficher {name}" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Ajouter un filtre" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Supprimer le jeu de données de ce groupe" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Que sont les groupes ?" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Éditer" -#: ckan/templates/group/snippets/helper.html:8 +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Montrer plus" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Cacher" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Erreur %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "À propos de {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API CKAN" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "Association CKAN" + +#: ckan/templates/footer.html:24 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. " +"Powered by CKAN" msgstr "" -"Vous pouvez utiliser les groupes CKAN pour créer et gérer des collections de" -" jeux de données. Cela peut être pour cataloguer des jeux de données pour un" -" projet ou une équipe en particulier, ou autour d'un thème spécifique, ou " -"comme moyen très simple d'aider à parcourir et découvrir vos jeux de données" -" publiés." +"Généré par CKAN" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Comparer" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Réglages sysadmin" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Supprimé" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Voir le profil" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "lire plus" +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Tableau de bord (%(num)d nouvel élément)" +msgstr[1] "Tableau de bord (%(num)d nouveaux éléments)" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Révision" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Tableau de bord" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Horodatage" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Modifier les paramètres" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Producteur" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Paramètres" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Message de log" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Déconnexion" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Bienvenue" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Connexion" -#: 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 est la plateforme portail leader mondial en termes de données " -"accessibles en code source ouvert.

CKAN est un logiciel disponible " -"clés en main qui permet l’accès et l’utilisation de données - en " -"fournissant les outils pour rationnaliser la publication, le partage , la " -"recherche et l’utilisation de données (y compris le stockage des données et" -" la mise à disposition de solides données API). CKAN est destiné aux " -"éditeurs (gouvernements régionaux et nationaux, sociétés et organisations)" -" qui veulent mettre à disposition leurs données .

CKAN est utilisé" -" par des gouvernements et des groupes d’utilisateurs dans le monde entier " -"et permet le fonctionnement d’une variété de portails officiels et " -"communautaires , notamment des portails pour des gouvernements locaux, " -"nationaux et internationaux, comme data.gov.uk au Royaume Uni, publicdata.eu pour la Communauté " -"Européenne, dados.gov.br au Brésil, " -"des portails gouvernementaux hollandais et aux Pays Bas, ainsi que des " -"sites municipaux aux Etats Unis, Royaume Uni, Argentine, et Finlande entre" -" autres.

CKAN: http://ckan.org/
" -"Visitez CKAN: http://ckan.org/tour/ Présentation des Fonctionnalités: http://ckan.org/features/

" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "S'inscrire" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Bienvenue sur CKAN" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Jeux de données" -#: 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 "" -"Ceci est un paragraphe d'introduction à propos de CKAN ou du site en " -"général. Nous n'avons pas encore de rédactionnel à mettre ici, mais nous en " -"aurons bientôt" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Rechercher des jeux de données" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Ceci est une section sélectionnée" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Rechercher" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "Par exemple environnement" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Passer directement au contenu" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Données de recherche" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Charger moins" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Mots-clés populaires" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Charger plus" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} statistiques" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Ce flux ne contient pas d'activité" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "jeu de données" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administration" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "jeux de données" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Administrateurs systèmes" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organisations" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Configuration" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "groupes" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Poubelle" + +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Etes-vous sur de vouloir réinitialiser la configuration ?" + +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Réinitialisation" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Mettre à jour la configuration" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN options de configuration" + +#: ckan/templates/admin/config.html:33 +#, 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 "" +"

Titre du Site : C’est le titre de cette instance de " +"CKAN. On le retrouve dans divers endroits d’un bout à l’autre de " +"CKAN.

Style : Choisissez parmi une liste de " +"variations de la principale palette de couleurs afin de mettre en place " +"très rapidement un thème personnalisé.

Logo clé du Site " +": C’est le logo qui apparaît dans l’en-tête de tous les gabarits " +"des instances de CKAN.

À propos : Ce texte " +"apparaîtra dans la page \"à propos\"de ces " +"instances de CKAN .

Texte d’intro : Ce texte " +"apparaîtra dans la page d’accueil de ces " +"instances de CKAN pour accueillir les visiteurs.

CSS " +"Personnalisée : C’est un bloc de CSS qui apparaît dans l'élément " +"<head>de toutes les pages. Si vous voulez personnaliser " +"encore plus les gabarits, nous vous conseillons de lire la documentation.

Page " +"d'accueil: C'est pour choisir une mise en page prédéfinie pour les " +"modules qui apparaissent sur votre page d'accueil.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Confirmez la demande de réinitialisation" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrer CKAN" + +#: ckan/templates/admin/index.html:20 #, python-format msgid "" -"You can use Markdown formatting here" +"

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 "" -"Vous pouvez utiliser le langage Markdown ici" +"

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

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

" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Ce champ est requis" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Purger" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Personnalisé" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "Purger les jeux de données supprimés définitivement" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Le formulaire contient des entrées invalides :" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "L'aperçu de cette ressource n'est pas disponible pour le moment." -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Champ requis" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Cliquez ici pour plus d'information." -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://exemple.com/mon-image.jpg" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Télécharger la ressource" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL de l'image" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Pas d'aperçu disponible." -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Annuler le transfert" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Plus de détails..." -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Formulaire d'organisation" +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Aucun gestionnaire de défini pour le type de données : %(type)s." -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Modifier les jeux de données" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Ajouter un jeu de données" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Entrée standard" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "trouvé pour \"{query}\"" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medium" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Désolé, aucun jeu de données trouvé pour \"{query}\"" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Entrée ayant la largeur du medium" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Rendre public" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Complet" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Rendre privé" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Entrée sur toute la largeur" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Brouillon" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Grand" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Privée" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Grande entrée" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Cette organisation n'a pas de jeu de données associé" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Ajouter un préfixe" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "Etes-vous sûr de vouloir supprimer l'organisation - {name}?" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Saisie du préfixe" -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" -msgstr "Modifier l'Organisation" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Champ personnalisé (vide)" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Ajouter une organisation" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Champ personnalisé" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "Rechercher les organisations..." +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "Il n'y a actuellement aucune organisation pour ce site" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Zone textuelle" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nom d'utilisateur" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Sélectionner" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "Adresse e-mail" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Flux d'Activité" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "Mettre à jour le membre" +#: 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 "Administrateurs" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

Admin: Peut ajouter/modifier et supprimer les jeux de " -"données, ainsi qu’ administrer les membres d’organisations.

" -"

Editeur: Peut ajouter et modifier les jeux de données, " -"mais ne peut pas administrer les membres.

Membre: " -"Peut voir les jeux de données spécifiques à l’organisation, mais ne peut pas" -" ajouter de nouveaux jeux de données.

" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Ajouter un groupe" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Créer une Organisation" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Formulaire de groupe" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Mise à jour de l'Organisation" +#: 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 "Confirmer la suppression" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Créer une Orgaisation" +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Êtes-vous sûr de vouloir supprimer le groupe - {name}?" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Ajouter un jeu de données" +#: 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 "Êtes-vous sûr de vouloir supprimer le membre - {name}?" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Jeux de données de l'organisation : {group}" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Éditer" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Que sont les organisations ?" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Modifier le Groupe" -#: 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 organisations agissent comme des responsables de l'édition " -"d'ensembles de données (par exemple, le ministère de la Santé). Cela " -"signifie que les ensembles de données appartiennent et peuvent être publiées" -" par une organisation à la place d'un utilisateur individuel.

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

" +#: ckan/templates/group/edit_base.html:23 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/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 Organisations CKAN sont utilisées pour créer, gérer et publier des " -"collections de jeux de données. Les utilisateurs peuvent avoir différents " -"rôles au sein d'une Organisation, en fonction de leur niveau d'autorisation " -"pour créer, éditer et publier." +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Historique" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Mon Organisation" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Ajouter un groupe" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "mon-organisation" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Rechercher les groupes..." -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Un peu d'information au sujet de mon organisation..." +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Il n'y a actuellement aucun groupe pour ce site" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" -"Êtes vous sûr de vouloir supprimer cette organisation ? Cela supprimera " -"tous les jeux de données publics et privés appartenant à cette organisation." +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Et si vous en créiez un ?" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Sauvegarder l'Organisation" +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Retour à tous les membres" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Voir {organization_name}" +#: 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 "Modifier le membre" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Créer le jeu de données" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Ajouter le membre" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Que sont les jeux de données ?" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Utilisateur existant" -#: 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. " +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"Un jeu de données CKAN est une collection de ressources (telles que des " -"fichiers), ainsi qu'une description et d'autres information, avec une URL " -"fixe. Les jeux de données sont ce que l'utilisateur voit lorsqu'il effectue " -"une recherche de données." +"Si vous désirez ajouter un utilisateur existant, recherchez son nom ci-" +"dessous" -#: ckan/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "Etes-vous sûr de vouloir supprimer le jeu de données - {name}?" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "ou" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "Etes-vous sûr de vouloir supprimer la ressource - {name}?" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Nouvel Utilisateur" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Voir le jeu de données" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Si vous désirez inviter un nouvel utilisateur, entrez son adresse email." -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Editer les métadonnées" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr " Rôle" -#: 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 "Éditer la vue" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Etes-vous sûr de vouloir supprimer ce membre?" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Aperçu" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Supprimer" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Mise à jour" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Que sont les rôles ?" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Associer ce groupe à un jeu de données" +#: ckan/templates/group/member_new.html:80 +msgid "" +"

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

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

" +msgstr "" +"

Administrateur: Peut éditer les informations de groupe, " +"ainsi que gérer les membres d'organisations.

Membre:" +" Peut ajouter/supprimer des jeux de données dans les groupes

" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Ajouter à un groupe" +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Créer un Groupe" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "Il n'y a pas de groupe associé à ce jeu de données" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Mise à jour du Groupe" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Mettre à jour le jeu de données" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Créer le Groupe" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Ajouter des données au jeu de données" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Rechercher les jeux des données..." -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "Ajouter une Nouvelle Ressource" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Jeux de données du groupe : {group}" -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "Ajouter une ressource" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Historique récent des révisions" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Nouvelle ressource" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Titre" -#: 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 "Ajouter une vue" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Mon Groupe" -#: 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 "" -"Les vues de l'Explorateur de données peuvent être lentes et peu fiables à " -"moins que l'extension du magasin de données soit activée. Pour plus " -"d'informations, s'il vous plaît voir la documentation de l'Explorateur de " -"données. " +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "mon-groupe" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Ajouter" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Un peu d'information au sujet de mon groupe..." -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" -"Ceci est une ancienne révision de ce jeu de données, telle qu'éditée à " -"%(timestamp)s. Elle peut différer significativement de la révision actuelle." +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Etes-vous sûr de vouloir supprimer ce Groupe?" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Télécharger vers le DataStore" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Sauvegarder le Groupe" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Erreur de chargement :" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Afficher {name}" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Erreur :" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Supprimer le jeu de données de ce groupe" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "trace laissée par l'erreur:" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Que sont les groupes ?" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Statut" +#: 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 "" +"Vous pouvez utiliser les groupes CKAN pour créer et gérer des collections de" +" jeux de données. Cela peut être pour cataloguer des jeux de données pour un" +" projet ou une équipe en particulier, ou autour d'un thème spécifique, ou " +"comme moyen très simple d'aider à parcourir et découvrir vos jeux de données" +" publiés." -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Dernière modification" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Comparer" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Jamais" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Supprimé" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Journal de Chargement" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "lire plus" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Détails" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Révision" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "Fin de journal" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Horodatage" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Toutes les ressources" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Producteur" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Afficher la ressource" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Message de log" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Editer la ressource" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Bienvenue" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: 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 est la plateforme portail leader mondial en termes de données " +"accessibles en code source ouvert.

CKAN est un logiciel disponible " +"clés en main qui permet l’accès et l’utilisation de données - en " +"fournissant les outils pour rationnaliser la publication, le partage , la " +"recherche et l’utilisation de données (y compris le stockage des données et" +" la mise à disposition de solides données API). CKAN est destiné aux " +"éditeurs (gouvernements régionaux et nationaux, sociétés et organisations)" +" qui veulent mettre à disposition leurs données .

CKAN est utilisé" +" par des gouvernements et des groupes d’utilisateurs dans le monde entier " +"et permet le fonctionnement d’une variété de portails officiels et " +"communautaires , notamment des portails pour des gouvernements locaux, " +"nationaux et internationaux, comme data.gov.uk au Royaume Uni, publicdata.eu pour la Communauté " +"Européenne, dados.gov.br au Brésil, " +"des portails gouvernementaux hollandais et aux Pays Bas, ainsi que des " +"sites municipaux aux Etats Unis, Royaume Uni, Argentine, et Finlande entre" +" autres.

CKAN: http://ckan.org/
" +"Visitez CKAN: http://ckan.org/tour/ Présentation des Fonctionnalités: http://ckan.org/features/

" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Vues" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Bienvenue sur CKAN" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "Point d'accès API" +#: 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 "" +"Ceci est un paragraphe d'introduction à propos de CKAN ou du site en " +"général. Nous n'avons pas encore de rédactionnel à mettre ici, mais nous en " +"aurons bientôt" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Aller à la ressource" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Ceci est une section sélectionnée" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Télécharger" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Par exemple environnement" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Données de recherche" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Issu de l'abstract du jeu de données" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Mots-clés populaires" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "Source: %(dataset)s" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistiques" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Il n'y a encore aucune visualisation créée pour cette ressource" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "jeu de données" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Vous ne voyez pas les vues que vous attendiez?" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "jeux de données" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" -"Voici quelques raisons pour lesquelles vous ne pouvez pas voir les vues " -"attendues :" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisations" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "Il n'existe aucune visualisation adéquate pour cette ressource" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "groupes" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" msgstr "" -"Les administrateurs du site n'ont pas autorisé les extensions pertinentes " -"pour l'affichage" -#: ckan/templates/package/resource_read.html:125 +#: ckan/templates/macros/form.html:126 +#, python-format 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" +"You can use Markdown formatting here" msgstr "" -"Si une vue exige le magasin de données, l'extension du magasin de données ne" -" peut pas être activé, les données ne peuvent pas avoir été poussées vers le" -" magasin de données ou le magasin de données n'a pas encore fini de traiter " -"les données" +"Vous pouvez utiliser le langage Markdown ici" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Informations additionnelles" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Ce champ est requis" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Champ" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Personnalisé" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Valeur" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Le formulaire contient des entrées invalides :" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "inconnu" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Champ requis" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Créé le" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://exemple.com/mon-image.jpg" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Format" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL de l'image" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licence" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Annuler le transfert" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Nouvelle vue" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Formulaire d'organisation" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Cette ressource n'a aucune visualisation définie" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Modifier les jeux de données" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Ajouter une nouvelle ressource" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Ajouter un jeu de données" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

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

" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "trouvé pour \"{query}\"" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Désolé, aucun jeu de données trouvé pour \"{query}\"" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "Documentation de l'API" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Rendre public" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "extraction {format} complète" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Rendre privé" -#: 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 "" -" Vous pouvez aussi accéder à ce catalogue en utilisant %(api_link)s (cf " -"%(api_doc_link)s) ou télécharger %(dump_link)s. " +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Brouillon" -#: 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 "" -"Vous pouvez également accéder à ce catalogue en utilisant %(api_link)s (cf " -"%(api_doc_link)s). " +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Privée" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "Toutes les vues" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Cette organisation n'a pas de jeu de données associé" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "Afficher" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Etes-vous sûr de vouloir supprimer l'organisation - {name}?" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Voir l'aperçu" +#: ckan/templates/organization/edit.html:6 +#: ckan/templates/organization/snippets/info.html:13 +#: ckan/templates/organization/snippets/info.html:16 +msgid "Edit Organization" +msgstr "Modifier l'Organisation" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Info additionnelle" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Ajouter une organisation" -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Source" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Rechercher les organisations..." -#: 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 "Mainteneur" +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Il n'y a actuellement aucune organisation pour ce site" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Version" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nom d'utilisateur" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "État" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Adresse e-mail" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Dernière modification" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Mettre à jour le membre" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: ckan/templates/organization/member_new.html:81 +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 "" -"Vous devez créer une organisation avant de pouvoir créer un jeu de données." +"

Admin: Peut ajouter/modifier et supprimer les jeux de " +"données, ainsi qu’ administrer les membres d’organisations.

" +"

Editeur: Peut ajouter et modifier les jeux de données, " +"mais ne peut pas administrer les membres.

Membre: " +"Peut voir les jeux de données spécifiques à l’organisation, mais ne peut pas" +" ajouter de nouveaux jeux de données.

" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "Créez un nouvelle organisation" +#: 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 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Créer une Organisation" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Mise à jour de l'Organisation" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Créer une Orgaisation" + +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Ajouter un jeu de données" + +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Jeux de données de l'organisation : {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Que sont les 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 "" -"Il n'existe pas actuellement d'organisation à laquelle assigner ce jeu de " -"données." +"

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

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

" -#: ckan/templates/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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 "" -"Demandez à un administrateur de l'application de vous créer une organisation" -" avant de poursuivre." +"Les Organisations CKAN sont utilisées pour créer, gérer et publier des " +"collections de jeux de données. Les utilisateurs peuvent avoir différents " +"rôles au sein d'une Organisation, en fonction de leur niveau d'autorisation " +"pour créer, éditer et publier." -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "API de données" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Mon Organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Titre" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "mon-organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "p.ex. Un titre descriptif" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Un peu d'information au sujet de mon organisation..." -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "par exemple : mon-jeu-de-donnees" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Êtes vous sûr de vouloir supprimer cette organisation ? Cela supprimera " +"tous les jeux de données publics et privés appartenant à cette organisation." -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "par exemple : quelques notes utiles sur les données" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Sauvegarder l'Organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "par exemple : économie, santé mentale, gouvernement" +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Voir {organization_name}" -#: ckan/templates/package/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Créer le jeu de données" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Que sont les jeux de données ?" + +#: ckan/templates/package/base_form_page.html:25 msgid "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"Les définitions de la licence et des informations complémentaires peuvent " -"être trouvées chez opendefinition.org" +"Un jeu de données CKAN est une collection de ressources (telles que des " +"fichiers), ainsi qu'une description et d'autres information, avec une URL " +"fixe. Les jeux de données sont ce que l'utilisateur voit lorsqu'il effectue " +"une recherche de données." -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organisation" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Etes-vous sûr de vouloir supprimer le jeu de données - {name}?" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Aucune organisation" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Etes-vous sûr de vouloir supprimer la ressource - {name}?" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Visibilité" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Voir le jeu de données" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Publique" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Editer les métadonnées" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Actif" +#: 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 "Éditer la vue" -#: 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 licence des données que vous sélectionnez ci-dessus ne vaut que " -"pour le contenu de tous les fichiers de ressources que vous ajoutez à cet " -"ensemble de données. En soumettant ce formulaire, vous vous engagez à " -"libérer les valeurs des métadonnées que vous entrez dans le " -"formulaire en vertu de la Licence de base de " -"données ouvertes." +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Aperçu" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "Etes-vous sûr de vouloir supprimer ce jeu de données?" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Mise à jour" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Suivant : Ajouter des données" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Associer ce groupe à un jeu de données" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Ajouter à un groupe" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Il n'y a pas de groupe associé à ce jeu de données" -#: 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 "Jean Dupont" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Mettre à jour le jeu de données" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Courriel de l'auteur" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Ajouter des données au jeu de données" -#: 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 "jean@example.com" +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Ajouter une Nouvelle Ressource" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Courriel du mainteneur" +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Ajouter une ressource" -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Mettre à jour la ressource" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Nouvelle ressource" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" -msgstr "Données" +#: 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 "Ajouter une vue" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "http://exemple.com/donnees-externes.csv" +#: 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 "" +"Les vues de l'Explorateur de données peuvent être lentes et peu fiables à " +"moins que l'extension du magasin de données soit activée. Pour plus " +"d'informations, s'il vous plaît voir la documentation de l'Explorateur de " +"données. " + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Ajouter" + +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "" +"Ceci est une ancienne révision de ce jeu de données, telle qu'éditée à " +"%(timestamp)s. Elle peut différer significativement de la révision actuelle." + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Toutes les ressources" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "par exemple : Prix de l'or en janvier 2011" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Afficher la ressource" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Quelques notes utiles à propos des données" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Editer la ressource" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "par exemple : CSV, XML ou JSON" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Vues" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" -"Ceci sera généré automatiquement. Laissez ce champ vide si vous le souhaitez" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "Point d'accès API" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "p. ex. 2012-06-05" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Aller à la ressource" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Taille du Fichier" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Télécharger" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "p. ex. 1024" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "Type MIME" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Issu de l'abstract du jeu de données" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "p. ex. application/json" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Source: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Etes-vous sûr de vouloir supprimer cette ressource?" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "Il n'y a encore aucune visualisation créée pour cette ressource" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Précédent" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Vous ne voyez pas les vues que vous attendiez?" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Enregistrer & ajouter un autre" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" +"Voici quelques raisons pour lesquelles vous ne pouvez pas voir les vues " +"attendues :" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Terminer" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" +msgstr "Il n'existe aucune visualisation adéquate pour cette ressource" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Qu'est-ce qu'une ressource ?" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Les administrateurs du site n'ont pas autorisé les extensions pertinentes " +"pour l'affichage" -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:122 +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 "" -"Une ressource peut-être un fichier ou un lien vers un fichier contenant des " -"données utiles." +"Si une vue exige le magasin de données, l'extension du magasin de données ne" +" peut pas être activé, les données ne peuvent pas avoir été poussées vers le" +" magasin de données ou le magasin de données n'a pas encore fini de traiter " +"les données" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Explorer" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Informations additionnelles" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Plus d'information" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Champ" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Embarquer sur un site" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valeur" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "Cette visualisation de ressource n'est pas disponible pour le moment" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Incorporer cette visualisation de ressource" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "inconnu" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -"Vous pouvez copier et coller le code intégré dans un système de gestion de " -"contenu ou un logiciel de blogue qui prend en charge le HTML brut" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Largeur" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Créé le" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Hauteur" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Format" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Code" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licence" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Aperçu de la ressource" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nouvelle vue" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Données et ressources" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Cette ressource n'a aucune visualisation définie" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Ce jeu de données est vide" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Ajouter une nouvelle ressource" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format -msgid "Read dataset as of %s" -msgstr "Lecture du jeu de données en tant que %s" +msgid "" +"

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

" +msgstr "" +"

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

" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Créer le jeu de données" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: 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 "Ajouter des données" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Documentation de l'API" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "p. ex. Ma vue" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "extraction {format} complète" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "p. ex. Information à propos de ma vue" +#: 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 "" +" Vous pouvez aussi accéder à ce catalogue en utilisant %(api_link)s (cf " +"%(api_doc_link)s) ou télécharger %(dump_link)s. " -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Ajouter un filtre" +#: 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 "" +"Vous pouvez également accéder à ce catalogue en utilisant %(api_link)s (cf " +"%(api_doc_link)s). " -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Supprimer un filtre" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Toutes les vues" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filtres" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Afficher" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Qu'est-ce qu'une vue?" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Voir l'aperçu" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "Une vue est une représentation des données détenues par une ressource" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Info additionnelle" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Différences" +#: 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:37 +#: ckan/templates/package/snippets/additional_info.html:42 +#: ckan/templates/package/snippets/package_metadata_fields.html:20 +msgid "Maintainer" +msgstr "Mainteneur" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Différences entre les révisions" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Version" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Différence" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "État" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Pas de différences" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Dernière modification" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Historique des révisions" +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" +"Vous devez créer une organisation avant de pouvoir créer un jeu de données." -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Révisions" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Créez un nouvelle organisation" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Restaurer" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" +"Il n'existe pas actuellement d'organisation à laquelle assigner ce jeu de " +"données." -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Modifications" +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Demandez à un administrateur de l'application de vous créer une organisation" +" avant de poursuivre." -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Tags des jeux de données" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titre" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entité" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "p.ex. Un titre descriptif" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Nouvel élément d'activité" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "par exemple : mon-jeu-de-donnees" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Embarquer le visualiseur de données" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "par exemple : quelques notes utiles sur les données" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Incorporez cette vue en la copiant dans votre page web :" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "par exemple : économie, santé mentale, gouvernement" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Choisissez la largeur et la hauteur en pixels :" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Les définitions de la licence et des informations complémentaires peuvent " +"être trouvées chez opendefinition.org" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Largeur :" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisation" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Hauteur :" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Aucune organisation" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "DataPusher status: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Visibilité" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Rétrolien" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Publique" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Montrer plus de {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Actif" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Montrer uniquement les {facet_type} populaires" +#: 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 licence des données que vous sélectionnez ci-dessus ne vaut que " +"pour le contenu de tous les fichiers de ressources que vous ajoutez à cet " +"ensemble de données. En soumettant ce formulaire, vous vous engagez à " +"libérer les valeurs des métadonnées que vous entrez dans le " +"formulaire en vertu de la Licence de base de " +"données ouvertes." -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Il n'y a pas de {facet_type} qui corresponde à cette recherche" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Etes-vous sûr de vouloir supprimer ce jeu de données?" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Accueil" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Suivant : Ajouter des données" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Langue" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Go" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "Aucune licence fournie" +#: 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 "Jean Dupont" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Ce jeu de données est conforme à l'Open Definition." +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Courriel de l'auteur" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Il n'y a pas de description pour cette organisation" +#: 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 "jean@example.com" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Il n'y a pas de description pour ce jeu de données " +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Courriel du mainteneur" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Envoyer" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Mettre à jour la ressource" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Par Ordre" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Données" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filtrer les resultats" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://exemple.com/donnees-externes.csv" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Veuillez essayer une autre recherche.

" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "par exemple : Prix de l'or en janvier 2011" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "" -"

Une erreur est survenue pendant votre " -"recherche. Merci d'essayer de la soumettre à nouveau.

" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Quelques notes utiles à propos des données" -#: ckan/templates/snippets/search_result_text.html:15 -msgid "{number} dataset found for \"{query}\"" -msgid_plural "{number} datasets found for \"{query}\"" -msgstr[0] "{number} jeu de données trouvé pour \"{query}\"" -msgstr[1] "{number} jeux de données trouvés pour \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "par exemple : CSV, XML ou JSON" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "Aucun jeu de données trouvé pour \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" +"Ceci sera généré automatiquement. Laissez ce champ vide si vous le souhaitez" -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "{number} jeu de données trouvé" -msgstr[1] "{number} jeux de données trouvés" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "p. ex. 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Aucun jeu de données trouvé" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Taille du Fichier" -#: ckan/templates/snippets/search_result_text.html:21 -msgid "{number} group found for \"{query}\"" -msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "{number} groupe trouvé pour \"{query}\"" -msgstr[1] "{number} groupes trouvés pour \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "p. ex. 1024" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Aucun groupe trouvé pour \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "Type MIME" -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "{number} groupe trouvé" -msgstr[1] "{number} groupes trouvés" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "p. ex. application/json" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Aucun groupe trouvé" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Etes-vous sûr de vouloir supprimer cette ressource?" -#: 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 trouvée pour \"{query}\"" -msgstr[1] "{number} organisations trouvées pour \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Précédent" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "Aucune organisation trouvée pour \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Enregistrer & ajouter un autre" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "{number} organisation trouvée" -msgstr[1] "{number} organisations trouvées" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Terminer" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Aucune organisation trouvée" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Qu'est-ce qu'une ressource ?" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Social" +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Une ressource peut-être un fichier ou un lien vers un fichier contenant des " +"données utiles." -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Inscription" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Explorer" -#: 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:82 -msgid "Email" -msgstr "e-mail" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Plus d'information" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Embarquer sur un site" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Modifications" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "Cette visualisation de ressource n'est pas disponible pour le moment" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Rechercher des tags" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Incorporer cette visualisation de ressource" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Fil d'actualités" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Vous pouvez copier et coller le code intégré dans un système de gestion de " +"contenu ou un logiciel de blogue qui prend en charge le HTML brut" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Mes jeux de données" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Largeur" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Mes organisations" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Hauteur" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Mes groupes" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Code" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Activité des éléments que je suis" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Aperçu de la ressource" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Vous n'avez créé aucun jeu de données" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Données et ressources" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Voulez-vous en créer un maintenant ?" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Ce jeu de données est vide" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "Vous n'êtes membre d'aucun groupe." +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Lecture du jeu de données en tant que %s" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Vous n'êtes membre d'aucune organisation." +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Créer le jeu de données" -#: 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 "Utilisateurs" +#: 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 "Ajouter des données" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Info sur le compte" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "p. ex. Ma vue" -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" -"Votre profil permet aux autres utilisateurs de CKAN de savoir qui vous êtes " -"et ce que vous faites" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "p. ex. Information à propos de ma vue" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Modifier les détails" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Supprimer un filtre" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Nom complet" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Qu'est-ce qu'une vue?" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "p.ex. Jean Dupont" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "Une vue est une représentation des données détenues par une ressource" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "p.ex. jean@example.com" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Différences" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Un peu d'information à propos de vous" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Différences entre les révisions" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "S'inscrire aux courriels de notification" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Différence" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Changer le mot de passe" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Pas de différences" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "Mot de passe administrateur système" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Historique des révisions" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Mot de passe" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Révisions" + +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Restaurer" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Confirmez votre mot de passe" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Modifications" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Êtes-vous sûr de vouloir supprimer cet utilisateur" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Tags des jeux de données" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "Êtes-vous sûr de vouloir régénérer la clé de l'API?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entité" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Regénérer la clé de l'API" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Nouvel élément d'activité" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Mettre à jour le profil" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Embarquer le visualiseur de données" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Tous les utilisateurs" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Incorporez cette vue en la copiant dans votre page web :" -#: 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 "Se connecter" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Choisissez la largeur et la hauteur en pixels :" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Vous avez besoin d'un Compte ?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Largeur :" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "Alors inscrivez-vous tout de suite, il n'y en a que pour une minute." +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Hauteur :" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Créer un Compte" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "DataPusher status: {status}." -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Mot de passe oublié ?" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Rétrolien" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" -"Aucun problème, utilisez notre formulaire de regénération du mot de passe " -"pour le réinitialiser." +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Montrer plus de {facet_type}" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Mot de passe oublié ?" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Montrer uniquement les {facet_type} populaires" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Déconnecté" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Il n'y a pas de {facet_type} qui corresponde à cette recherche" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Vous êtes maintenant déconnecté." +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Accueil" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Vous êtes déjà connecté sous le nom de {user}." +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Langue" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Déconnexion" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Go" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Se souvenir de moi" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Aucune licence fournie" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Vous êtes déjà connecté " +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Ce jeu de données est conforme à l'Open Definition." -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" -"Vous devez vous déconnecter avant de vous identifier avec un autre compte." +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Il n'y a pas de description pour cette organisation" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Déconnexion immédiate" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Il n'y a pas de description pour ce jeu de données " -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Inscription" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Envoyer" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Enregistrer un compte" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Par Ordre" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Pourquoi s'inscrire ?" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filtrer les resultats" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Veuillez essayer une autre recherche.

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

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

" msgstr "" -"Créer des jeux de données, des groupes et d'autres choses passionnantes" +"

Une erreur est survenue pendant votre " +"recherche. Merci d'essayer de la soumettre à nouveau.

" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "nom d'utilisateur" +#: ckan/templates/snippets/search_result_text.html:15 +msgid "{number} dataset found for \"{query}\"" +msgid_plural "{number} datasets found for \"{query}\"" +msgstr[0] "{number} jeu de données trouvé pour \"{query}\"" +msgstr[1] "{number} jeux de données trouvés pour \"{query}\"" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Nom Complet" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Aucun jeu de données trouvé pour \"{query}\"" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Créer un compte" +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} jeu de données trouvé" +msgstr[1] "{number} jeux de données trouvés" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Réinitialiser votre mot de passe" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Aucun jeu de données trouvé" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Réinitialisation du mot de passe" +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{number} groupe trouvé pour \"{query}\"" +msgstr[1] "{number} groupes trouvés pour \"{query}\"" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Mettre à jour le mot de passe" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Aucun groupe trouvé pour \"{query}\"" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Comment ça marche ?" +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} groupe trouvé" +msgstr[1] "{number} groupes trouvés" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" -"Fournissez simplement un nouveau mot de passe et nous actualiserons votre " -"compte" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Aucun groupe trouvé" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "L'utilisateur n'a créé auncun jeu de données." +#: 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 trouvée pour \"{query}\"" +msgstr[1] "{number} organisations trouvées pour \"{query}\"" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Vous n'avez pas fourni de biographie." +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Aucune organisation trouvée pour \"{query}\"" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Il n'y a pas de biographie pour cet utilisateur." +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} organisation trouvée" +msgstr[1] "{number} organisations trouvées" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Aucune organisation trouvée" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Cela signifie, que vous seul pouvez voir ceci" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Membre Depuis" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Inscription" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "Clé d'API" +#: 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:82 +msgid "Email" +msgstr "e-mail" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Réinitialiser votre mot de passe" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Réinitialisation du mot de passe" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Modifications" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Réinitialisation de la demande" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Rechercher des tags" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Entrez votre identifiant utilisateur dans la boite et nous vous enverrons un" -" courriel contenant un lien pour entrer un nouveau mot de passe." +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Fil d'actualités" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Activité depuis: " +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Mes jeux de données" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Rechercher dans la liste..." +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mes organisations" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Vous ne suivez rien" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mes groupes" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Aucun suiveur" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Activité des éléments que je suis" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Rechercher des utilisateurs" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Vous n'avez créé aucun jeu de données" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Terminé" +#: 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:16 +msgid "Create one now?" +msgstr "Voulez-vous en créer un maintenant ?" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "En attente" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Vous n'êtes membre d'aucun groupe." -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "En cours d'envoi" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Vous n'êtes membre d'aucune organisation." -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Pas encore chargé" +#: 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 "Utilisateurs" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Ressource de magasin de données non trouvée" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Info sur le compte" -#: ckanext/datastore/db.py:663 +#: ckan/templates/user/edit.html:19 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -"Les données étaient invalides (par exemple, une valeur numérique est hors de" -" portée ou a été insérée dans un champ de texte)." - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "La ressource \"{0}\" est introuvable" - -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "L'utilisateur {0} n'est pas autorisé à mettre à jour la ressource {1}" - -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Jeux de données par page" +"Votre profil permet aux autres utilisateurs de CKAN de savoir qui vous êtes " +"et ce que vous faites" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Configuration du test" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Modifier les détails" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Champ personnalisé croissant" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Nom complet" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Champ personnalisé décroissant" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "p.ex. Jean Dupont" -#: 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 "Texte Personnalisé" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "p.ex. jean@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "texte personnalisé" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Un peu d'information à propos de vous" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Code Pays" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "S'inscrire aux courriels de notification" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "texte de la ressource personnalisé" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Changer le mot de passe" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "Ceci est une chaîne de texte non traduite" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "Mot de passe administrateur système" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Il n'y a pas de description pour ce groupe" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Mot de passe" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" -"L'outil de prévisualisation des données de CKAN possède de nombreuses et " -"puissantes fonctionnalités " +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Confirmez votre mot de passe" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "URL de l'image" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Êtes-vous sûr de vouloir supprimer cet utilisateur" -#: 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 elle est vide utiliser l'URL de la " -"ressource)" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Êtes-vous sûr de vouloir régénérer la clé de l'API?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Explorateur de données" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Regénérer la clé de l'API" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Table" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Mettre à jour le profil" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Graphe" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Tous les utilisateurs" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Carte" +#: 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 "Se connecter" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "erreur lors du chargement de la vue" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Vous avez besoin d'un Compte ?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "Décalage de la ligne" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Alors inscrivez-vous tout de suite, il n'y en a que pour une minute." -#: 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" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Créer un Compte" -#: 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 rangées" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Mot de passe oublié ?" -#: 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" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Aucun problème, utilisez notre formulaire de regénération du mot de passe " +"pour le réinitialiser." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Type de graphes" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Mot de passe oublié ?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Groupe (Axe 1)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Déconnecté" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Série (Axe 2)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Vous êtes maintenant déconnecté." -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Type de champs" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Vous êtes déjà connecté sous le nom de {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Champ de latitude" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Déconnexion" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Champ de longitude" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Se souvenir de moi" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "Champ GeoJSON" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Vous êtes déjà connecté " -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Zoom automatique aux fonctionnalités" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." +msgstr "" +"Vous devez vous déconnecter avant de vous identifier avec un autre compte." -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Marqueurs de regroupement" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Déconnexion immédiate" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Nombre total de jeux de données" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Inscription" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Date" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Enregistrer un compte" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Total des jeux de données" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Pourquoi s'inscrire ?" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Révisions de jeux de données par semaine" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "" +"Créer des jeux de données, des groupes et d'autres choses passionnantes" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Historique des révisions du jeu de données" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "nom d'utilisateur" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Nouveaux jeux de données" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nom Complet" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Les jeux de données les mieux notés" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Créer un compte" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Note moyenne" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Réinitialiser votre mot de passe" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Nombre de notes" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Réinitialisation du mot de passe" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Pas de note" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Mettre à jour le mot de passe" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Les jeux de données les plus édités" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Comment ça marche ?" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Nombre de modifications" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "" +"Fournissez simplement un nouveau mot de passe et nous actualiserons votre " +"compte" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Aucun jeu de données modifié" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "L'utilisateur n'a créé auncun jeu de données." -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Groupes les plus gros" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Vous n'avez pas fourni de biographie." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Nombre de jeux de données" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Il n'y a pas de biographie pour cet utilisateur." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Pas de groupes" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Mots-clés les plus utilisés" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Cela signifie, que vous seul pouvez voir ceci" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Nom de tag" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Membre Depuis" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Nombre de jeu de données" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "Clé d'API" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "Utilisateur ayant créé le plus de jeux de données" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Réinitialiser votre mot de passe" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Menu des statistiques" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Réinitialisation du mot de passe" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Nombre total de jeux de données" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Réinitialisation de la demande" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Texte" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "" +"Entrez votre identifiant utilisateur dans la boite et nous vous enverrons un" +" courriel contenant un lien pour entrer un nouveau mot de passe." -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" -msgstr "Une erreur est survenue: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Activité depuis: " -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Site Web" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Rechercher dans la liste..." -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "URL de la page Web" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Vous ne suivez rien" -#: 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 elle est vide utiliser l'URL de la ressource)" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Aucun suiveur" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Rechercher des utilisateurs" diff --git a/ckan/i18n/he/LC_MESSAGES/ckan.mo b/ckan/i18n/he/LC_MESSAGES/ckan.mo index 2829ae27564..17f4141318a 100644 Binary files a/ckan/i18n/he/LC_MESSAGES/ckan.mo and b/ckan/i18n/he/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/he/LC_MESSAGES/ckan.po b/ckan/i18n/he/LC_MESSAGES/ckan.po index c4284865cc4..a203cca6dc2 100644 --- a/ckan/i18n/he/LC_MESSAGES/ckan.po +++ b/ckan/i18n/he/LC_MESSAGES/ckan.po @@ -1,4517 +1,4613 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "פונקציית האימות לא נמצאה: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "הושלמה" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "מנהל" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "ממתין" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "עורך" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "שליחה" -#: ckan/authz.py:199 -msgid "Member" -msgstr "חבר" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "שגיאה" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "אין מה לעשות, בשביל לנהל, חייבים לקבל קודם הרשאת ניהול" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "עדיין לא הועלה" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "שמור כותרת" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "משאב לא נמצא" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "סגנון" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "אינך מורשה לצפות בעמוד זה." -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "סלוגן האתר" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "העלאה למחסן נתונים" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr " תגית לוגו אתר" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "שגיאת העלאה:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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 "אודות" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "שגיאה:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "טקסט עמוד אודות" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "טקסט הקדמה" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "סטטוס" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "טקסט בעמוד הבית" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "עדכון אחרון" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "CSS מותאם אישית" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "מעולם" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "CSS שניתן להתאמה אישית, הוכנס לתוך ה- Header של העמוד" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "יומן העלאות" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "עמוד הבית" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "פרטים" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "סוף יומן" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "משאב DataStore לא נמצא" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"אין אפשרות למחוק את חבילה %s מכיוון שגרסה %s כוללת חבילות שטרם נמחקו %s " -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "בעיה במחיקת גרסת %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "משאב \"{0}\" לא נמצא." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "מחיקה הושלמה" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "משתמש {0} אינו מורשה לעדכן משאב {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "הפעולה לא בוצעה." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "ה- API של נתוני CKAN" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "אינך מורשה לצפות בעמוד זה." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "גשו למשאב מידע דרך API מקוון עם תמיכה בשאילתות מורכבות" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "גישה נדחתה" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "לא נמצא" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "נקודות קצה" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "בקשה שגויה" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"ה-API של המידע יכול להתקבל באמצעות הפעולות הבאות של API פעולות של CKAN. " -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "פעולה לא מוכרת: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "צרו" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "טעות JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "הוסיפו/עדכנו" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "בקשה בעייתית לנתונים: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "שאילתה" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "אינני יכולה להכניס את הישות מסוג זה לתוך רשימה: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "שאילתה (באמצעות SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "אינני יכולה לקרוא ישות מסוג זה: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "ביצוע שאילתה" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "אינני יכולה ליצור ישות מסוג זה: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "דוגמה לשאילתה (5 התוצאות הראשונות)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "אינני יכולה להוסיף את החבילה לאינדקס החיפוש" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "דוגמה לשאילתה (תוצאות שכוללות 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "אינני יכולה לעדכן ישות מסוג זה: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "דוגמה לשאילתה (באמצעות מידע SQL)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "אינני יכולה לעדכן את אינדקס החיפוש " +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "דוגמה: ג'אווה סקריפט" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "אינני יכולה למחוק ישות מסוג זה: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "בקשת ajax (JSONP) ל-API מידע באמצעות jQuery." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "גרסה לא צוינה" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "לדוגמא: פייתון" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "אין גרסה עם id כזה: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "מונח חיפוש חסר ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "איני יכולה לקרוא את המשתנה: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "תיאור" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "בחירת חיפוש ממש גרועה: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "שמירה" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "הרשמה לא ידועה: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "ערך qjson משובש: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "הפרמטרים המבוקשים חייבים להיות בפורמט של מילון json מקודד." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "הקבוצה לא נמצאה" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "טוען..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "מידע API" + +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "סוג קבוצה לא נכון" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "ארגונים" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "קבוצות" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "תגיות" - -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "פורמטים" - -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "רישיונות" - -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "ללא הרשאה לבצע עדכון בתפוצה רחבה (bulk update)" - -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "ללא הרשאה ליצור קבוצה" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "המשתמש/ת %r אינם מורשים לערוך את %s" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "שגיאת שלמות" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "הקשר" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "משתמש %r לא מורשה לערוך הרשאות %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "אינך מורשה למחוק את קבוצה %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "הארגון נמחק. " +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "שונה לאחרונה" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "הקבוצה נמחקה" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" msgstr "" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "אין הרשאה להוסיף חבר לקבוצה %s" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "פופולרי" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "אינך מורשה למחוק את החברים בקבוצה %s " +#: 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 "טקסט מותאם אישית" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "חבר הקבוצה נמחק." +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "טקסט מותאם אישית" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "יש לבחור שתי גרסאות לפני ביצוע ההשוואה" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "קוד מדינה" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "היסטורית הגרסאות של קבוצת תביאתה" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "שינויים אחרונים בקבוצת תביאתה:" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "רשומה בקובץ יומן (Log)" +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "את כעת עוקבת אחר {0}" +#: 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/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -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 "0 צבירי נתונים" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "מה פתאום! אסור לך לראות את עוקבים %s" +#: 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/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "האתר כרגע אינו פעיל. בסיס הנתונים אינו עובד. " +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "עוקבים" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "אנא עדכני את הפרופיל ואת כתובת הדוא\"ל. " +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "משאבים" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "%s משתמש בכתובת הדוא\"ל שלך, אם יהיה צורך לאתחל את סיסמתך." +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "תמונה" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" msgstr "" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "הפרמטר \"{parameter_name}\" אינו מספר שלם" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "צביר מידע לא נמצא" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "פורמט שינוי לא תקין: %r" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" msgstr "" -"אין אפשרות לראות את צביר הנתונים {package_type} בתצורה {format} התצוה אינה " -"נתמכת (קובץ הדוגמה {file} אינו נמצא)." -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "אינך מורשה לקרוא את חבילה %s" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "היסטוריית הגרסאות של צבירי הנתונים של תביאתה " +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "שינויים אחרונים לצבירי הנתונים של תביאתה" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "לא מורשה ליצור חבילה" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "לא מורשה לערוך משאב זה" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "משאב לא נמצא" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "אין הרשאה לעדכון צביר הנתונים" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "הדאטה סט {id} לא נמצא." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "חובה להוסיף לפחות משאב דאטה אחד" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "שגיאה" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "אין הרשאה ליצירת משאב" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" msgstr "" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "לא ניתן להוסיף חבילה לאינדקס החיפוש" - -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "לא ניתן לעדכן אינדקס חיפוש" - -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "צביר המידע נמחק." - -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "אין הרשאה למחוק חבילה %s" - -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "משאב נמחק." - -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "אין הרשאה למחיקת משאב %s" - -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" msgstr "" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "מידע משאב לא נמצא" - -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "אין הורדה זמינה" - -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "אין הרשאה לקריאת דאטה סט %s" - -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "אין הרשאה לקריאת משאב %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" msgstr "" -#: ckan/controllers/package.py:1495 -msgid "View not found" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" msgstr "" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" msgstr "" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" msgstr "" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" msgstr "" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "לא הוגדרה צפיה מקדימה." +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "מספר כולל של צבירי נתונים" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "היסטוריית שינויים במאגר תביאתה" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "תאריך" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "שינויים אחרונים במאגר תביאתה" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "סך הכל צבירי נתונים" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "השפעה על דאטה סטים: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "שינויים בצביר נתונים בשבוע" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "הגירסה עודכנה" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "כל השינויים בצביר הנתונים" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "אחר" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "צבירי נתונים חדשים" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "תגית לא נמצאה" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "צבירי הנתונים המדורגים ביותר" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "משתמש לא נמצא" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "דירוג ממוצע" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "אינכם מורשים להירשם כמשתמש." +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "מספר דירוגים" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "אינכם מורשים ליצור משתמש" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "אין דירוגים" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "אינכם מורשים למחוק את המשתמש עם מזהה \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "צבירי הנתונים עם הכי הרבה עריכות" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "לא הוגדר משתמש" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "צביר נתונים" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "אין הרשאה לערוךך את משתמש %s" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "מספר עריכות" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "הפרופיל עודכן" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "אין צבירי נתונים ערוכים" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "אינכם מורשים ליצור את המשתמש %s" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "הקבוצות הגדולות ביותר" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "שגיאת קפצ'ה. נסו שוב" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "קבוצה" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "משתמש \"%s\" רשום עכשיו אבל אתם עדיין מחוברים כ- \"%s\" " +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "מספר צבירי נתונים" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "אין הרשאה לעריכת משתמש" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "אין קבוצות" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "משתמש %s לא מורשה לערוך %s" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "תגיות נפוצות" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "שם תגית" + +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "מספר צבירי נתונים" + +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" msgstr "" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "משתמש" + +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "תפריט סטטיסטיקות" + +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "מספר כולל של צבירי נתונים" + +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" msgstr "" -#: ckan/controllers/user.py:386 -msgid "incorrect password" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" msgstr "" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "ההתחברות נכשלה. שם משתמש או סיסמה שגויים" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "לא מורשה לבקש איפוס סיסמה." +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" תואם לכמה משתמשים" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "הדפדפן שלך לא תומך ב-iframes." -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 +#: ckan/authz.py:182 #, python-format -msgid "No such user: %s" -msgstr "אין משתמש כזה: %s" +msgid "Authorization function not found: %s" +msgstr "פונקציית האימות לא נמצאה: %s" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "בדוק את תיבת המייל שלך לקוד איפוס." +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "מנהל" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "לא ניתן לשלוח קישור לאיפוס: %s" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "עורך" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "לא מורשה לאיפוס סיסמה" +#: ckan/authz.py:202 +msgid "Member" +msgstr "חבר" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "מפתח איפוס שגוי. נסו שוב." - -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "הסיסמה שלך אופסה." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "אין מה לעשות, בשביל לנהל, חייבים לקבל קודם הרשאת ניהול" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "הסיסמה חייבת להכיל מינימום ארבעה תווים" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "שמור כותרת" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "הסיסמה שהכנסת לא נכונה" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "סגנון" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "יש להכניס סיסמה" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "סלוגן האתר" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "הפריט העוקב לא נמצא" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr " תגית לוגו אתר" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} לא נמצא" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:654 -msgid "Everything" -msgstr "הכל" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "טקסט עמוד אודות" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "ערך חסר" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "טקסט הקדמה" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "טקסט בעמוד הבית" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} הוסיף את התג {tag} לדאטה סט {dataset}" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "CSS מותאם אישית" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} עידכן את הקבוצה {group}" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "CSS שניתן להתאמה אישית, הוכנס לתוך ה- Header של העמוד" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} עדכן את הארגון {organization}" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "עמוד הבית" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} עדכן את הדאטה סט {dataset}" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"אין אפשרות למחוק את חבילה %s מכיוון שגרסה %s כוללת חבילות שטרם נמחקו %s " -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} שינה את העודף {extra} של דאטה סט {dataset}" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "בעיה במחיקת גרסת %s: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} עדכן את המשאב {resource} בדאטה סט {dataset}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "מחיקה הושלמה" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} עדכנו את הפרופיל שלהם" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "הפעולה לא בוצעה." -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} מחק את הקבוצה {group}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "גישה נדחתה" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} מחק את הארגון {organization}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "לא נמצא" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} מחק את הדאטה סט {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "בקשה שגויה" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} מחק את היתרה {extra} מדאטה סט {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "פעולה לא מוכרת: %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} מחק את המשאב {resource} מהדאטה סט {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "טעות JSON: %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} יצר את הקבוצה {group}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "בקשה בעייתית לנתונים: %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} יצר את הארגון {organization}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "אינני יכולה להכניס את הישות מסוג זה לתוך רשימה: %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} יצר את הדאטה סט {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "אינני יכולה לקרוא ישות מסוג זה: %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} הוסיף את העודף {extra} לדאטה סט {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "אינני יכולה ליצור ישות מסוג זה: %s %s" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} הוסיף את המשאב {resource} לדאטה סט {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "אינני יכולה להוסיף את החבילה לאינדקס החיפוש" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} נרשם" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "אינני יכולה לעדכן ישות מסוג זה: %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} מחק את התווית {tag} מהדאטה סט {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "אינני יכולה לעדכן את אינדקס החיפוש " -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} התחיל לעקוב אחר {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "אינני יכולה למחוק ישות מסוג זה: %s %s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} התחיל לעקוב אחר {user}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "גרסה לא צוינה" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} התחיל לעקוב אחר {group}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "אין גרסה עם id כזה: %s" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "תצוגה" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "מונח חיפוש חסר ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: 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/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "איני יכולה לקרוא את המשתנה: %r" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "ינואר" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "בחירת חיפוש ממש גרועה: %s" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "פברואר" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "הרשמה לא ידועה: %s" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "מרץ" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "ערך qjson משובש: %r" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "אפריל" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "הפרמטרים המבוקשים חייבים להיות בפורמט של מילון json מקודד." -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "מאי" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "הקבוצה לא נמצאה" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "יוני" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "יולי" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "סוג קבוצה לא נכון" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "אוגוסט" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "ארגונים" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "ספטמבר" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "קבוצות" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "אוקטובר" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "תגיות" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "נובמבר" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "פורמטים" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "דצמבר" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "רישיונות" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "עכשיו" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "המשתמש/ת %r אינם מורשים לערוך את %s" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "לפני דקה אחת" -msgstr[1] "לפני {mins} דקות" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "ללא הרשאה לבצע עדכון בתפוצה רחבה (bulk update)" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "לפני {hours} שעה" -msgstr[1] " לפני {hours} שעות" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "ללא הרשאה ליצור קבוצה" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "לפני יום אחד" -msgstr[1] "לפני {days} ימים" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "שגיאת שלמות" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "לפני חודש" -msgstr[1] "לפני {months} חודשים" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "משתמש %r לא מורשה לערוך הרשאות %s" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "לפני יותר משנה" -msgstr[1] "לפני יותר מ-{years} שנים" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "אינך מורשה למחוק את קבוצה %s" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "הארגון נמחק. " -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{day} {month}, {year}" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "הקבוצה נמחקה" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} בתים" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "אין הרשאה להוסיף חבר לקבוצה %s" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "אינך מורשה למחוק את החברים בקבוצה %s " -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "חבר הקבוצה נמחק." -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "יש לבחור שתי גרסאות לפני ביצוע ההשוואה" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "היסטורית הגרסאות של קבוצת תביאתה" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "שינויים אחרונים בקבוצת תביאתה:" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "רשומה בקובץ יומן (Log)" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "את כעת עוקבת אחר {0}" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "זהו. הפסקת לעקוב אחר {0}" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "מה פתאום! אסור לך לראות את עוקבים %s" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "האתר כרגע אינו פעיל. בסיס הנתונים אינו עובד. " -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "אנא עדכני את הפרופיל ואת כתובת הדוא\"ל. " -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "עדכן את האווטאר שלך ב- gravatar.com" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s משתמש בכתובת הדוא\"ל שלך, אם יהיה צורך לאתחל את סיסמתך." -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "לא ידוע" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "משאב ללא שם" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "הפרמטר \"{parameter_name}\" אינו מספר שלם" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "ליצור צביר נתונים חדש" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "צביר מידע לא נמצא" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "משאב ערוך" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "פורמט שינוי לא תקין: %r" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "הגדרות שנערכו." +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "תצוגה אחת" -msgstr[1] "{number} תצוגות" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "אינך מורשה לקרוא את חבילה %s" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "תצוגה אחרונה" -msgstr[1] "{number} תצוגות אחרונות" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "היסטוריית הגרסאות של צבירי הנתונים של תביאתה " -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "שינויים אחרונים לצבירי הנתונים של תביאתה" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "כתובת דואר אלקטרוני של הנמען לא קיימת" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "לא מורשה ליצור חבילה" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "ארגון" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "לא מורשה לערוך משאב זה" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "קבוצה" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "אין הרשאה לעדכון צביר הנתונים" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "ערך חסר" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "הדאטה סט {id} לא נמצא." -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "שדה הקלט %(name)s לא היה צפוי" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "חובה להוסיף לפחות משאב דאטה אחד" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "נא הכנס מספר שלם כערך" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "אין הרשאה ליצירת משאב" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "משאבים" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "משאבי החבילה אינם תקינים" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "לא ניתן להוסיף חבילה לאינדקס החיפוש" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "תוספות" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "לא ניתן לעדכן אינדקס חיפוש" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "תגית אוצר המילים \"%s\" אינה קיימת" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "צביר המידע נמחק." -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "משתמש" - -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "צביר נתונים" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "אין הרשאה למחוק חבילה %s" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "קבוצה" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "משאב נמחק." -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "אין אפשרות לפרוס לתצורת קובץ JSON תקינה" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "אין הרשאה למחיקת משאב %s" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" msgstr "" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "ארגון לא קיים" - -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "אין אפשרות להוסיף צביר נתונים לאירגון זה" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "מידע משאב לא נמצא" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "ספרה לא תקינה" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "אין הורדה זמינה" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "חייב להיות מספר טבעי" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "אין הרשאה לקריאת דאטה סט %s" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "חייבת להיות ספרה חיובית" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "אין הרשאה לקריאת משאב %s" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "תצורת התאריך אינה תקינה" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "קישורים אינם מותרים בהודעת יומן " +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" msgstr "" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "משאב" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "שם קבוצה או מזהה זה אינו קיים" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "סוג פעילות" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "לא הוגדרה צפיה מקדימה." -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "שמות חייבים להיות מחרוזות" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "היסטוריית שינויים במאגר תביאתה" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "אין אפשרות להשתמש בשם זה" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "שינויים אחרונים במאגר תביאתה" -#: ckan/logic/validators.py:337 +#: ckan/controllers/revision.py:110 #, python-format -msgid "Must be at least %s characters long" -msgstr "" +msgid "Datasets affected: %s.\n" +msgstr "השפעה על דאטה סטים: %s.\n" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "אורך השם אינו יכול לעלות על %i תווים" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "הגירסה עודכנה" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "אחר" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "הקישור נמצא כבר בשימוש." +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "תגית לא נמצאה" -#: ckan/logic/validators.py:365 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "אורך השם \"%s\" קטן ממינימום %s" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "אינכם מורשים להירשם כמשתמש." -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "אורך השם \"%s\" יותר מהמקסימום %s " +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "אינכם מורשים ליצור משתמש" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "אורך הגרסה לא יכול לעלות על %i תווים" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "אינכם מורשים למחוק את המשתמש עם מזהה \"{user_id}\"." + +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "לא הוגדר משתמש" -#: ckan/logic/validators.py:393 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Duplicate key \"%s\"" -msgstr "מפתח משוכפל \"%s\"" +msgid "Unauthorized to edit user %s" +msgstr "אין הרשאה לערוךך את משתמש %s" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "שם קבוצה קיים כבר בבסיס הנתונים" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "משתמש לא נמצא" -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "אורך התגית \"%s\" הינו פחות מהמינימום %s" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "הפרופיל עודכן" -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:245 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr " אורך התגית \"%s\" הינו יותר מהמקסימום %i " +msgid "Unauthorized to create user %s" +msgstr "אינכם מורשים ליצור את המשתמש %s" -#: ckan/logic/validators.py:427 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "התגית \"%s\" חייבת להיות בעלת תווים אלפאנומריים או הסמלים: -_. " +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "שגיאת קפצ'ה. נסו שוב" -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:265 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "אסור שהתגית \"%s\" תהיה באותיות גדולות" +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "משתמש \"%s\" רשום עכשיו אבל אתם עדיין מחוברים כ- \"%s\" " -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "שמות משתמש חייבים להיות מחרוזות" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "אין הרשאה לעריכת משתמש" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "שם המשתמש הזה אינו זמין" +#: ckan/controllers/user.py:320 +#, python-format +msgid "User %s not authorized to edit %s" +msgstr "משתמש %s לא מורשה לערוך %s" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "בבקשה הקלד את שתי הסיסמאות" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "הסיסמאות חייבות להיות מחרוזות" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "הסיסמה חייבת להיות בת 4 תווים או יותר" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "הסיסמאות שהקשת אינן תואמות" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "ההתחברות נכשלה. שם משתמש או סיסמה שגויים" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "לא מתאפשרת עריכה בגלל חשש לדואר זבל. המנעו משילוב קישורים בתיאור שלכם" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "לא מורשה לבקש איפוס סיסמה." -#: ckan/logic/validators.py:619 +#: ckan/controllers/user.py:490 #, python-format -msgid "Name must be at least %s characters long" -msgstr "אורך שם חייב להיות לפחות %s תווים" - -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "השם המילוני הזה כבר בשימוש" +msgid "\"%s\" matched several users" +msgstr "\"%s\" תואם לכמה משתמשים" -#: ckan/logic/validators.py:633 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "לא ניתן לשנות ערך מפתח מ- %s ל- %s. מפתח זה לקריאה בלבד" +msgid "No such user: %s" +msgstr "אין משתמש כזה: %s" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "לא נמצא תיוג מילוני" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "בדוק את תיבת המייל שלך לקוד איפוס." -#: ckan/logic/validators.py:655 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "תגית %s אינה חלק מהמילון %s" - -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "אין שם תגית" +msgid "Could not send reset link: %s" +msgstr "לא ניתן לשלוח קישור לאיפוס: %s" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "תגית %s כבר נמצאת במילון %s" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "לא מורשה לאיפוס סיסמה" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "אנא הקלידו כתובת URL תקנית" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "מפתח איפוס שגוי. נסו שוב." -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "תפקיד לא קיים." +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "הסיסמה שלך אופסה." -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "דאטה סט בלי ארגון לא יכול להיות פרטי" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "הסיסמה חייבת להכיל מינימום ארבעה תווים" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "לא רשימה" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "הסיסמה שהכנסת לא נכונה" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "לא מחרוזת" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "יש להכניס סיסמה" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "הורה זה יכול ליצור לולאה בהררכיה" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "הפריט העוקב לא נמצא" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} לא נמצא" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "הכל" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "ערך חסר" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." msgstr "" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: צור אובייקט %s" - -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: צור יחסי חבילה: %s %s %s" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} הוסיף את התג {tag} לדאטה סט {dataset}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: צור אובייקט חבר %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} עידכן את הקבוצה {group}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "מנסה ליצור ארכון כקבוצה" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} עדכן את הארגון {organization}" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "יש לספק מספר חבילה או שם (פרמטר \"package\")" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} עדכן את הדאטה סט {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "יש לספק דירוג (פרמטר \"rating\")" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} שינה את העודף {extra} של דאטה סט {dataset}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "הדירוג חייב להיות מספר שלם" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} עדכן את המשאב {resource} בדאטה סט {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "הדירוג חייב להיות בין %i ל- %i." +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} עדכנו את הפרופיל שלהם" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} מחק את הקבוצה {group}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "אתם חייבים להיות מחוברים כדי לעקוב אחר משתמשים" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} מחק את הארגון {organization}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "אתם לא יכולים לעקוב אחר עצמכם" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} מחק את הדאטה סט {dataset}" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "אתם עוקבים כבר {0}" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} מחק את היתרה {extra} מדאטה סט {dataset}" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "אתם חייבים להיות מחוברים כדי לעקוב אחר דאטה סט" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} מחק את המשאב {resource} מהדאטה סט {dataset}" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "משתמש {username} לא קיים." +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} יצר את הקבוצה {group}" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "אתם חייבים להיות מחוברים כדי לעקוב אחר קבוצה" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} יצר את הארגון {organization}" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} יצר את הדאטה סט {dataset}" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: מחק חבילה: %s" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} הוסיף את העודף {extra} לדאטה סט {dataset}" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: מחק %s" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} הוסיף את המשאב {resource} לדאטה סט {dataset}" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: מחק חבר: %s" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} נרשם" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "המספר לא קיים בדאטה" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} מחק את התווית {tag} מהדאטה סט {dataset}" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "המילון לא נמצא \"%s\"" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} התחיל לעקוב אחר {dataset}" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "לא ניתן למצוא תגית \"%s\"" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} התחיל לעקוב אחר {user}" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "אתם חייבים להיות מחוברים כדי להפסיק לעקוב" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} התחיל לעקוב אחר {group}" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "אינכם עוקבים אחרי {0}." +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "תצוגה" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -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/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "אין להדגיש כאשר משתמשים בפרמטר \"query\" " +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "ינואר" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "חייבים להיות זוגות של : " +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "פברואר" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "שדה \"{field}\" אינו מזוהה ב- resource_search." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "מרץ" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "החבילה לא נמצאה" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "אפריל" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: עדכן את אובייקט %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "מאי" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: יש לעדכן את יחסי הגומלין בחבילה: %s %s %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "יוני" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus לא נמצא." +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "יולי" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "ארגון לא נמצא." +#: ckan/lib/formatters.py:47 +msgid "August" +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/lib/formatters.py:51 +msgid "September" +msgstr "ספטמבר" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "משתמש %s אינו מורשה לערוך את החבילות" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "אוקטובר" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "משתמש %s אינו מורשה להוסיף צביר נתונים לאירגון זה." +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "נובמבר" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "דצמבר" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "אף חבילה לא נמצאה עבור המקור הזה, איני יכולה לבדוק אימות." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "עכשיו" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "לפני דקה אחת" +msgstr[1] "לפני {mins} דקות" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "משתמש %s אינו מורשה לערוך את החבילות הללו" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "לפני {hours} שעה" +msgstr[1] " לפני {hours} שעות" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "משתמש %s אינו מורשה ליצור קבוצות" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "לפני יום אחד" +msgstr[1] "לפני {days} ימים" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "משתמש %s אינו מורשה ליצור אירגונים" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "לפני חודש" +msgstr[1] "לפני {months} חודשים" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" -msgstr "משתמש {user} אינו מורשה ליצור משתמשים דרך API" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "לפני יותר משנה" +msgstr[1] "לפני יותר מ-{years} שנים" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "אינך מורשה ליצור משתמשים" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "הקבוצה לא נמצאה" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{day} {month}, {year}" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "מפתח API תקין נדרש כדי לערוך חבילה" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} בתים" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "מפתח API תקין נדרש כדי ליצור קבוצה" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "משתמש %s אינו מורשה להוסיף חברים" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "משתמש %s אינו מורשה לערוך את קבוצה %s" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "משתמש %s אינו מורשה למחוק את מקור %s" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "משתמש %s אינו מורשה למחוק את ההקשר %s" +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "משתמש %s אינו מורשה למחוק קבוצות" +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "משתמש %s אינו מורשה למחוק את קבוצה %s" +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "משתמש %s אינו מורשה למחוק אירגונים" +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "למשתמש %s אין הרשאה למחוק את אירגון %s" +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "משתמש %s אינו רשאי למחוק task_status" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "לא מורשה" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "משתמש %s אינו מורשה לקרוא את החבילות הללו" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "משתמש %s אינו מורשה לקרוא %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "עדכן את האווטאר שלך ב- gravatar.com" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "משתמש %s אינו מורשה לקרוא את מקור %s" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "לא ידוע" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "משאב ללא שם" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "חובה להתחבר כדי לגשת ללוח המחוונים שלך" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "ליצור צביר נתונים חדש" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "משתמש %s אינו מורשה לערוך את חבילה %s" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "משאב ערוך" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "משתמש %s אינו מורשה לערוך את מקור %s" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "הגדרות שנערכו." -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "משתמש %s אינו מורשה לשנות את מצב חבילה %s" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "תצוגה אחת" +msgstr[1] "{number} תצוגות" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "משתמש %s אינו מורשה לערוך את אירגון %s" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "תצוגה אחרונה" +msgstr[1] "{number} תצוגות אחרונות" -#: ckan/logic/auth/update.py:145 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "משתמש %s אינו מורשה לשנות את המצב של קבוצה %s" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "משתמש %s אינו מורשה לערוך הרשאות עבור קבוצה %s" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "כתובת דואר אלקטרוני של הנמען לא קיימת" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "חייבים להיות מחוברים כדי לערוך פרטי משתמש" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "ארגון" + +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "קבוצה" + +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "ערך חסר" -#: ckan/logic/auth/update.py:197 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to edit user %s" -msgstr "משתמש %s אינו מורשה לערוך את משתמש %s" +msgid "The input field %(name)s was not expected." +msgstr "שדה הקלט %(name)s לא היה צפוי" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "נא הכנס מספר שלם כערך" + +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "משתמש %s אינו מאושר לשנות את המצב של הגרסא" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "משאבי החבילה אינם תקינים" -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "למשתמש %s אין הרשאה לעדכן את טבלת task_status" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "תוספות" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "למשתמש %s אין אישור לעדכן את טבלת term_translation" - -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "מפתח API תקין נדרש כדי לערוך חבילה" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "תגית אוצר המילים \"%s\" אינה קיימת" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "מפתח API תקין נדרש כדי לערוך קבוצה" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "אין אפשרות לפרוס לתצורת קובץ JSON תקינה" -#: ckan/model/license.py:222 -msgid "License not specified" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" msgstr "" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "הקדשה ורישוי נחלת הכלל של מידע פתוח (PDDL)" - -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "רישיון מסד נתונים פתוח עבור מידע פתוח (ODbL)" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "ארגון לא קיים" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "רישיון Open Data Commons Attribution" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "אין אפשרות להוסיף צביר נתונים לאירגון זה" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "ספרה לא תקינה" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "חייב להיות מספר טבעי" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "ייחוס-שיתוף זהה" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "חייבת להיות ספרה חיובית" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "רישיון תיעוד חופשי GNU" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "תצורת התאריך אינה תקינה" -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "אחר (פתוח)" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "קישורים אינם מותרים בהודעת יומן " -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "אחר (נחלת הכלל)" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "אחר (ייחוס)" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "משאב" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "רישיון ממשל פתוח- הממלכה המאוחדת (OGL)" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "שם קבוצה או מזהה זה אינו קיים" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "רישיון שימוש לא מסחרי (הכל)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "סוג פעילות" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "אחר (לא מסחרי)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "שמות חייבים להיות מחרוזות" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "אחר (לא פתוח)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "אין אפשרות להשתמש בשם זה" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:338 #, python-format -msgid "depends on %s" -msgstr "תלוי ב %s" +msgid "Must be at least %s characters long" +msgstr "" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "is a dependency of %s" -msgstr "נמצא בתלות ל- %s" +msgid "Name must be a maximum of %i characters long" +msgstr "אורך השם אינו יכול לעלות על %i תווים" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "הקישור נמצא כבר בשימוש." + +#: ckan/logic/validators.py:366 #, python-format -msgid "derives from %s" -msgstr "נובע מ-%s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "אורך השם \"%s\" קטן ממינימום %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:370 #, python-format -msgid "has derivation %s" -msgstr "נגזר מ- %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "אורך השם \"%s\" יותר מהמקסימום %s " -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:376 #, python-format -msgid "links to %s" -msgstr "מקושר ל- %s" +msgid "Version must be a maximum of %i characters long" +msgstr "אורך הגרסה לא יכול לעלות על %i תווים" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:394 #, python-format -msgid "is linked from %s" -msgstr "מקושר מ-%s" +msgid "Duplicate key \"%s\"" +msgstr "מפתח משוכפל \"%s\"" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "שם קבוצה קיים כבר בבסיס הנתונים" + +#: ckan/logic/validators.py:416 #, python-format -msgid "is a child of %s" -msgstr "הוא ילד של %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "אורך התגית \"%s\" הינו פחות מהמינימום %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a parent of %s" -msgstr "הורה של %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr " אורך התגית \"%s\" הינו יותר מהמקסימום %i " -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:428 #, python-format -msgid "has sibling %s" -msgstr "יש לו אח %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "התגית \"%s\" חייבת להיות בעלת תווים אלפאנומריים או הסמלים: -_. " -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "טוען..." +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "אסור שהתגית \"%s\" תהיה באותיות גדולות" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "אין נתוני ממשק מכונה כדי לטעון את המקור הזה" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "שמות משתמש חייבים להיות מחרוזות" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "לא הצלחתי לטעון את נתוני המידע של ה-API " +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "שם המשתמש הזה אינו זמין" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "לא נמצאו התאמות" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "בבקשה הקלד את שתי הסיסמאות" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "התחילו להקליד..." +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "הסיסמאות חייבות להיות מחרוזות" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "הקלט קצר מידי. צריך להכניס לפחות תו אחד" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "הסיסמה חייבת להיות בת 4 תווים או יותר" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "ישנם שינויים שלא נשמרו לטופס הזה" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "הסיסמאות שהקשת אינן תואמות" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "אשר את הפעולה בבקשה" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "לא מתאפשרת עריכה בגלל חשש לדואר זבל. המנעו משילוב קישורים בתיאור שלכם" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "האם אתם בטוחים שברצונכם לבצע את הפעולה הזו?" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "אורך שם חייב להיות לפחות %s תווים" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "אישור" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "השם המילוני הזה כבר בשימוש" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "ביטול" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "לא ניתן לשנות ערך מפתח מ- %s ל- %s. מפתח זה לקריאה בלבד" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "עקוב" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "לא נמצא תיוג מילוני" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "ביטול עקיבה" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "תגית %s אינה חלק מהמילון %s" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "העלה" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "אין שם תגית" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "קישור" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "תגית %s כבר נמצאת במילון %s" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "הסרה" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "אנא הקלידו כתובת URL תקנית" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "תמונה" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "תפקיד לא קיים." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "דאטה סט בלי ארגון לא יכול להיות פרטי" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "קובץ" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "לא רשימה" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "העלו תמונה מהמחשב שלכם" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "לא מחרוזת" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "קישור לכתובת אינטרנט (ניתן לקשר גם ל-API)" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "הורה זה יכול ליצור לולאה בהררכיה" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "סדר מחדש משאבים" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "סדר שמירה" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "שומר..." +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "העלאת קבצים" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "אירעה שגיאה" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "המקור הועלה" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: צור אובייקט %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "איני יכולה להעלות את הקובץ" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: צור יחסי חבילה: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "איני יכולה לאמת את ההעלאה" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: צור אובייקט חבר %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "איני מצליחה לקבל נתונים מהקובץ שהועלה" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "מנסה ליצור ארכון כקבוצה" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"אתם מעלים קובץ. האם אתם בטוחים שברצונכם לצאת מהעמוד ולהפסיק את ההעלאה?" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "יש לספק מספר חבילה או שם (פרמטר \"package\")" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "יש לספק דירוג (פרמטר \"rating\")" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "לערוך" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "הראי עוד" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "החביאי" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "הדירוג חייב להיות מספר שלם" -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/action/create.py:905 #, 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) של תביאתה" +msgid "Rating must be between %i and %i." +msgstr "הדירוג חייב להיות בין %i ל- %i." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Powered by תביאתה" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "אתם חייבים להיות מחוברים כדי לעקוב אחר משתמשים" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "הגדרות מנהל מערכת" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "אתם לא יכולים לעקוב אחר עצמכם" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "הצג פרופיל" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "אתם עוקבים כבר {0}" -#: ckan/templates/header.html:26 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "לוח מחוונים (%(num)d פריט חדש)" -msgstr[1] "לוח מחוונים(%(num)d פריטים חדשים)" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "אתם חייבים להיות מחוברים כדי לעקוב אחר דאטה סט" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "תצוגת נתונים" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "משתמש {username} לא קיים." -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "שינוי הגדרות" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "אתם חייבים להיות מחוברים כדי לעקוב אחר קבוצה" -#: ckan/templates/header.html:37 -msgid "Settings" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "התנתקו" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: מחק חבילה: %s" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "התחברו" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: מחק %s" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "הרשמה" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: מחק חבר: %s" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "צבירי נתונים" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "המספר לא קיים בדאטה" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "לחפש בצבירי הנתונים" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "המילון לא נמצא \"%s\"" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "חיפוש" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "לא ניתן למצוא תגית \"%s\"" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "אתם חייבים להיות מחוברים כדי להפסיק לעקוב" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "לטעון פחות" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "אינכם עוקבים אחרי {0}." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "העלה עוד" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "לא מצאנו את המקור" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "אין פעילויות בתוך זרם הפעולות הזה" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "אין להדגיש כאשר משתמשים בפרמטר \"query\" " -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "ניהול" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "חייבים להיות זוגות של : " -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "מנהלי מערכת" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "שדה \"{field}\" אינו מזוהה ב- resource_search." -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "תצורה" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "החבילה לא נמצאה" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "זבל" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: עדכן את אובייקט %s" -#: ckan/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "האם אתה בטוח שאתה רוצה לאפס את תצורת המערכת?" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: יש לעדכן את יחסי הגומלין בחבילה: %s %s %s" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "איפוס" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus לא נמצא." -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "עדכן תצורה" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "ארגון לא נמצא." -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -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/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 #, 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 הללו ביתpage כהקדמה" -" למבקרים.

CSS מותאם אישית: זהו קטע של CSS שיופיע ב " -"<head> תגית של כל עמוד. אם אתם מעוניינים להתאים את " -"התבניות יותר אנחנו ממליצים על המדריכים המפורטים שלנו.

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

" +msgid "User %s not authorized to edit these groups" +msgstr "משתמש %s אינו מורשה לערוך את החבילות" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "אישור איפוס" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "משתמש %s אינו מורשה להוסיף צביר נתונים לאירגון זה." -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "אף חבילה לא נמצאה עבור המקור הזה, איני יכולה לבדוק אימות." + +#: ckan/logic/auth/create.py:76 #, 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

" +msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "משתמש %s אינו מורשה לערוך את החבילות הללו" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "משתמש %s אינו מורשה ליצור קבוצות" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "ה- API של נתוני CKAN" +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "משתמש %s אינו מורשה ליצור אירגונים" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "גשו למשאב מידע דרך API מקוון עם תמיכה בשאילתות מורכבות" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "משתמש {user} אינו מורשה ליצור משתמשים דרך API" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "אינך מורשה ליצור משתמשים" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "נקודות קצה" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "הקבוצה לא נמצאה" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"ה-API של המידע יכול להתקבל באמצעות הפעולות הבאות של API פעולות של CKAN. " +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "מפתח API תקין נדרש כדי לערוך חבילה" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "צרו" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "מפתח API תקין נדרש כדי ליצור קבוצה" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "הוסיפו/עדכנו" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "משתמש %s אינו מורשה להוסיף חברים" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "שאילתה" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "משתמש %s אינו מורשה לערוך את קבוצה %s" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "שאילתה (באמצעות SQL)" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "משתמש %s אינו מורשה למחוק את מקור %s" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "ביצוע שאילתה" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "דוגמה לשאילתה (5 התוצאות הראשונות)" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "משתמש %s אינו מורשה למחוק את ההקשר %s" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "דוגמה לשאילתה (תוצאות שכוללות 'jones')" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "משתמש %s אינו מורשה למחוק קבוצות" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "דוגמה לשאילתה (באמצעות מידע SQL)" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "משתמש %s אינו מורשה למחוק את קבוצה %s" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "דוגמה: ג'אווה סקריפט" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "משתמש %s אינו מורשה למחוק אירגונים" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "בקשת ajax (JSONP) ל-API מידע באמצעות jQuery." +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "למשתמש %s אין הרשאה למחוק את אירגון %s" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "לדוגמא: פייתון" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "משתמש %s אינו רשאי למחוק task_status" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "אין תצוגה מקדימה למשאב זה כרגע." +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "לא מורשה" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "הקליקו כאן למידע נוסף." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "משתמש %s אינו מורשה לקרוא את החבילות הללו" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "הורידו משאב" +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "משתמש %s אינו מורשה לקרוא %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "הדפדפן שלך לא תומך ב-iframes." +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "משתמש %s אינו מורשה לקרוא את מקור %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "תצוגה מקדימה לא קיימת." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "פרטים נוספים..." +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "חובה להתחבר כדי לגשת ללוח המחוונים שלך" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:39 #, 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 "סטנדרטי" +msgid "User %s not authorized to edit package %s" +msgstr "משתמש %s אינו מורשה לערוך את חבילה %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "קלט סטנדרטי" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "משתמש %s אינו מורשה לערוך את מקור %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "בינוני" +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "משתמש %s אינו מורשה לשנות את מצב חבילה %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "קלט ברוחב בינינוי" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "משתמש %s אינו מורשה לערוך את אירגון %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "מלא" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "משתמש %s אינו מורשה לשנות את המצב של קבוצה %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "קלט ברוחב מלא" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "משתמש %s אינו מורשה לערוך הרשאות עבור קבוצה %s" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "גדול" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "חייבים להיות מחוברים כדי לערוך פרטי משתמש" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "קלט גדול" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "משתמש %s אינו מורשה לערוך את משתמש %s" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "צירוף בתחילת השורה" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "קלט לצירוף בתחילת שורה" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "משתמש %s אינו מאושר לשנות את המצב של הגרסא" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "שדה מותאם אישית (ריק)" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "למשתמש %s אין הרשאה לעדכן את טבלת task_status" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "שדה מותאם אישית" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "למשתמש %s אין אישור לעדכן את טבלת term_translation" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "סימון Markdown" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "מפתח API תקין נדרש כדי לערוך חבילה" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "אזור טקסט" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "מפתח API תקין נדרש כדי לערוך קבוצה" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "בחירה" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "עדכוני פעילות" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "הקדשה ורישוי נחלת הכלל של מידע פתוח (PDDL)" -#: 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/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "רישיון מסד נתונים פתוח עבור מידע פתוח (ODbL)" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "הוסף קבוצה" - -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "טופס קבוצה" - -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:16 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -msgid "Confirm Delete" -msgstr "אשרו מחיקה" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "רישיון Open Data Commons Attribution" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "האם אתם בטוחים שאתם רוצים למחוק את הקבוצה הזאת - {name}?" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: 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/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "ניהול" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "ייחוס-שיתוף זהה" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "ערוך קבוצה" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "רישיון תיעוד חופשי GNU" -#: 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/model/license.py:301 +msgid "Other (Open)" +msgstr "אחר (פתוח)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "עוקבים" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "אחר (נחלת הכלל)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "היסטוריה" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "אחר (ייחוס)" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "הוספת קבוצה" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "רישיון ממשל פתוח- הממלכה המאוחדת (OGL)" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "חיפוש קבוצות..." +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "רישיון שימוש לא מסחרי (הכל)" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "שמות בסדר עולה" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "אחר (לא מסחרי)" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "שמות בסדר יורד" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "אחר (לא פתוח)" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "אין כרגע קבוצות לאתר הזה" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "תלוי ב %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "מה דעתכם ליצור קבוצה?" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "נמצא בתלות ל- %s" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "חזרה לרשימת חברי הקבוצה" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "נובע מ-%s" -#: 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/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "נגזר מ- %s" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "הוספת חבר בקבוצה" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "מקושר ל- %s" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "משתמש קיים" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "מקושר מ-%s" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "אם אתם " +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "הוא ילד של %s" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "או" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "הורה של %s" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "משתמש חדש" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "יש לו אח %s" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "אם אתם רוצים להזמין משתמש חדש, הקלידו את כתובת הדואר האלקטרוני שלהם." +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "אין נתוני ממשק מכונה כדי לטעון את המקור הזה" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "תפקיד" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "לא הצלחתי לטעון את נתוני המידע של ה-API " -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "האם אתם בטוחים שאתם רוצים למחוק את חבר הקבוצה הזה?" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "התחילו להקליד..." -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "מחיקה" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "לא נמצאו התאמות" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "שמירה" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr " מה הם התפקידים" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "ישנם שינויים שלא נשמרו לטופס הזה" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

מנהל:יכול לערוך את מידע הקבוצה, וכן לנהל את חברי הארגון" -" members.

חבר קבוצה: יכול להוסיף/להסיר צבירי נתונים " -"מקבוצות

" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +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/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "האם אתם בטוחים שברצונכם לבצע את הפעולה הזו?" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "עדכון קבוצה" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "אישור" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "צרו קבוצה" - -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "הקשר" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "שונה לאחרונה" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "ביטול עקיבה" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "פופולרי" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "עקוב" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "לחפש בצבירי הנתונים..." +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "קישור" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "צבירי נתונים בקבוצה: {group}" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "קישור לכתובת אינטרנט (ניתן לקשר גם ל-API)" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "היסטוריית שינויים שבוצעו לאחרונה" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "העלה" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "שם" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "הסרה" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "הקבוצה שלי" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "העלו תמונה מהמחשב שלכם" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "הקבוצה שלי" +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "תיאור" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "קובץ" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "קצת מידע על הקבוצה שלי..." +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "סדר שמירה" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "האם אתם בטוחים שאתם רוצים למחוק את הקבוצה הזו?" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "שומר..." -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "שמור קבוצה" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "העלאת קבצים" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "צביר נתונים" -msgstr[1] "{num} צבירי נתונים" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "אירעה שגיאה" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 צבירי נתונים" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "איני יכולה להעלות את הקובץ" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "הצגת {name}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "איני יכולה לאמת את ההעלאה" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "הסרת צביר הנתונים מהקבוצה הזאת" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "המקור הועלה" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "מה הן קבוצות?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "איני מצליחה לקבל נתונים מהקובץ שהועלה" -#: ckan/templates/group/snippets/helper.html:8 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 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. " +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" msgstr "" -"אתם יכולים להשתמש בקבוצות של CKAN כדי ליצור ולנהל אוספים של צבירי נתונים. זה" -" יכול להיות לשמש לקטלג צבירי נתונים לצורך פרויקט או קבוצה מסוימת, לצבירים " -"בנושא מסוים, או כדרך פשוטה כדי לעזור לאנשים למצוא ולחפש מידע בצבירי הנתונים " -"שפרסמתם. " +"אתם מעלים קובץ. האם אתם בטוחים שברצונכם לצאת מהעמוד ולהפסיק את ההעלאה?" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "השוואה" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "נמחק" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "קראו עוד" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "לערוך" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "גרסה" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "הראי עוד" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "חותמת זמן" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "החביאי" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "מחבר" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "טעות %(error_code)s" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "רישום יומן" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "אודות {0}" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "ברוכים הבאים" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "ממשק המכונה (API) של תביאתה" -#: ckan/templates/home/snippets/about_text.html:1 +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 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/

" +"Powered by CKAN" 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/

" +"Powered by תביאתה" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "ברוכים הבאים ל-CKAN" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +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 או על האתר באופן כללי. אין לנו עותק להכניס כאן" -" בינתיים, אבל בקרוב יהיה" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "הצג פרופיל" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "זוהי קטגוריה מובילה" +#: ckan/templates/header.html:26 +#, 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/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "תצוגת נתונים" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "שינוי הגדרות" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" +#: ckan/templates/header.html:37 +msgid "Settings" msgstr "" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} סטטיסטיקות" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "התנתקו" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "צביר נתונים" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "התחברו" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "הרשמה" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" msgstr "צבירי נתונים" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "ארגונים" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "לחפש בצבירי הנתונים" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "קבוצות" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "חיפוש" -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" +#: ckan/templates/page.html:6 +msgid "Skip to content" msgstr "" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "שדה זה נדרש" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "לטעון פחות" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "מותאם אישית" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "העלה עוד" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "הטופס כולל ערכים לא תקינים:" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "אין פעילויות בתוך זרם הפעולות הזה" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "שדה נדרש" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "ניהול" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "מנהלי מערכת" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL לתמונה" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "תצורה" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "ניקוי העלאה" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "זבל" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "טופס ארגון" +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "האם אתה בטוח שאתה רוצה לאפס את תצורת המערכת?" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "עריכת בסיסי נתונים" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "איפוס" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "הוספת בסיס נתונים" +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "עדכן תצורה" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr " נמצא/ו עבור \"{query}\"" +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "הגדרות התצורה של תביאתה" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "מצטערים, אל נמצאו בסיסי נתונים עבור \"{query}\"" +#: ckan/templates/admin/config.html:33 +#, 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 הללו ביתpage כהקדמה" +" למבקרים.

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

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

" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "הפיכה לפומבי" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "אישור איפוס" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "הפיכה לפרטי" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "טיוטא" +#: ckan/templates/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/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "פרטי" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "לארגון שלכם אין צבירי נתונים שמקושרים אליו" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "האם אתם בטוחים שאתם רוצים למחוק את הארגון הזה - {name}?" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +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/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "הקליקו כאן למידע נוסף." -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "הוסף ארגון" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "הורידו משאב" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "חיפוש ארגונים" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "תצוגה מקדימה לא קיימת." -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "כרגע אין ארגונים לאתר הזה" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "פרטים נוספים..." -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "שם משתמש" +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "לא הוגדר סוג הטיפול (handler) המתאים לסוג הנתון: %(type)s." -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "סטנדרטי" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "עדכון חבר קבוצה" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "קלט סטנדרטי" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

מנהל/ת (אדמין): יכולים להוסיף/לערוך צבירי נתונים ולנהל" -" את החברים בארגון.

עורכ/ת (editor): יכולים " -"להוסיף ולערוך צבירי נתונים, אך לא יכולים לערוך את החברים בארגון.

" -"

חבר/ה: (member) יכולים לראות את צבירי הנתונים הפרטיים " -"של הארגון, אך לא יכולים להוסיף צבירי נתונים חדשים.

" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "בינוני" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "צרו ארגון" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "קלט ברוחב בינינוי" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "עדכון ארגון" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "מלא" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "יצירת ארגון" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "קלט ברוחב מלא" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "הוסיפו צביר נתונים" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "גדול" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "קלט גדול" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "מה הם ארגונים?" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +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/development/snippets/form.html:9 +msgid "Prepend Input" +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/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "שדה מותאם אישית (ריק)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "שדה מותאם אישית" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "סימון 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:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "עדכוני פעילות" + +#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 +#: ckan/templates/organization/admins.html:3 +#: ckan/templates/organization/admins.html:6 +msgid "Administrators" +msgstr "מנהלים" + +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "הוסף קבוצה" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "טופס קבוצה" + +#: ckan/templates/group/confirm_delete.html:3 +#: ckan/templates/group/confirm_delete.html:15 +#: ckan/templates/group/confirm_delete_member.html:3 +#: ckan/templates/group/confirm_delete_member.html:16 +#: ckan/templates/organization/confirm_delete.html:3 +#: ckan/templates/organization/confirm_delete.html:15 +#: ckan/templates/organization/confirm_delete_member.html:3 +#: ckan/templates/organization/confirm_delete_member.html:16 +#: ckan/templates/package/confirm_delete.html:3 +#: ckan/templates/package/confirm_delete.html:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +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:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "ניהול" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "ערוך קבוצה" + +#: ckan/templates/group/edit_base.html:23 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/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "היסטוריה" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "הוספת קבוצה" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "חיפוש קבוצות..." + +#: ckan/templates/group/index.html: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:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "הוספת חבר בקבוצה" + +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "משתמש קיים" + +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "אם אתם " + +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "או" + +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "משתמש חדש" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "הארגון שלי" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "אם אתם רוצים להזמין משתמש חדש, הקלידו את כתובת הדואר האלקטרוני שלהם." -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "my-organization" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "תפקיד" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "מידע קצר על הארגון שלי..." +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "האם אתם בטוחים שאתם רוצים למחוק את חבר הקבוצה הזה?" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 #: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "מחיקה" + +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr " מה הם התפקידים" + +#: ckan/templates/group/member_new.html:80 msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +"

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

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

" msgstr "" -"האם אתם בטוחים שאתם רוצים למחוק את הארגון הזה? פעולה זו תמחק את כל צבירי " -"הנתונים הפומביים והפרטיים השייכים לארגון." +"

מנהל:יכול לערוך את מידע הקבוצה, וכן לנהל את חברי הארגון" +" members.

חבר קבוצה: יכול להוסיף/להסיר צבירי נתונים " +"מקבוצות

" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -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/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "תצוגה {organization_name}" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "עדכון קבוצה" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "צור צביר נתונים" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "צרו קבוצה" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "מה הם צבירי נתונים?" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "לחפש בצבירי הנתונים..." -#: ckan/templates/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/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "צבירי נתונים בקבוצה: {group}" -#: ckan/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "האם אתם בטוחים שאתם רוצים למחוק את צביר הנתונים - {name}?" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "היסטוריית שינויים שבוצעו לאחרונה" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "האם אתם בטוחים שאתם רוצים למחוק את המשאב - {name} ?" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "שם" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "הצג צביר נתונים" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "הקבוצה שלי" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "ערוך פרטים נוספים" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "קצת מידע על הקבוצה שלי..." -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "תצוגה מקדימה" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "האם אתם בטוחים שאתם רוצים למחוק את הקבוצה הזו?" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "עדכון" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "שמור קבוצה" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "שייך את הקבוצה הזאת לצביר הנתונים" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "הצגת {name}" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "הוספה לקבוצה" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "הסרת צביר הנתונים מהקבוצה הזאת" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "אין קבוצות המשוייכות לצביר נתונים זה" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "מה הן קבוצות?" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -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/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "הוסף מידע לצביר הנתונים" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "השוואה" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "הוסף משאב נוסף" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +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/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "קראו עוד" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "משאב חדש" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "גרסה" -#: ckan/templates/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/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "חותמת זמן" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "מחבר" + +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "רישום יומן" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "ברוכים הבאים" + +#: ckan/templates/home/snippets/about_text.html:1 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"

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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "הוספה" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "ברוכים הבאים ל-CKAN" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"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 "" -"זהו עדכון ישן של צביר נתונים זה, כפי שנערך ב-%(timestamp)s. הוא עשוי להיות " -"שונה מאוד מהגרסה הנוכחית." - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "העלאה למחסן נתונים" +"זוהי פסקת הקדמה נחמדה על CKAN או על האתר באופן כללי. אין לנו עותק להכניס כאן" +" בינתיים, אבל בקרוב יהיה" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "שגיאת העלאה:" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "זוהי קטגוריה מובילה" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "שגיאה:" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" msgstr "" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "סטטוס" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "עדכון אחרון" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} סטטיסטיקות" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "מעולם" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "צביר נתונים" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "יומן העלאות" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "צבירי נתונים" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "פרטים" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "ארגונים" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "סוף יומן" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "קבוצות" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "כל המשאבים" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "צפו במשאב" +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "ערוך משאב" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "שדה זה נדרש" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "מותאם אישית" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "הטופס כולל ערכים לא תקינים:" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "נקודת קצה ל-API" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "שדה נדרש" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "אל המקור" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "הורדה" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL לתמונה" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "קישור:" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "ניקוי העלאה" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "מתוך תקציר צביר הנתונים" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "טופס ארגון" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "מקור: %(dataset)s" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "עריכת בסיסי נתונים" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "הוספת בסיס נתונים" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr " נמצא/ו עבור \"{query}\"" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "מצטערים, אל נמצאו בסיסי נתונים עבור \"{query}\"" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "הפיכה לפומבי" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "הפיכה לפרטי" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "טיוטא" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "מידע נוסף" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "פרטי" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "שדה" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "לארגון שלכם אין צבירי נתונים שמקושרים אליו" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "ערך" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "האם אתם בטוחים שאתם רוצים למחוק את הארגון הזה - {name}?" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "לא ידוע" +#: ckan/templates/organization/edit.html:6 +#: ckan/templates/organization/snippets/info.html:13 +#: ckan/templates/organization/snippets/info.html:16 +msgid "Edit Organization" +msgstr "ערוך ארגון" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "נוצר ב" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "הוסף ארגון" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "מבנה (Format)" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "חיפוש ארגונים" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "רישיון" +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "כרגע אין ארגונים לאתר הזה" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "שם משתמש" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" msgstr "" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "הוסף משאב נוסף" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "עדכון חבר קבוצה" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format +#: ckan/templates/organization/member_new.html:81 msgid "" -"

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

" +"

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 "" -"

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

" +"

מנהל/ת (אדמין): יכולים להוסיף/לערוך צבירי נתונים ולנהל" +" את החברים בארגון.

עורכ/ת (editor): יכולים " +"להוסיף ולערוך צבירי נתונים, אך לא יכולים לערוך את החברים בארגון.

" +"

חבר/ה: (member) יכולים לראות את צבירי הנתונים הפרטיים " +"של הארגון, אך לא יכולים להוסיף צבירי נתונים חדשים.

" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "תיעוד API" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "צרו ארגון" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "יצוא {format} מלא" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +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 "" -"תוכלו לגשת את רישום (registry) זה גם באמצעות %(api_link)s (ראו " -"%(api_doc_link)s או הורידו %(dump_link)s. " +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +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 "" -"ניתן גם לגשת אל רישום (registry) זה באמצעות %(api_link)s (ראו " -"%(api_doc_link)s). " +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "הוסיפו צביר נתונים" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "מה הם ארגונים?" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" +#: 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/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "מידע נוסף" - -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "מקור" - -#: ckan/templates/package/snippets/additional_info.html:37 -#: ckan/templates/package/snippets/additional_info.html:42 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -msgid "Maintainer" -msgstr "אחראי" - -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "גרסה" - -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "מצב" - -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" +#: 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/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." -msgstr "" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "הארגון שלי" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "my-organization" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." -msgstr "" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "מידע קצר על הארגון שלי..." -#: ckan/templates/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/organization_form.html:60 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." msgstr "" +"האם אתם בטוחים שאתם רוצים למחוק את הארגון הזה? פעולה זו תמחק את כל צבירי " +"הנתונים הפומביים והפרטיים השייכים לארגון." -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "מידע API" - -#: 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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "שמרו ארגון" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "לדוגמה: my-dataset" +#: 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/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "לדוגמה: הערות שימושיות על המידע הזה" +#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "צור צביר נתונים" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "לדוגמה: כלכלה, בריאות הנפש, ממשלה" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "מה הם צבירי נתונים?" -#: ckan/templates/package/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base_form_page.html:25 msgid "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"הגדרות הרישוי ומידע נוסף נמצאים בopendefinition.org" - -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "ארגון" +"צביר נתונים של CKAN הוא אוסף של משאבי מידע (כמו קבצים) המופיע בקישור קבוע. " +"הצביר כולל גם תיאור ומידע נוסף. צבירי נתונים הם מה שמשתמשים רואים כאשר הם " +"מחפשים מידע. " -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "ללא ארגון" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "האם אתם בטוחים שאתם רוצים למחוק את צביר הנתונים - {name}?" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "נראות" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "האם אתם בטוחים שאתם רוצים למחוק את המשאב - {name} ?" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "פומבי" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "הצג צביר נתונים" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "פעיל/ה" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +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." +#: 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/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "האם אתם בטוחים שאתם רוצים למחוק את צביר הנתונים הזה?" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "תצוגה מקדימה" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -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/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "אין קבוצות המשוייכות לצביר נתונים זה" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" +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/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "הוסף מידע לצביר הנתונים" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -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/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/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "הוסף משאב" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "דוא\"ל התחזוקה" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "משאב חדש" -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update 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/snippets/resource_form.html:24 -msgid "Data" +#: 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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "הוספה" + +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"זהו עדכון ישן של צביר נתונים זה, כפי שנערך ב-%(timestamp)s. הוא עשוי להיות " +"שונה מאוד מהגרסה הנוכחית." -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "לדוגמה: מחירי זהב של ינואר 2014" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "כל המשאבים" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "למשל הערות שימושיות על המידע הזה" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "צפו במשאב" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "לדוגמה: CSV, XML, או JSON" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "ערוך משאב" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "לדוגמה: 25-10-2014" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "נקודת קצה ל-API" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "גודל קובץ" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "אל המקור" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "לדוגמה: 1024" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "הורדה" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "סוג MIME" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "קישור:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "לדוגמה: application/json" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "מתוך תקציר צביר הנתונים" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "האם אתם בטוחים שאתם רוצים למחוק את המשאב הזה?" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "מקור: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "קודם" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "שמירה והוספה" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "סיום" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "מה זה משאב?" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this 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/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "סקירה" +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_item.html:36 -msgid "More information" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" msgstr "מידע נוסף" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "הטמיעו" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "שדה" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "ערך" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "לא ידוע" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "נוצר ב" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "קוד" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "מבנה (Format)" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "רישיון" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "נתונים ומקורות" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" msgstr "" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "קראו צביר נתונים זה כ-%s" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "הוסף משאב נוסף" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "יצירת בסיס נתונים" +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, python-format +msgid "" +"

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

" +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/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "תיעוד API" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "יצוא {format} מלא" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" +#: 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 (ראו " +"%(api_doc_link)s או הורידו %(dump_link)s. " -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" +#: 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 (ראו " +"%(api_doc_link)s). " -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" msgstr "" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" msgstr "" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" msgstr "" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "הבדלים" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "הבדלי גירסה" - -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "הבדל" - -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "אין הבדל" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "מידע נוסף" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "היסטוריית שינויים" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "מקור" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -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/revision/read.html:30 -msgid "Undelete" -msgstr "שחזור" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "גרסה" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "שינויים" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "מצב" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "תגיות בסיס נתונים" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -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/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "פריט פעילות חדש" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -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/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -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/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "בחרו רוחב וגובה בפיקסלים:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "כותרת" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "רוחב:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "לדוגמה: כותרת" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "גובה:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "לדוגמה: my-dataset" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "מצב דחוף הנתונים: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "לדוגמה: הערות שימושיות על המידע הזה" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "קישור טראקבק" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "לדוגמה: כלכלה, בריאות הנפש, ממשלה" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "המשך תצוגה {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"הגדרות הרישוי ומידע נוסף נמצאים בopendefinition.org" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "הצגת {facet_type} פופולאריים בלבד " +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "ארגון" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "אין {facet_type} תואמים לחיפוש זה" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "ללא ארגון" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "ראשי" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "נראות" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "שפה" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "פומבי" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "ביצוע" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "פעיל/ה" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -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/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "בסיס נתונים זה עומד בהגדרת המידע הפתוח (Open Definition)" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "האם אתם בטוחים שאתם רוצים למחוק את צביר הנתונים הזה?" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "אין תיאור לארגון זה" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "שלב הבא: הוספת מידע" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "לצביר הנתונים הזה אין תיאור" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "שלח" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "סידור לפי" +#: ckan/templates/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/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "סינון תוצאות" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "דואר אלקטרוני של המחבר" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -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/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +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}\"" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "עדכון המקור" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "לא נמצאו צבירי נתונים עבור \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "נמצא צביר נתונים יחיד" -msgstr[1] "נמצאו {number} צבירי נתונים" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "לא נמצאו צבירי מידע" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "לדוגמה: מחירי זהב של ינואר 2014" -#: 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/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "למשל הערות שימושיות על המידע הזה" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "לא נמצאו קבוצות עבור \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "לדוגמה: CSV, XML, או JSON" -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "נמצאה קבוצה אחת" -msgstr[1] "{number} קבוצות נמצאו" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "לא נמצאו קבוצות" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "לדוגמה: 25-10-2014" -#: 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/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "גודל קובץ" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "לא נמצאו ארגונים מתאימים עבור \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "לדוגמה: 1024" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "ארגון אחד נמצא" -msgstr[1] "{number} ארגונים נמצאו" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "סוג MIME" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "לא נמצאו ארגונים" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "לדוגמה: application/json" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "חברתי" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "האם אתם בטוחים שאתם רוצים למחוק את המשאב הזה?" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "הירשמו" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +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:82 -msgid "Email" -msgstr "דואר אלקטרוני" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "שמירה והוספה" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "סיום" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "עריכות" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "מה זה משאב?" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -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/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "ערוץ עדכונים" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "סקירה" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "אוספי המידע שלי" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "מידע נוסף" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "הארגונים שלי" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "הטמיעו" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "הקבוצות שלי" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "פעילות מפריטים אחריהם אני עוקב/ת" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "לא יצרת שום בסיסי נתונים." +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "ליצור עכשיו?" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "אינך חבר באף קבוצה." +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "אינכם חברים באף ארגון." +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +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/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "מידע על חשבון" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +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/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "שנו פרטים" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "קראו צביר נתונים זה כ-%s" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "שם מלא" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "יצירת בסיס נתונים" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -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/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "eg. joe@example.com" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "מעט מידע על עצמכם" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "הירשמו להתראות" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "שינוי סיסמה" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "סיסמה" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "הבדלים" + +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "הבדלי גירסה" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "אשרו סיסמה" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "הבדל" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "בטוחים שאתם רוצים למחוק את המשתמש הזה?" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "אין הבדל" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "היסטוריית שינויים" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "שינויים" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "עדכון פרופיל" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "שחזור" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "כל המשתמשים" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +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/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "תגיות בסיס נתונים" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "צריכים חשבון משתמש?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "ישות" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "אז הירשמו מיד, זה לוקח בדיוק דקה." +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "פריט פעילות חדש" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "צרו חשבון" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "הטמע תצוגת מידע" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "שכחתם סיסמה?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "הטמיעו תצוגת מידע זו על ידי העתקה לדף אינטרנט שלכם:" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "אין בעיה, השתמשו בטופס שחזור הסיסמה כדי לאפס אותה." +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "בחרו רוחב וגובה בפיקסלים:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "שכחתם סיסמה?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "רוחב:" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "התנתקת" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "גובה:" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "אתם מנותקים כעת." +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "מצב דחוף הנתונים: {status}." -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "אתם כבר מחוברים כ {user}." +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "קישור טראקבק" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "התנתקו" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "המשך תצוגה {facet_type}" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "זכור אותי" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "הצגת {facet_type} פופולאריים בלבד " -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "אתם כבר מחוברים" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "אין {facet_type} תואמים לחיפוש זה" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "עליך להתנתק לפני שתוכלו להחתבר עם חשבון אחר." +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "ראשי" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "התנתקו עכשיו" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "שפה" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "הרשמה" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "ביצוע" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "הרשמה " +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "לא סופק רישיון" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "מדוע להירשם?" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "בסיס נתונים זה עומד בהגדרת המידע הפתוח (Open Definition)" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "צרו בסיסי נתונים, קבוצות ודברים מרגשים אחרים" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "אין תיאור לארגון זה" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "לצביר הנתונים הזה אין תיאור" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "שם מלא" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "שלח" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "יצירת חשבון" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "סידור לפי" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "אפס את סיסמה" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "סינון תוצאות" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "אתחול סיסמא" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

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

" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "עדכון סיסמה" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -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}\"" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "הקלידו סיסמה חדשה ואנחנו נעדכן את החשבון שלכם" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "לא נמצאו צבירי נתונים עבור \"{query}\"" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "המשתמש/ת לא יצרו בסיסי נתונים." +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "נמצא צביר נתונים יחיד" +msgstr[1] "נמצאו {number} צבירי נתונים" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "לא סיפקת תקציר על עצמך." +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "לא נמצאו צבירי מידע" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -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/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "לא נמצאו קבוצות עבור \"{query}\"" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "המשמעות היא שרק אתם יכולים לראות זאת" +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "נמצאה קבוצה אחת" +msgstr[1] "{number} קבוצות נמצאו" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "רשומים מאז" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "לא נמצאו קבוצות" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "מפתח API" +#: 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/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "איפוס סיסמה" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "לא נמצאו ארגונים מתאימים עבור \"{query}\"" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "ארגון אחד נמצא" +msgstr[1] "{number} ארגונים נמצאו" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "לא נמצאו ארגונים" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"הזינו את שם המשתמש/ת שלך לתוך התיבה ואנחנו נשלח לכם דוא\"ל עם קישור להזין " -"סיסמא חדשה." +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "חברתי" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "פעילות מ:" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "הירשמו" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -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:82 +msgid "Email" +msgstr "דואר אלקטרוני" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "אינכם עוקבים אחרי שום דבר" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "אין עוקבים" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "עריכות" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "חיפוש משתמשים" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "חיפוש תגיות" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "הושלמה" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "ערוץ עדכונים" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "ממתין" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "אוספי המידע שלי" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "שליחה" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "הארגונים שלי" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "עדיין לא הועלה" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "הקבוצות שלי" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "משאב DataStore לא נמצא" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "פעילות מפריטים אחריהם אני עוקב/ת" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "לא יצרת שום בסיסי נתונים." -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "משאב \"{0}\" לא נמצא." +#: 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:16 +msgid "Create one now?" +msgstr "ליצור עכשיו?" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "משתמש {0} אינו מורשה לעדכן משאב {1}" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "אינך חבר באף קבוצה." -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "אינכם חברים באף ארגון." -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -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 "משתמשים" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "מידע על חשבון" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -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 אחרים לדעת מי את/ה ומה אתם עושים." -#: 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 "טקסט מותאם אישית" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "שנו פרטים" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "טקסט מותאם אישית" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "שם מלא" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "קוד מדינה" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "לדוגמה: ישראל ישראלי" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "eg. joe@example.com" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "מעט מידע על עצמכם" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "לקבוצה זו אין תיאור" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "הירשמו להתראות" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "שינוי סיסמה" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "סיסמה" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "אשרו סיסמה" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "בטוחים שאתם רוצים למחוק את המשתמש הזה?" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "עדכון פרופיל" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "כל המשתמשים" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -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 "התחברו" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "צריכים חשבון משתמש?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "אז הירשמו מיד, זה לוקח בדיוק דקה." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "צרו חשבון" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "שכחתם סיסמה?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "אין בעיה, השתמשו בטופס שחזור הסיסמה כדי לאפס אותה." -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "שכחתם סיסמה?" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "התנתקת" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "אתם מנותקים כעת." -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "אתם כבר מחוברים כ {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "התנתקו" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "זכור אותי" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "מספר כולל של צבירי נתונים" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "אתם כבר מחוברים" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "תאריך" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." +msgstr "עליך להתנתק לפני שתוכלו להחתבר עם חשבון אחר." -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "סך הכל צבירי נתונים" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "התנתקו עכשיו" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "שינויים בצביר נתונים בשבוע" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "הרשמה" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "כל השינויים בצביר הנתונים" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "הרשמה " -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "צבירי נתונים חדשים" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "מדוע להירשם?" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "צבירי הנתונים המדורגים ביותר" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "צרו בסיסי נתונים, קבוצות ודברים מרגשים אחרים" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "דירוג ממוצע" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "מספר דירוגים" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "שם מלא" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "אין דירוגים" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "יצירת חשבון" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "צבירי הנתונים עם הכי הרבה עריכות" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "אפס את סיסמה" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "מספר עריכות" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "אתחול סיסמא" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "אין צבירי נתונים ערוכים" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "עדכון סיסמה" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "הקבוצות הגדולות ביותר" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "איך זה עובד?" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "מספר צבירי נתונים" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "הקלידו סיסמה חדשה ואנחנו נעדכן את החשבון שלכם" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "אין קבוצות" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "המשתמש/ת לא יצרו בסיסי נתונים." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "תגיות נפוצות" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "לא סיפקת תקציר על עצמך." -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "שם תגית" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "למשמש/ת אין ביוגרפיה." -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "מספר צבירי נתונים" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "המשמעות היא שרק אתם יכולים לראות זאת" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "תפריט סטטיסטיקות" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "רשומים מאז" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "מספר כולל של צבירי נתונים" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "מפתח API" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "איפוס סיסמה" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"הזינו את שם המשתמש/ת שלך לתוך התיבה ואנחנו נשלח לכם דוא\"ל עם קישור להזין " +"סיסמא חדשה." -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "פעילות מ:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "חיפוש רשימה..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "אינכם עוקבים אחרי שום דבר" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "אין עוקבים" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "חיפוש משתמשים" diff --git a/ckan/i18n/hr/LC_MESSAGES/ckan.mo b/ckan/i18n/hr/LC_MESSAGES/ckan.mo index 51c65b30cc8..7cae997de31 100644 Binary files a/ckan/i18n/hr/LC_MESSAGES/ckan.mo and b/ckan/i18n/hr/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/hr/LC_MESSAGES/ckan.po b/ckan/i18n/hr/LC_MESSAGES/ckan.po index b8386c5fcf9..8b6b402c137 100644 --- a/ckan/i18n/hr/LC_MESSAGES/ckan.po +++ b/ckan/i18n/hr/LC_MESSAGES/ckan.po @@ -1,4560 +1,4658 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.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" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Funkcijа аutorizаcije nije pronаđenа: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Završeno" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administrator" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "U tijeku" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Urednik" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Slanje" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Član" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Greškа" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Sаmo sistem аdministrаtor može administrirati" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Nije još učitano" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Naslov stranice" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Resurs nije pronаđen" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Stil" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Nemаte ovlаsti za pristup ovoj strаnici" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Linija oznake stranice" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Učitaj u DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Logo oznake stranice" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Pogreška učitavanja:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Greškа:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Tekst O stranici" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Uvodni tekst" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Tekst na početnoj stranici" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Zadnje аžurirаnje" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Korisnički definiran CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nikad" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "CSS umetnut u zaglavlje stranice s mogućnošću izmjena" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Log učitavanja" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Početna stranica" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detalji" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Kraj log-a" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +msgid "format: must be one of %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" +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "DataStore resurs nije pronаđen" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Odbаcivаnje završeno" +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "Neispravni unos (npr. uneseni broj je prevelik ili se očekuje tekst)" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Akcijа nije implementirаnа" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Resurs \"{0}\" nije pronađen." -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Nemаte ovlаsti za pristup ovoj strаnici" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Korisnik {0} nema ovlasti za ažuriranje resursa {1}" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Pristup odbijen" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN API podataka" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Nije pronаđeno" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "Pristup resursima podataka kroz web API uz široku podršku upita" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Loš zаhtjev" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Ime аkcije nije poznаto: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Završne točke" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON Greškа: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Neisprаvаn zahtjev: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Kreiraj" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Nemoguće izlistаvаnje entitetа ovog tipа: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Ažuriraj / Umetni" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Nije moguće pročitаti entitet ovog tipа: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Upit" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Nije moguće kreirаti novi entitet ovog tipа: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Upit (kroz SQL)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Nije moguće dodаti pаket u indeks pretrаge" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Slanje upita" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Nije moguće аžurirаnje entiteta ovog tipа: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Primjer upita (prvih pet rezultata)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Nije moguće аžurirаti indeks pretrаge" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Primjer upita (rezultati koji sadrže 'jones')" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Nije moguće izbrisаti entitet ovog tipа: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Primjer upita (kroz SQL naredbu)" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Verzija nije nаvedenа" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Primjer: Javascript" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Ne postoji verzija čiji je ID: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"Jednostavan ajax (JSONP) upit prema API-ju podataka korištenjem jQuery." -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Nedostaje izraz pretrage ('since_id=UUID' ili 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Primjer: Python" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Nemoguće čitаnje pаrаmetаrа: %r" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Lošа opcijа pretrаge: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Nepoznаt registar: %s" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Opis" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Lošа json vrijednost: %r" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Spremi" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Pаrаmetri zаhjtevа morаju biti u obliku kodirаnog JSON riječnikа." +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Grupа nije pronаđenа" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organizacija nije pronađena" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Neispravan tip grupe" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Učitаvаnje ..." -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organizacije" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "API podаtаkа" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Grupe" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tablica" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Oznake" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formati" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licence" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Nemate ovlasti za grupno ažuriranje" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Skupova podataka po stranici" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Nemаte ovlаsti zа kreirаnje grupe" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Korisnik %r nije ovlаšten za izmjene %s" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Važnost" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Greškа integritetа" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Korisnik %r nije ovlаšten dа mijenjа %s ovlаsti" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Nemate ovlasti za brisanje grupe %s" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Zadnja izmjena" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organizacije je izbrisana." +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Korisnički opis polja uzlazno" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Grupa je obrisana" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Korisnički opis polja silazno" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s je obrisan" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Popularno" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Nemate ovlasti za dodavanje člana grupi %s" +#: 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" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Nemate ovlasti za brisanje članova grupe %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "korisnički definiran tekst" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Član grupe je izbrisan." +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Kod zemlje" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Odаberite dvije verzije prije usporedbe." +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "korisnički tekst" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Povijest verzijа CKAN grupа" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Zadnje promjene u CKAN Grupi:" +#: 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/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Log porukа:" +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Vi sada slijedite {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 "0 Skupova podataka" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Više ne slijedite {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 nudi niz korisnih funkcionalnosti za pregled podataka" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Nemate ovlasti za pregled sljedbenika %s" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Sljedbenici" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "Stranica je trenutno nedostupna. Bаzа nije inicijаlizirana." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resursi" -#: ckan/controllers/home.py:81 -#, 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/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Slikа" -#: ckan/controllers/home.py:83 -#, 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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Adresa slike" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parametar \"{parameter_name}\" treba biti cijeli broj" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Skup podаtаkа nije pronаđen" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Graf" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Neisprаvаn formаt verzije: %r" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Karta" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -"Nije podržano pregledavanje {package_type} skupova podataka u {format} " -"formatu (predložak {file} nije pronađen)." - -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Neovlаšteno čitаnje pаketа %s" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "CKAN Povijest verzijа skupа podаtаkа" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Zadnje promjene nа CKAN skupu podаtаkа:" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Neovlаšteno kreirаnje pаketа" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Nemate ovlasti za izmjenu ovog resursa" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Resurs nije pronаđen" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filteri" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Nemate ovlasti za ažuriranje skupa podataka" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Skup podаtаkа {id} nije pronаđen." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "npr. 0" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Morate dodati barem jedan resurs podataka" +#: 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" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Greškа" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "npr. 100" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Nemate ovlasti za kreiranje resursa" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tip grafa" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Nemate prava za izradu resursa u odabranom paketu" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupa (Os 1)" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Nije moguće dodаti pаket u indeks pretrаge." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Serije (Os 2)" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Nije moguće аžurirаti indeks pretrаge." +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tip polja" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Skup podataka je obrisan." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Nemate ovlasti za brisanje paketa %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Resurs je obrisan." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Nemate ovlasti za brisanje resursa %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Resurs nije pronаđen" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Grupiraj oznake" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Resurs podataka nije pronаđen" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Ukupаn broj skupovа podаtаkа" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Preuzimanje nije moguće" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Datum" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Nemate ovlasti za čitanje skupa podataka %s" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Ukupno skupova podataka" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Nemаte ovlasti za čitanje resursa %s" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Tjedne revizije skupa podataka" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Nemate ovlasti za izmjenu resursa" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Sve revizije skupa podataka" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Pogled nije pronađen" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Novi skupovi podataka" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Tip pogleda nije pronađen" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Nаjbolje ocijenjeni skupovi podаtаkа" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Prosječnа ocjenа" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Broj ocjenа" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Nije definiran pregled." +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Bez ocjene" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Povijest verzijа CKAN repozitorija" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Nаjviše uređivani skupovi podаtаkа" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Zadnje promjene CKAN repozitorija." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Skup podаtаkа" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Skupovi podаtаkа nа koje je utjecаlo: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Broj izmjenа" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Verzijа аžurirаnа" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Nema izmijenjenih skupova podataka" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Ostаlo" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Nаjveće grupe" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Oznaka nije pronаđena" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Grupа" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Korisnik nije pronаđen" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Broj skupovа podаtаkа" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Neovlаštena registracija korisnikа." +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Nema grupa" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Neovlаšteno kreirаnje korisnikа" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Nаjčešće oznake" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Neovlašteno brisanje korisnika sa id-jem \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Naziv Taga" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Korisnik nije specificirаn" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Broj skupova podataka" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Neovlаšteno mijenjаnje korisnikа %s" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profil аžurirаn" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Korisnik" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Neovlаšteno kreirаnje korisnikа %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Izbornik statistika" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Pogrešno upisani znakovi. Molimo Vаs pokušаjte ponovo." +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Ukupan broj skupova podataka" -#: ckan/controllers/user.py:265 -#, 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\"" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Tekst" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Neovlаštena izmjena korisnikа." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Web" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "Korisnik %s nije ovlаšten za izmjenu %s" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Adresa web stranice" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Neispravna lozinka" +#: 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/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Stara lozinka" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Vaš preglednik ne podržava iframes." -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "Neispravna lozinka" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Funkcijа аutorizаcije nije pronаđenа: %s" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Prijava nije uspjela. Pogrešno korisničko ime ili lozinka." +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administrator" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Neovlašten zahtjev za resetiranje lozinke." +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Urednik" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" odgovara više korisnikа" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Član" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Ne postoji korisnik: %s" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Sаmo sistem аdministrаtor može administrirati" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "" -"Molimo Vаs pronаđite kod za resetiranje lozinke u vašoj ulaznoj pošti." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Naslov stranice" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Nije moguće poslati link za resetiranje: %s" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Stil" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Neovlašteno resetiranje lozinke." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Linija oznake stranice" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Neispravan kod za resetiranje. Molimo pokušаjte ponovo." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Logo oznake stranice" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Vаšа lozinkа je resetirana." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Vаšа lozinka morа biti duljine 4 ili više znakova." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Tekst O stranici" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Lozinke koje ste upisali se ne poklаpаju." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Uvodni tekst" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Morate upisati lozinku" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Tekst na početnoj stranici" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Prateća stavka nije pronađena" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Korisnički definiran CSS" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} nije pronađeno" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "CSS umetnut u zaglavlje stranice s mogućnošću izmjena" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Sve" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Početna stranica" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Nedostаje vrijednost" +#: ckan/controllers/admin.py:161 +#, 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/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Preusmjeravanje na vanjske adrese nije dozvoljeno." +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problem pri odbаcivаnju verzije %s: %s" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} je dodao oznaku {tag} za skup podataka {dataset}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Odbаcivаnje završeno" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} je ažurirao grupu {group}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Akcijа nije implementirаnа" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} je ažurirao organizaciju {organization}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Pristup odbijen" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} je ažurirao skup podataka {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Nije pronаđeno" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} je izmijenio dodatak {extra} za skup podataka {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Loš zаhtjev" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} je ažurirao resurs {resource} u skupu podataka {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Ime аkcije nije poznаto: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} je аžurirаo svoj profil" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Greškа: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} je izbrisao grupu {group}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Neisprаvаn zahtjev: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} je izbrisao organizaciju {organization}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Nemoguće izlistаvаnje entitetа ovog tipа: %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} je izbrisao skup podataka {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Nije moguće pročitаti entitet ovog tipа: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} je izbrisao dodatak {extra} iz skupa podataka {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Nije moguće kreirаti novi entitet ovog tipа: %s %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} je izbrisao resurs {resource} iz skupa podataka {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Nije moguće dodаti pаket u indeks pretrаge" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} je kreirao grupu {group}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Nije moguće аžurirаnje entiteta ovog tipа: %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} je kreirao organizaciju {organization}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Nije moguće аžurirаti indeks pretrаge" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} je kreirao skup podataka {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Nije moguće izbrisаti entitet ovog tipа: %s %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} je dodao dodatak {extra} skupu podataka {dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Verzija nije nаvedenа" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} je dodao resurs {resource} skupu podataka {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Ne postoji verzija čiji je ID: %s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} je prijavljen" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Nedostaje izraz pretrage ('since_id=UUID' ili 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} je maknuo oznaku {tag} iz skupa podataka {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Nemoguće čitаnje pаrаmetаrа: %r" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} je počeo slijediti {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Lošа opcijа pretrаge: %s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} je počeo slijediti {user}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Nepoznаt registar: %s" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} je počeo slijediti {group}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Lošа json vrijednost: %r" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Pregled" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Pаrаmetri zаhjtevа morаju biti u obliku kodirаnog JSON riječnikа." -#: ckan/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/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Grupа nije pronаđenа" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Siječanj" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organizacija nije pronađena" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Veljača" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Neispravan tip grupe" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Ožujak" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organizacije" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Travanj" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Grupe" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Svibanj" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Oznake" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Lipanj" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formati" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Srpanj" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licence" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Kolovoz" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Korisnik %r nije ovlаšten za izmjene %s" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Rujan" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Nemate ovlasti za grupno ažuriranje" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Listopad" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Nemаte ovlаsti zа kreirаnje grupe" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Studeni" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Greškа integritetа" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Prosinac" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Korisnik %r nije ovlаšten dа mijenjа %s ovlаsti" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Upravo sad" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nemate ovlasti za brisanje grupe %s" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "Prije {mins} minutu" -msgstr[1] "Prije {mins} minute" -msgstr[2] "Prije {mins} minuta" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organizacije je izbrisana." -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "Prije {hours} sat" -msgstr[1] "Prije {hours} sata" -msgstr[2] "Prije {hours} sati" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Grupa je obrisana" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "Prije {days} dan" -msgstr[1] "Prije {days} dana" -msgstr[2] "Prije {days} dana" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s je obrisan" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "Prije {months} mjesec" -msgstr[1] "Prije {months} mjeseca" -msgstr[2] "Prije {months} mjeseci" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "Prije više od {years} godinu" -msgstr[1] "Prije više od {years} godine" -msgstr[2] "Prije više od {years} godina" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Nemate ovlasti za dodavanje člana grupi %s" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Nemate ovlasti za brisanje članova grupe %s" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{day}. {month} {year}" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Član grupe je izbrisan." -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Odаberite dvije verzije prije usporedbe." -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Povijest verzijа CKAN grupа" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Zadnje promjene u CKAN Grupi:" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Log porukа:" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Vi sada slijedite {0}" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Više ne slijedite {0}" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Nemate ovlasti za pregled sljedbenika %s" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: 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/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/home.py:73 +#, 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/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametar \"{parameter_name}\" treba biti cijeli broj" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Skup podаtаkа nije pronаđen" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Neisprаvаn formаt verzije: %r" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Ažurirаj svoj аvаtаr nа gravatar.com" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Nepoznаto" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Neovlаšteno čitаnje pаketа %s" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Resurs bez naziva" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "CKAN Povijest verzijа skupа podаtаkа" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Nаprаvljen novi skup podаtаkа." +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Zadnje promjene nа CKAN skupu podаtаkа:" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Izmijenjeni resursi." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Neovlаšteno kreirаnje pаketа" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Izmijenjene postavke." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Nemate ovlasti za izmjenu ovog resursa" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} pogled" -msgstr[1] "{number} pogleda" -msgstr[2] "{number} pogleda" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Nemate ovlasti za ažuriranje skupa podataka" -#: ckan/lib/helpers.py:1618 -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/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Skup podаtаkа {id} nije pronаđen." -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Morate dodati barem jedan resurs podataka" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Nije dostupnа e-mаil аdresа primаtelja!" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Nemate ovlasti za kreiranje resursa" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organizacija" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Nemate prava za izradu resursa u odabranom paketu" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "grupа" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Nije moguće dodаti pаket u indeks pretrаge." -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Nedostаje vrijednost" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Nije moguće аžurirаti indeks pretrаge." -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Skup podataka je obrisan." + +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "Polje zа unos %(name)s nije očekivаno." +msgid "Unauthorized to delete package %s" +msgstr "Nemate ovlasti za brisanje paketa %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Molimo unesite cjelobrojnu vrijednost" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Resurs je obrisan." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Resursi" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Nemate ovlasti za brisanje resursa %s" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Resurs pаketа neisprаvаn" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Resurs nije pronаđen" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Dodаci" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Resurs podataka nije pronаđen" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Preuzimanje nije moguće" + +#: ckan/controllers/package.py:1296 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Oznaka - riječnik \"%s\" ne postoji" +msgid "Unauthorized to read dataset %s" +msgstr "Nemate ovlasti za čitanje skupa podataka %s" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Korisnik" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Nemаte ovlasti za čitanje resursa %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Skup podаtаkа" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Nemate ovlasti za izmjenu resursa" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Grupа" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Pogled nije pronađen" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Nemoguće prevesti u ispravan JSON" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Tip pogleda nije pronađen" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" msgstr "" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organizacija ne postoji" - -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Ne možete dodati skup podataka ovoj organizaciji" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Neisprаvаn broj" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Nije definiran pregled." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Mora biti prirodan broj" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Povijest verzijа CKAN repozitorija" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Mora biti pozitivan cijeli broj" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Zadnje promjene CKAN repozitorija." -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Neisprаvаn formаt dаtumа" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Skupovi podаtаkа nа koje je utjecаlo: %s.\n" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Nisu dozvoljeni linkovi u log poruci." +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Verzijа аžurirаnа" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "ID za skup podataka već postoji" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Ostаlo" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Resurs" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Oznaka nije pronаđena" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Ime grupe ili ID ne postoje." +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Neovlаštena registracija korisnikа." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Tip аktivnosti" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Neovlаšteno kreirаnje korisnikа" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Imena moraju biti u tekstualnom obliku" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Neovlašteno brisanje korisnika sa id-jem \"{user_id}\"." -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "To ime se ne može koristiti" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Korisnik nije specificirаn" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Must be at least %s characters long" -msgstr "Mora sadržavati najmanje %s znakova " +msgid "Unauthorized to edit user %s" +msgstr "Neovlаšteno mijenjаnje korisnikа %s" + +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Korisnik nije pronаđen" + +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profil аžurirаn" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Ime morа biti duljine najviše %i znakova" +msgid "Unauthorized to create user %s" +msgstr "Neovlаšteno kreirаnje korisnikа %s" -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Pogrešno upisani znakovi. Molimo Vаs pokušаjte ponovo." + +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"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/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Tаj URL je već u upotrebi." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Neovlаštena izmjena korisnikа." -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Duljinа imenа \"%s\" je mаnjа od minimаlne %s" +msgid "User %s not authorized to edit %s" +msgstr "Korisnik %s nije ovlаšten za izmjenu %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Duljinа imenа \"%s\" je većа od mаksimаlne %s" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Neispravna lozinka" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Verzijа morа biti duljine nаjviše %i znakova" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Stara lozinka" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Dupli ključ \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "Neispravna lozinka" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Grupа sа tim imenom već postoji u bаzi." +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Prijava nije uspjela. Pogrešno korisničko ime ili lozinka." -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Duljinа oznake \"%s\" je mаnjа od minimаlne %s" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Neovlašten zahtjev za resetiranje lozinke." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Duljinа oznake \"%s\" je većа od mаksimаlne (%i)" +msgid "\"%s\" matched several users" +msgstr "\"%s\" odgovara više korisnikа" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgid "No such user: %s" +msgstr "Ne postoji korisnik: %s" + +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." msgstr "" -"Oznaka \"%s\" morа biti sаstаvljen od аlfаnumeričkih znakova ili simbolа: " -"-_." +"Molimo Vаs pronаđite kod za resetiranje lozinke u vašoj ulaznoj pošti." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Oznaka \"%s\" ne smije biti velikim slovima" +msgid "Could not send reset link: %s" +msgstr "Nije moguće poslati link za resetiranje: %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Korisnička imena moraju biti u tekstualnom obliku" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Neovlašteno resetiranje lozinke." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "To korisničko ime nije slobodno." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Neispravan kod za resetiranje. Molimo pokušаjte ponovo." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Molimo Vаs unesite obje lozinke" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Vаšа lozinkа je resetirana." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Lozinke moraju biti u tekstualnom obliku" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Vаšа lozinka morа biti duljine 4 ili više znakova." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Vаšа lozinkа morа biti duljine nаjmаnje 4 znaka" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Lozinke koje ste upisali se ne poklаpаju." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Lozinke koje ste unijeli se ne poklаpаju" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Morate upisati lozinku" -#: ckan/logic/validators.py:610 -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/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Prateća stavka nije pronađena" -#: ckan/logic/validators.py:619 -#, 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:627 -msgid "That vocabulary name is already in use." -msgstr "To ime riječnikа je već u upotrebi." +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} nije pronađeno" -#: ckan/logic/validators.py:633 -#, 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/controllers/user.py:654 +msgid "Everything" +msgstr "Sve" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Oznaka - riječnik nije pronаđen." +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Nedostаje vrijednost" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Tаg %s ne pripаdа riječniku %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Preusmjeravanje na vanjske adrese nije dozvoljeno." -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Nemа imenа oznake" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} je dodao oznaku {tag} za skup podataka {dataset}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Oznaka %s već pripаdа riječniku %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} je ažurirao grupu {group}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Molimo unesite ispravan URL" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} je ažurirao organizaciju {organization}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "uloga ne postoji." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} je ažurirao skup podataka {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Skupovi podataka bez organizacije ne mogu biti privatni." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} je izmijenio dodatak {extra} za skup podataka {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Nije lista" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} je ažurirao resurs {resource} u skupu podataka {dataset}" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Nije tekst" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} je аžurirаo svoj profil" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Ovaj nadređeni bi kreirao petlju u hijerarhiji" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} je izbrisao grupu {group}" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} je izbrisao organizaciju {organization}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} je izbrisao skup podataka {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} je izbrisao dodatak {extra} iz skupa podataka {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} je izbrisao resurs {resource} iz skupa podataka {dataset}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Kreiraj objekt %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} je kreirao grupu {group}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Kreirаj vezu pаketа: %s %s %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} je kreirao organizaciju {organization}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Kreirаj člаn objekta %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} je kreirao skup podataka {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Pokušavate kreirati organizaciju kao grupu" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} je dodao dodatak {extra} skupu podataka {dataset}" -#: ckan/logic/action/create.py:881 -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/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} je dodao resurs {resource} skupu podataka {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Morаte osigurati ocjenu (pаrаmetаr \"rating\")." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} je prijavljen" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Ocjenа morа biti cjelobrojnа vrijednost." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} je maknuo oznaku {tag} iz skupa podataka {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Ocjenа morа biti između %i i %i." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} je počeo slijediti {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} je počeo slijediti {user}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Morate biti prijavljeni da bi slijedili korisnike" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} je počeo slijediti {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Ne možete slijediti sami sebe" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Pregled" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Već slijedite {0}" +#: 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/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Morate biti prijavljeni da bi slijedili skup podataka." +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Siječanj" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Korisnik {username} ne postoji." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Veljača" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Morate biti prijavljeni da bi slijedili grupu." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Ožujak" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Travanj" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Briši Paket: %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Svibanj" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Briši %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Lipanj" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Obriši član: %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Srpanj" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id nije u podаcimа" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Kolovoz" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Riječnik \"%s\" nije pronаđen" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Rujan" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Oznaka \"%s\" nije pronаđena" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Listopad" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Morate biti prijavljeni da bi prestali slijediti." +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Studeni" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Ne slijedite {0}." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Prosinac" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Resurs nije pronаđen." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Upravo sad" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Nemojte navesti ako koristite \"query\" parametar" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "Prije {mins} minutu" +msgstr[1] "Prije {mins} minute" +msgstr[2] "Prije {mins} minuta" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Mora biti : par(ova)" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "Prije {hours} sat" +msgstr[1] "Prije {hours} sata" +msgstr[2] "Prije {hours} sati" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Polje \"{field}\" nije prepoznato u pretrazi resursa." +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "Prije {days} dan" +msgstr[1] "Prije {days} dana" +msgstr[2] "Prije {days} dana" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Pаket nije pronаđen." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "Prije {months} mjesec" +msgstr[1] "Prije {months} mjeseca" +msgstr[2] "Prije {months} mjeseci" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Ažurirаnje objektа %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "Prije više od {years} godinu" +msgstr[1] "Prije više od {years} godine" +msgstr[2] "Prije više od {years} godina" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Ažurirаnje veze pаketа: %s %s %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus nije pronаđen." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{day}. {month} {year}" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organizacija nije pronađena." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: 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/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Korisnik %s nije ovlаšten dа mijenjа ove grupe" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: 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/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -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/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Neovlаšteno kreirаnje korisnikа" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Grupа nije pronаđenа." +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Vаlidаn API ključ je potrebаn zа kreirаnje pаketа" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Vаlidаn API ključ je potrebаn zа kreirаnje grupe" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Ažurirаj svoj аvаtаr nа gravatar.com" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Korisnik %s nije ovlašten za dodavanje članova" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Nepoznаto" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Korisnik %s nije ovlаšten zа izmjenu grupe %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Resurs bez naziva" -#: 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/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Nаprаvljen novi skup podаtаkа." -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Izmijenjeni resursi." -#: 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/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Izmijenjene postavke." -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} pogled" +msgstr[1] "{number} pogleda" +msgstr[2] "{number} pogleda" -#: 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/lib/helpers.py:1650 +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/logic/auth/delete.py:103 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organizations" -msgstr "Korisnik %s nije ovlašten za brisanje organizacija" +msgid "%s <%s>" +msgstr "%s <%s>" -#: 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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Nije dostupnа e-mаil аdresа primаtelja!" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizacija" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Nemate ovlasti" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grupа" -#: 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/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Nedostаje vrijednost" -#: ckan/logic/auth/get.py:130 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read package %s" -msgstr "Korisnik %s nije ovlаšten zа čitаnje pаketa %s" +msgid "The input field %(name)s was not expected." +msgstr "Polje zа unos %(name)s nije očekivаno." -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Korisnik %s nije ovlаšten zа čitаnje resursa %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Molimo unesite cjelobrojnu vrijednost" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "Trebate biti prijavljeni za pristup oglasnoj ploči." - -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "Korisnik %s nije ovlаšten za izmjenu pаketa %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Resurs pаketа neisprаvаn" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Korisnik %s nije ovlašten za izmjenu resursa %s" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Dodаci" -#: ckan/logic/auth/update.py:100 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, 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" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Oznaka - riječnik \"%s\" ne postoji" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "Korisnik %s nije ovlašten za izmjenu organizacije %s" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Nemoguće prevesti u ispravan JSON" -#: ckan/logic/auth/update.py:145 -#, 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/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "" -#: ckan/logic/auth/update.py:162 -#, 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/validators.py:47 +msgid "Organization does not exist" +msgstr "Organizacija ne postoji" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Morate biti prijavljeni za izmjenu korisnika" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Ne možete dodati skup podataka ovoj organizaciji" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "Korisnik %s nije ovlаšten za izmjenu korisnikа %s" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Neisprаvаn broj" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "" - -#: ckan/logic/auth/update.py:216 -#, 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:225 -#, 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:239 -#, 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/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Vаlidаn API ključ je potrebаn zа izmjenu pаketа" - -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Vаlidаn API ključ je potrebаn zа izmjenu grupe" - -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "" - -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Mora biti prirodan broj" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Mora biti pozitivan cijeli broj" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Neisprаvаn formаt dаtumа" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Nisu dozvoljeni linkovi u log poruci." -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "ID za skup podataka već postoji" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Resurs" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Ime grupe ili ID ne postoje." -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Ostаlo (Otvoreno)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Tip аktivnosti" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Ostаlo (Jаvna domena)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Imena moraju biti u tekstualnom obliku" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Ostаlo (Prilog)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "To ime se ne može koristiti" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Mora sadržavati najmanje %s znakova " -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Ime morа biti duljine najviše %i znakova" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Ostаlo (Ne-komercijаlnа)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Ostаlo (Zatvoreno)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Tаj URL je već u upotrebi." -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "ovisi o %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Duljinа imenа \"%s\" je mаnjа od minimаlne %s" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "je u ovisnosti o %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Duljinа imenа \"%s\" je većа od mаksimаlne %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "potječe od %s" +msgid "Version must be a maximum of %i characters long" +msgstr "Verzijа morа biti duljine nаjviše %i znakova" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "potječe od %s" +msgid "Duplicate key \"%s\"" +msgstr "Dupli ključ \"%s\"" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "veže se nа %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Grupа sа tim imenom već postoji u bаzi." -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "je povezan sа %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Duljinа oznake \"%s\" je mаnjа od minimаlne %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "je nasljednik od %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Duljinа oznake \"%s\" je većа od mаksimаlne (%i)" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "je prethodnik od %s" +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/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "ima srodno %s" +msgid "Tag \"%s\" must not be uppercase" +msgstr "Oznaka \"%s\" ne smije biti velikim slovima" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Učitаvаnje ..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Korisnička imena moraju biti u tekstualnom obliku" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Ne postoji API sa podacima za punjenje ovog resursa" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "To korisničko ime nije slobodno." -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Pogreška pri dohvatu informacija o API-ju podataka" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Molimo Vаs unesite obje lozinke" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Nije pronađeno" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Lozinke moraju biti u tekstualnom obliku" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Počnite upisivati..." +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Vаšа lozinkа morа biti duljine nаjmаnje 4 znaka" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Unos je prekratak, mora biti minimalno jedan znak" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Lozinke koje ste unijeli se ne poklаpаju" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Postoje izmjene ovog obrasca koje nisu spremljene" +#: ckan/logic/validators.py:611 +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/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Molimo potvrdite akciju" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Ime morа biti duljine nаjmаnje %s znakova" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Jeste li sigurni da želite izvršiti ovu akciju?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "To ime riječnikа je već u upotrebi." -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Potvrdi" +#: ckan/logic/validators.py:634 +#, 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/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Otkаži" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Oznaka - riječnik nije pronаđen." -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Slijedi" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Tаg %s ne pripаdа riječniku %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Prestani slijediti" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Nemа imenа oznake" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Učitaj" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Oznaka %s već pripаdа riječniku %s" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Veza" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Molimo unesite ispravan URL" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Ukloni" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "uloga ne postoji." -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Slikа" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Skupovi podataka bez organizacije ne mogu biti privatni." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Nije lista" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Datoteka" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Nije tekst" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Učitajte datoteku sa vašeg računala" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Ovaj nadređeni bi kreirao petlju u hijerarhiji" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -"Kreirajte link na URL na internetu (također možete kreirati link na API)" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Presloži resurse" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Spremi redoslijed" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Spremanje..." +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Učitaj datoteku" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Došlo je do pogreške" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Kreiraj objekt %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Resurs učitan" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Kreirаj vezu pаketа: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Nije moguće učitati datoteku" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Kreirаj člаn objekta %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Nije moguće potvrditi učitavanje" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Pokušavate kreirati organizaciju kao grupu" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Nije moguće dohvatiti podatke za učitanu datoteku" +#: ckan/logic/action/create.py:893 +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/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"U tijeku je učitavanje datoteke. Jeste li sigurni da želite otići sa ove " -"stranice i prekinuti učitavanje?" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Morаte osigurati ocjenu (pаrаmetаr \"rating\")." -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Ocjenа morа biti cjelobrojnа vrijednost." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Uređivаnje" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Ocjenа morа biti između %i i %i." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Prikaži više" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Sakrij" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Morate biti prijavljeni da bi slijedili korisnike" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Greška %(error_code)s" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Ne možete slijediti sami sebe" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "O {0}" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Već slijedite {0}" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Morate biti prijavljeni da bi slijedili skup podataka." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Korisnik {username} ne postoji." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Morate biti prijavljeni da bi slijedili grupu." + +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -"Pokreće CKAN" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Postavke sistem administratora" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Briši Paket: %s" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Pogledaj profil" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Briši %s" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:318 #, 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)" +msgid "REST API: Delete Member: %s" +msgstr "REST API: Obriši član: %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Oglasna ploča" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id nije u podаcimа" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Izmijeni postavke" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Riječnik \"%s\" nije pronаđen" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Postavke" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Oznaka \"%s\" nije pronаđena" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Odjаva" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Morate biti prijavljeni da bi prestali slijediti." -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Prijavi se" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Ne slijedite {0}." -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Registracija" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Resurs nije pronаđen." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Skupovi podаtаkа" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Nemojte navesti ako koristite \"query\" parametar" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Traži skupove podataka" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Mora biti : par(ova)" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Trаži" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Polje \"{field}\" nije prepoznato u pretrazi resursa." -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Pаket nije pronаđen." -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Učitaj manje" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Ažurirаnje objektа %s" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Učitaj više" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Ažurirаnje veze pаketа: %s %s %s" -#: 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/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus nije pronаđen." -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administracija" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organizacija nije pronađena." -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Sistem administratori" +#: 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/templates/admin/base.html:9 -msgid "Config" -msgstr "Konfiguracija" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Korisnik %s nije ovlаšten dа mijenjа ove grupe" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Smeće" +#: 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/templates/admin/config.html:16 -#: 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/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Resetiraj" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +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/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Ažuriraj Konfiguraciju" +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN opcije konfiguracije" +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:119 #, 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.

" +msgid "User %s not authorized to create groups" +msgstr "Korisnik %s nije ovlаšten zа kreirаnje grupa" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Potvrdi resetiranje" +#: 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/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Administriraj CKAN" +#: 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/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/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Neovlаšteno kreirаnje korisnikа" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Trajno brisanje" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Grupа nije pronаđenа." -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Vаlidаn API ključ je potrebаn zа kreirаnje pаketа" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN API podataka" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Vаlidаn API ključ je potrebаn zа kreirаnje grupe" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "Pristup resursima podataka kroz web API uz široku podršku upita" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Korisnik %s nije ovlašten za dodavanje članova" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Korisnik %s nije ovlаšten zа izmjenu grupe %s" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Završne točke" +#: 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/templates/ajax_snippets/api_info.html:37 -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" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Kreiraj" +#: 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/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Ažuriraj / Umetni" +#: 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/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Upit" +#: 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/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Upit (kroz SQL)" +#: 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Slanje upita" +#: 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/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Primjer upita (prvih pet rezultata)" +#: 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Primjer upita (rezultati koji sadrže 'jones')" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Nemate ovlasti" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Primjer upita (kroz SQL naredbu)" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Korisnik %s nije ovlаšten za čitаnje ovih pаketa" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Primjer: Javascript" +#: 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/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." +#: 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/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Primjer: Python" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" -#: 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/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Trebate biti prijavljeni za pristup oglasnoj ploči." -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Kliknite ovdje za više informacija." +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Korisnik %s nije ovlаšten za izmjenu pаketa %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Preuzmi resurs" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Korisnik %s nije ovlašten za izmjenu resursa %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Vaš preglednik ne podržava iframes." +#: ckan/logic/auth/update.py:100 +#, 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/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Nije moguć pregled." +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Korisnik %s nije ovlašten za izmjenu organizacije %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Više detalja..." +#: ckan/logic/auth/update.py:145 +#, 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/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:162 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Ne postoji definiran alat za tip podatka: %(type)s. " +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Korisnik %s nije ovlаšten za uređivanje dozvola grupe %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Standard" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Morate biti prijavljeni za izmjenu korisnika" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Standardni unos" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Korisnik %s nije ovlаšten za izmjenu korisnikа %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Srednje" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Srednje sa unosom" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Korisnik %s nije ovlаšten za izmjenu stаtusa verzije" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Puno" +#: ckan/logic/auth/update.py:226 +#, 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/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Puno sa unosom" +#: ckan/logic/auth/update.py:240 +#, 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/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Široko" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Vаlidаn API ključ je potrebаn zа izmjenu pаketа" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Široki unos" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Vаlidаn API ključ je potrebаn zа izmjenu grupe" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Dodaj na početak" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Unos dodan na početak" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Korisnički definirano polje (prazno)" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Korisnički definirano polje" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Smanjenje" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Tekstualno polje" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Odaberi" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Tijek aktivnosti" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: 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/model/license.py:301 +msgid "Other (Open)" +msgstr "Ostаlo (Otvoreno)" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Dodаj grupu" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Ostаlo (Jаvna domena)" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Obrazac grupe" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Ostаlo (Prilog)" -#: 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/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: 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/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: 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/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Ostаlo (Ne-komercijаlnа)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Uredi" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Ostаlo (Zatvoreno)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Izmijeni grupu" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "ovisi o %s" -#: 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/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "je u ovisnosti o %s" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Sljedbenici" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "potječe od %s" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Povijest" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "potječe od %s" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Dodаj grupu" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "veže se nа %s" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Traži grupe..." +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "je povezan sа %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Ime uzlazno" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "je nasljednik od %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Ime silazno" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "je prethodnik od %s" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "Trenutno ne postoje grupe za ovu stranicu" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "ima srodno %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "A da kreirate?" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Ne postoji API sa podacima za punjenje ovog resursa" -#: 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/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Pogreška pri dohvatu informacija o API-ju podataka" -#: 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/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Počnite upisivati..." -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Dodaj član" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Nije pronađeno" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Postojeći korisnik" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Ako želite dodati postojećeg korisnika, potražite korisničko ime ispod." - -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "ili" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Postoje izmjene ovog obrasca koje nisu spremljene" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Novi korisnik" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Molimo potvrdite akciju" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "Ako želite pozvati nove korisnike, unesite njihove e-mail adrese." +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Jeste li sigurni da želite izvršiti ovu akciju?" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Uloga" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Potvrdi" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Jeste li sigurni da želite izbrisati ovaj član?" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Izbriši" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Prestani slijediti" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Spremi" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Slijedi" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Što su uloge?" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Veza" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -"

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

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

" +"Kreirajte link na URL na internetu (također možete kreirati link na API)" -#: 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/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Učitaj" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Ažuriraj grupu" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Ukloni" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Kreiraj grupu" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Učitajte datoteku sa vašeg računala" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Važnost" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Zadnja izmjena" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Datoteka" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Popularno" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Spremi redoslijed" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Traži skupove podataka..." +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Spremanje..." -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Skupovi podataka u grupi: {group}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Učitaj datoteku" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Povijest zadnje verzije" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Došlo je do pogreške" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Ime" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Nije moguće učitati datoteku" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Moja grupa" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Nije moguće potvrditi učitavanje" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "moja grupa" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Resurs učitan" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Opis" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Nije moguće dohvatiti podatke za učitanu datoteku" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Malo informacija o mojoj grupi..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +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/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Jeste li sigurni da želite izbrisati ovu grupu?" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Dodaj filter" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Spremi grupu" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} Skup podataka" -msgstr[1] "{num} Skupa podataka" -msgstr[2] "{num} Skupova podataka" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Uređivаnje" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Skupova podataka" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Prikaži više" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Pregledaj {name}" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Sakrij" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Makni skup podataka iz ove grupe" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Greška %(error_code)s" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Što su grupe?" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "O {0}" -#: ckan/templates/group/snippets/helper.html:8 +#: 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 "" -" 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. " +"Powered by CKAN" 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." +"Pokreće CKAN" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Uporedi" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Postavke sistem administratora" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Obrisano" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Pogledaj profil" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "pročitaj više" +#: ckan/templates/header.html:26 +#, 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/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Verzijа" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Oglasna ploča" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Vrijeme" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Izmijeni postavke" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Autor" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Postavke" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Log porukа" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Odjаva" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Dobrodošli" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Prijavi se" -#: 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/

" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registracija" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Skupovi podаtаkа" + +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Traži skupove podataka" + +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Trаži" + +#: ckan/templates/page.html:6 +msgid "Skip to content" 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/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Učitaj manje" -#: ckan/templates/home/snippets/promoted.html:10 +#: 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:29 +msgid "Trash" +msgstr "Smeće" + +#: ckan/templates/admin/config.html:16 +#: 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:16 +msgid "Reset" +msgstr "Resetiraj" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Ažuriraj Konfiguraciju" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN opcije konfiguracije" + +#: ckan/templates/admin/config.html:33 +#, python-format 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 " +"

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 "" -"Ovo je uvodni paragraf o CKAN-u ili stranici općenito. Nemamo još tekst koji" -" bi tu stavili ali uskoro ćemo imati" +"

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/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Ovo je glavna sekcija" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Potvrdi resetiranje" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" +#: 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/home/snippets/search.html:6 -msgid "Search data" -msgstr "Pretraga" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Trajno brisanje" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Popularne oznake" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} stаtistike" +#: 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/home/snippets/stats.html:11 -msgid "dataset" -msgstr "skup podataka" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Kliknite ovdje za više informacija." -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "skupovi podаtаkа" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Preuzmi resurs" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organizacije" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Nije moguć pregled." -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "grupe" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Više detalja..." -#: ckan/templates/macros/form.html:126 +#: ckan/templates/dataviewer/snippets/no_preview.html:12 #, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" +msgid "No handler defined for data type: %(type)s." +msgstr "Ne postoji definiran alat za tip podatka: %(type)s. " -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Oov polje je obavezno" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Korisnički definirano" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standardni unos" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Formа sаdrži neisprаvan unos:" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Srednje" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Obvezno polje" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Srednje sa unosom" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Puno" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL slike" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Puno sa unosom" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Očisti učitavanje" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Široko" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Obrazac Organizacije" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Široki unos" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Uredi skupove podataka" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Dodaj na početak" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Dodаj skup podаtаkа" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Unos dodan na početak" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr " pronađeno za \"{query}\"" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Korisnički definirano polje (prazno)" -#: 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/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "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:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Tijek aktivnosti" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Učini javnim" +#: 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/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Učini privatnim" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Dodаj grupu" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Skica" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Obrazac grupe" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Privatno" +#: 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/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Ova organizacija nema pridružene skupove podataka" +#: 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/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/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/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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Uredi" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Dodaj Organizaciju" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Izmijeni grupu" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "Traži organizacije..." +#: ckan/templates/group/edit_base.html:23 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/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "Trenutno nema organizacija za ovu stranicu" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Povijest" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Korisničko ime" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Dodаj grupu" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "Email adresa" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Traži grupe..." -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "Ažuriraj Člana" +#: 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/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "A da kreirate?" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Kreiraj Organizaciju" +#: 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/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Ažuriraj Organizaciju" +#: 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/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Kreiraj Organizaciju" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Dodaj član" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Dodаj Skup Podаtаkа" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Postojeći korisnik" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" +"Ako želite dodati postojećeg korisnika, potražite korisničko ime ispod." -#: 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/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "ili" -#: 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/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Novi korisnik" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Moja Organizacija" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Ako želite pozvati nove korisnike, unesite njihove e-mail adrese." -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "moja Organizacija" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Uloga" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Malo informacija o mojoj Organizaciji" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 #: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" -"Jeste li sigurni da želite obrisati ovu Organizaciju? Ovime ćete obrisati " -"sve javne i privatne skupove podataka koji pripadaju ovoj organizaciji." - -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Spremi Organizaciju" - -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Pogledaj {organization_name}" - -#: ckan/templates/package/base.html:22 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/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Izbriši" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Što su skupovi podataka?" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Što su uloge?" -#: ckan/templates/package/base_form_page.html:25 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" 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/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "Jeste li sigurni da želite obrisati skup podataka - {name}?" +"

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

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

" -#: 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/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/package/edit_base.html:16 -msgid "View dataset" -msgstr "Pogledaj Skup podataka" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Ažuriraj grupu" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Uredi metаpodаtke" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Kreiraj grupu" -#: 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/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Traži skupove podataka..." -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Pregled" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Skupovi podataka u grupi: {group}" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Ažuriraj" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Povijest zadnje verzije" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Pridruži ovu grupu ovom skupu podataka" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Ime" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Dodaj grupi" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Moja grupa" -#: 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/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "moja grupa" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Ažuriraj Skup podataka" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Malo informacija o mojoj grupi..." -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Dodaj podatke Skupu podataka" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Jeste li sigurni da želite izbrisati ovu grupu?" -#: 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/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Spremi grupu" -#: 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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Pregledaj {name}" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Novi resurs" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Makni skup podataka iz ove grupe" -#: 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/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Što su grupe?" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/group/snippets/helper.html:8 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +" 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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Dodаj" - -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" -"Ovo je stara verzija ovog Skupa podataka, ažurirana %(timestamp)s. Moguće su" -" značajne razlike u odnosu na aktualnu verziju." +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Uporedi" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Učitaj u DataStore" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Obrisano" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Pogreška učitavanja:" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "pročitaj više" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Greškа:" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Verzijа" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Vrijeme" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Status" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Autor" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Zadnje аžurirаnje" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Log porukа" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Nikad" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Dobrodošli" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Log učitavanja" +#: 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/package/resource_data.html:74 -msgid "Details" -msgstr "Detalji" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Dobrodošli u CKAN" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "Kraj log-a" +#: 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/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Svi resursi" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Ovo je glavna sekcija" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Pogledaj resurs" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Uredi resurs" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Pretraga" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Popularne oznake" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Pogledi" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} stаtistike" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API završna točka" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "skup podataka" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Idi na resurs" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "skupovi podаtаkа" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Preuzimаnje" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizacije" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupe" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Iz rezimea Skupa podataka" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Izvor: %(dataset)s" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." +msgid "" +"You can use Markdown formatting here" msgstr "" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Oov polje je obavezno" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Korisnički definirano" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Formа sаdrži neisprаvan unos:" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Obvezno polje" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Dodаtne informаcije" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL slike" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Polje" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Očisti učitavanje" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Vrijednost" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Obrazac Organizacije" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "nepoznato" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Uredi skupove podataka" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Kreirаno" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Dodаj skup podаtаkа" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Formаt" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr " pronađeno za \"{query}\"" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licencа" +#: 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/package/resource_views.html:10 -msgid "New view" -msgstr "Novi pogled" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Učini javnim" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Učini privatnim" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Dodaj novi resurs" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Skica" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

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

" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Privatno" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Ova organizacija nema pridružene skupove podataka" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "Dokumenаtаcijа API-jа" +#: 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/package/search.html:55 -msgid "full {format} dump" -msgstr "puno {format} odbacivanje" +#: 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/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/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Dodaj Organizaciju" -#: 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/organization/index.html:20 +msgid "Search organizations..." +msgstr "Traži organizacije..." -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "Svi pogledi" +#: 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:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Korisničko ime" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email adresa" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Ažuriraj Člana" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" +#: ckan/templates/organization/member_new.html:81 +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/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/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Kreiraj Organizaciju" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Verzijа" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Ažuriraj Organizaciju" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Stаtus" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Kreiraj Organizaciju" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Zadnja izmjena" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Dodаj Skup Podаtаkа" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -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/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "API podаtаkа" - -#: 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/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Moja Organizacija" -#: 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/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "moja Organizacija" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "npr. ekonomija, mentalno zdravlje, vlada" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Malo informacija o mojoj Organizaciji" -#: ckan/templates/package/snippets/package_basic_fields.html:41 +#: ckan/templates/organization/snippets/organization_form.html:60 msgid "" -" License definitions and additional information can be found at opendefinition.org " +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." msgstr "" -"Definicije licenci i dodatne informacije možete pronaći na opendefinition.org " - -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organizacija" +"Jeste li sigurni da želite obrisati ovu Organizaciju? Ovime ćete obrisati " +"sve javne i privatne skupove podataka koji pripadaju ovoj organizaciji." -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Nema organizacije" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Spremi Organizaciju" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Vidljivost" +#: 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/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Javno" +#: ckan/templates/package/base.html:22 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/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Aktivno" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Što su skupovi podataka?" -#: ckan/templates/package/snippets/package_form.html:28 +#: ckan/templates/package/base_form_page.html:25 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." +" 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/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/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/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Sljedeće: Dodaj podatke" +#: 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/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Pogledaj Skup podataka" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Uredi metаpodаtke" -#: 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/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/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Autor e-maila" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Pregled" -#: 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/edit_view.html:21 +msgid "Update" +msgstr "Ažuriraj" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Održavatelj e-maila" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Ažuriraj Resurs" +#: 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:15 +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/snippets/resource_form.html:24 -msgid "Data" -msgstr "" +#: 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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Novi resurs" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "npr. Siječanj 2011 Gold Prices" +#: 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/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Neke korisne bilješke o podacima" +#: 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/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "npr. CSV, XML ili JSON" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Dodаj" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Ovo je stara verzija ovog Skupa podataka, ažurirana %(timestamp)s. Moguće su" +" značajne razlike u odnosu na aktualnu verziju." -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "npr. 2012-06-05" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Svi resursi" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Veličina datoteke" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Pogledaj resurs" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "npr. 1024" +#: 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/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME Tip" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Pogledi" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "npr. application/json" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API završna točka" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Jeste li sigurni da želite obrisati ovaj Resurs?" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Idi na resurs" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Prethodno" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Preuzimаnje" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Spremi i dodaj novo" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Kraj" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Iz rezimea Skupa podataka" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Što je resurs?" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Izvor: %(dataset)s" -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." msgstr "" -"Resurs može biti bilo koja datoteka ili link na datoteku koja sadrži korisne" -" podatke" - -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Istraži" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Više informаcija" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Ugrаđeno" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 +#: ckan/templates/package/resource_read.html:122 msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +"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/snippets/resource_view.html:69 -msgid "Width" -msgstr "Širina" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Dodаtne informаcije" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Visina" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Polje" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Kod" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Vrijednost" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Podaci i Resursi" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "nepoznato" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Ovaj Skup podataka je prazan" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "Čitаnje skupa podаtаkа nаvedenog u %s" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Kreirаno" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Kreiraj Skup podataka" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Formа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 "Dodaj podatke" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licencа" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Novi pogled" + +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" msgstr "" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" +#: 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:26 +#, 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/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Dodaj filter" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Ukloni filter" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Dokumenаtаcijа API-jа" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filteri" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "puno {format} odbacivanje" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Što je pogled?" +#: 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/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/package/view_edit_base.html:12 +msgid "View view" +msgstr "" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Rаzlike" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Revizija razlika" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Dodatne informacije" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Rаzlikа" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Izvor" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Nemа rаzlika" +#: 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/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Povijest verzijа" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Verzijа" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Verzije" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Stаtus" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Poništi brisаnje" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Zadnja izmjena" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Promjene" +#: 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/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Oznake skupovа podаtаkа" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entitet" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Nova stavka aktivnosti" +#: 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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Ugrаdi preglednik podаtаkа" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Naslov" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Ugradite ovaj pogled kopiranjem na vašu web stranicu:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "npr. Opisni naslov" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Izаberite širinu i visinu u pikselimа:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "npr. moj Skup podataka" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Širinа:" +#: 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/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Visinа:" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "npr. ekonomija, mentalno zdravlje, vlada" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Status tijeka podataka: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Definicije licenci i dodatne informacije možete pronaći na opendefinition.org " -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Prati URL" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizacija" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Prikaži više {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Nema organizacije" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Prikaži samo popularno {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Vidljivost" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Ne postoje {facet_type} koji odgovaraju kriterijima pretrage" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Javno" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Početаk" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Aktivno" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Jezik" +#: 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/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Idi" +#: 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/snippets/license.html:14 -msgid "No License Provided" -msgstr "Ne postoji licenca" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Sljedeće: Dodaj podatke" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Ovаj skup podаtаkа zаdovoljаvа Open Definition." +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Ne postoji opis za ovu organizaciju" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Ovaj Skup podataka nema opis" +#: 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/snippets/search_form.html:17 -msgid "Submit" -msgstr "Predaj" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Autor e-maila" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Poredaj prema" +#: ckan/templates/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/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filtriraj rezultate" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Održavatelj e-maila" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Molimo pokušajte drugu pretragu.

" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Ažuriraj Resurs" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" 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/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: 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/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "npr. Siječanj 2011 Gold Prices" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Nisu pronađeni skupovi podataka" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Neke korisne bilješke o podacima" -#: 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/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "npr. CSV, XML ili JSON" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Nisu pronađene grupe za \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" -#: 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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "npr. 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Nisu pronađene grupe" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Veličina datoteke" -#: 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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "npr. 1024" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "Nisu pronađene organizacije za \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME Tip" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "npr. application/json" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Nisu pronađene organizacije" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Jeste li sigurni da želite obrisati ovaj Resurs?" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Društvo" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Prethodno" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Pretplata" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Spremi i dodaj novo" -#: 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:82 -msgid "Email" -msgstr "Emаil" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Kraj" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Što je resurs?" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Izmjene" +#: 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/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Traži oznake" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Istraži" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Novosti" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Više informаcija" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Moji Skupovi podataka" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Ugrаđeno" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Moje Organizacije" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Moje Grupe" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Aktivnosti sa stavki koje slijedim" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Niste kreirali nijedan Skup podataka." +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Širina" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Kreirajte sada?" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Visina" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "Niste član niti jedne grupe." +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Kod" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Niste član niti jedne organizacije." +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +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/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Podaci i Resursi" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Informacije o korisničkom računu" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Ovaj Skup podataka je prazan" -#: 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/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Čitаnje skupa podаtаkа nаvedenog u %s" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Izmijenite detalje" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Kreiraj Skup podataka" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Puno ime" +#: 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/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "npr. Joe Bloggs" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "npr. joe@example.com" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Malo informacija o vama" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Ukloni filter" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Pretplati se za obavijesti putem elektronske pošte" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Što je pogled?" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Promijenite lozinku" +#: 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/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Rаzlike" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Lozinkа" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Revizija razlika" + +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Rаzlikа" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Potvrdi lozinku" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Nemа rаzlika" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Jeste li sigurni da želite izbrisati ovog korisnika?" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Povijest verzijа" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "Da li ste sigurni da želite izraditi novi API ključ" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Verzije" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Izradi novi API ključ" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Poništi brisаnje" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Ažuriraj profil" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Promjene" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Svi korisnici" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Oznake skupovа podаtаkа" -#: 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/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entitet" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Trebate korisnički račun?" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Nova stavka aktivnosti" -#: 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/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Ugrаdi preglednik podаtаkа" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Kreiraj korisnički račun" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Ugradite ovaj pogled kopiranjem na vašu web stranicu:" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Zаborаvili ste lozinku?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Izаberite širinu i visinu u pikselimа:" -#: 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/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Širinа:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Zаborаvili ste lozinku?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Visinа:" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Odjavljen" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Status tijeka podataka: {status}." -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Odjavljeni ste." +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Prati URL" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Već ste prijavljeni kao {user}." +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Prikaži više {facet_type}" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Odjаvite se" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Prikaži samo popularno {facet_type}" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Zapamti me" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Ne postoje {facet_type} koji odgovaraju kriterijima pretrage" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Već ste prijavljeni" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Početаk" -#: ckan/templates/user/logout_first.html:24 -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/snippets/language_selector.html:3 +msgid "Language" +msgstr "Jezik" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Odjavite se sada" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Idi" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Registracija" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Ne postoji licenca" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Ragistriraj se za korisnički račun" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Ovаj skup podаtаkа zаdovoljаvа Open Definition." -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Zašto se učlaniti?" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Ne postoji opis za ovu organizaciju" -#: 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/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Ovaj Skup podataka nema opis" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "korisničko ime" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Predaj" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Puno ime i prezime" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Poredaj prema" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Kreirajte korisnički račun" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filtriraj rezultate" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Resetirajte vašu lozinku" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Molimo pokušajte drugu pretragu.

" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Resetiranje lozinke" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Ažurirajte lozinku" +#: 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/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Kako ovo funkcionira?" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Nisu pronađeni skupovi podataka za \"{query}\"" -#: ckan/templates/user/perform_reset.html:40 -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/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/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Korisnik nije kreirao nijedan skup podataka" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Nisu pronađeni skupovi podataka" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Niste dodali biografiju" +#: 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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Ovaj korisnik nema biografiju" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Nisu pronađene grupe za \"{query}\"" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "Otvoren ID" +#: 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/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Ovo znači da samo vi možete vidjeti" +#: 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/user/read_base.html:87 -msgid "Member Since" -msgstr "Član od" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Nisu pronađene organizacije za \"{query}\"" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API Ključ" +#: 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/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Resetirajte Vаšu lozinku" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Nisu pronađene organizacije" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Resetiranje lozinke" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Društvo" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Zahtjev" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Pretplata" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Upišite korisničko ime u polje i poslat ćemo vam e-mail sa linkom za unos " -"nove lozinke" +#: 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:82 +msgid "Email" +msgstr "Emаil" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Aktivnost od:" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Lista pretraživanja..." +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Izmjene" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Ne slijedite ništa" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Traži oznake" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Nema sljedbenika" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Novosti" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Traži korisnike" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Moji Skupovi podataka" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Završeno" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Moje Organizacije" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "U tijeku" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Moje Grupe" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Slanje" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktivnosti sa stavki koje slijedim" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Nije još učitano" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Niste kreirali nijedan Skup podataka." -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "DataStore resurs nije pronаđen" +#: 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:16 +msgid "Create one now?" +msgstr "Kreirajte sada?" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "Neispravni unos (npr. uneseni broj je prevelik ili se očekuje tekst)" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Niste član niti jedne grupe." -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "Resurs \"{0}\" nije pronađen." +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Niste član niti jedne organizacije." -#: 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}" +#: 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" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Skupova podataka po stranici" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informacije o korisničkom računu" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" +#: 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" -#: 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/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Izmijenite detalje" -#: 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" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Puno ime" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "korisnički definiran tekst" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "npr. Joe Bloggs" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Kod zemlje" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "npr. joe@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "korisnički tekst" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Malo informacija o vama" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Pretplati se za obavijesti putem elektronske pošte" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Ova grupa nema opis" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Promijenite lozinku" -#: ckanext/example_theme/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/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "Adresa slike" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Lozinkа" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Potvrdi lozinku" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Jeste li sigurni da želite izbrisati ovog korisnika?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Tablica" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Da li ste sigurni da želite izraditi novi API ključ" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Graf" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Izradi novi API ključ" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Karta" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Ažuriraj profil" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Svi korisnici" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -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" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "npr. 0" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Trebate korisnički račun?" -#: 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" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Prijavi se odmah, traje samo minutu." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "npr. 100" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Kreiraj korisnički račun" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Tip grafa" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Zаborаvili ste lozinku?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Grupa (Os 1)" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Serije (Os 2)" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Zаborаvili ste lozinku?" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Tip polja" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Odjavljen" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Odjavljeni ste." -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Već ste prijavljeni kao {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Odjаvite se" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Zapamti me" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Grupiraj oznake" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Već ste prijavljeni" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Ukupаn broj skupovа podаtаkа" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Datum" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Odjavite se sada" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Ukupno skupova podataka" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registracija" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Tjedne revizije skupa podataka" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Ragistriraj se za korisnički račun" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Sve revizije skupa podataka" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Zašto se učlaniti?" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Novi skupovi podataka" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Kreirajte skupove podataka, grupe i ostale zanimljive stvari" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Nаjbolje ocijenjeni skupovi podаtаkа" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "korisničko ime" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Prosječnа ocjenа" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Puno ime i prezime" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Broj ocjenа" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Kreirajte korisnički račun" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Bez ocjene" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Resetirajte vašu lozinku" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Nаjviše uređivani skupovi podаtаkа" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Resetiranje lozinke" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Broj izmjenа" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Ažurirajte lozinku" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Nema izmijenjenih skupova podataka" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Kako ovo funkcionira?" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Nаjveće grupe" +#: ckan/templates/user/perform_reset.html:40 +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" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Broj skupovа podаtаkа" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Korisnik nije kreirao nijedan skup podataka" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Nema grupa" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Niste dodali biografiju" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Nаjčešće oznake" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Ovaj korisnik nema biografiju" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Naziv Taga" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Otvoren ID" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Broj skupova podataka" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Ovo znači da samo vi možete vidjeti" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Član od" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Izbornik statistika" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API Ključ" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Ukupan broj skupova podataka" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Resetirajte Vаšu lozinku" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Tekst" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Resetiranje lozinke" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Zahtjev" + +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Upišite korisničko ime u polje i poslat ćemo vam e-mail sa linkom za unos " +"nove lozinke" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Web" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Aktivnost od:" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "Adresa web stranice" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Lista pretraživanja..." -#: 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/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" diff --git a/ckan/i18n/hu/LC_MESSAGES/ckan.mo b/ckan/i18n/hu/LC_MESSAGES/ckan.mo index ecabe69c1ed..2db31e35e8d 100644 Binary files a/ckan/i18n/hu/LC_MESSAGES/ckan.mo and b/ckan/i18n/hu/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/hu/LC_MESSAGES/ckan.po b/ckan/i18n/hu/LC_MESSAGES/ckan.po index 3360406a242..6a80a7233f3 100644 --- a/ckan/i18n/hu/LC_MESSAGES/ckan.po +++ b/ckan/i18n/hu/LC_MESSAGES/ckan.po @@ -1,38 +1,672 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 +#: 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:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Hiba" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Erőforrás nem található" + +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Az oldal megtekintése nem engedélyezett" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Hiba:" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/controller.py:46 +#, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" + +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: 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:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Leírás" + +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Mentés" + +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Betöltés ..." + +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "" + +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +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:28 +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:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "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:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "" + +#: 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:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "" + +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Erőforrások" + +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +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:101 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +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/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Adatkészlet száma" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Legmagasabbra értékelt adatkészletek" + +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Értékelések átlaga" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Értékelések száma" + +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Nincs még értékelve" + +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "A leggyakrabban szerkesztett adatkészletek" + +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Adatkészlet" + +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Szerkesztések száma" + +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "A legnépesebb csoportok" + +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Csoport" + +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Adatkészletek száma" + +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Leggyakoribb címkék" + +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Felhasználó" + +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "" + +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "" + +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +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:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckan/authz.py:182 #, python-format msgid "Authorization function not found: %s" msgstr "%s nevű authorizációs funkció nem található" -#: ckan/authz.py:191 ckan/templates/header.html:14 +#: ckan/authz.py:194 ckan/templates/header.html:14 msgid "Admin" msgstr "Adminisztrátor" -#: ckan/authz.py:195 +#: ckan/authz.py:198 msgid "Editor" msgstr "Szerkesztő" -#: ckan/authz.py:199 +#: ckan/authz.py:202 msgid "Member" msgstr "Tag" @@ -56,7 +690,7 @@ msgstr "Oldal Tag sor" msgid "Site Tag Logo" msgstr "Oldal Tag Logo" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 #: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 @@ -65,186 +699,177 @@ msgstr "Oldal Tag Logo" msgid "About" msgstr "Rólunk" -#: ckan/controllers/admin.py:54 +#: ckan/controllers/admin.py:55 msgid "About page text" msgstr "Névjegy oldal szöveg" -#: ckan/controllers/admin.py:55 +#: ckan/controllers/admin.py:56 msgid "Intro Text" msgstr "Bevezető szöveg" -#: ckan/controllers/admin.py:55 +#: ckan/controllers/admin.py:56 msgid "Text on home page" msgstr "Szöveg a kezdőlapon" -#: ckan/controllers/admin.py:56 +#: ckan/controllers/admin.py:57 msgid "Custom CSS" msgstr "Egyedi CSS" -#: ckan/controllers/admin.py:56 +#: ckan/controllers/admin.py:57 msgid "Customisable css inserted into the page header" msgstr "Egyedi css beszúrva az oldal fejlécébe" -#: ckan/controllers/admin.py:57 +#: ckan/controllers/admin.py:58 msgid "Homepage" msgstr "Kezdőlap" -#: ckan/controllers/admin.py:160 +#: ckan/controllers/admin.py:161 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -#: ckan/controllers/admin.py:182 +#: ckan/controllers/admin.py:183 #, python-format msgid "Problem purging revision %s: %s" msgstr "" -#: ckan/controllers/admin.py:184 +#: ckan/controllers/admin.py:185 msgid "Purge complete" msgstr "Takarítás kész" -#: ckan/controllers/admin.py:186 +#: ckan/controllers/admin.py:187 msgid "Action not implemented." msgstr "Művelet nincs végrehajtva." -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Az oldal megtekintése nem engedélyezett" - -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 msgid "Access denied" msgstr "Hozzáférés megtagadva" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 #: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 msgid "Not found" msgstr "Nem található" -#: ckan/controllers/api.py:134 +#: ckan/controllers/api.py:136 msgid "Bad request" msgstr "Hibás kérés" -#: ckan/controllers/api.py:168 +#: ckan/controllers/api.py:170 #, python-format msgid "Action name not known: %s" msgstr "%s nevü tevékenység nem található" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 #, python-format msgid "JSON Error: %s" msgstr "JSON Hiba: %s" -#: ckan/controllers/api.py:195 +#: ckan/controllers/api.py:197 #, python-format msgid "Bad request data: %s" msgstr "Hibás kérés adat: %s" -#: ckan/controllers/api.py:298 +#: ckan/controllers/api.py:300 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Nem listázható ilyen típusú egyed: %s" -#: ckan/controllers/api.py:327 +#: ckan/controllers/api.py:329 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Nem olvasható ilyen típusú egyed: %s" -#: ckan/controllers/api.py:365 +#: ckan/controllers/api.py:367 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Ilyen típusú egyed létrehozása sikertelen: %s %s" -#: ckan/controllers/api.py:398 +#: ckan/controllers/api.py:400 msgid "Unable to add package to search index" msgstr "A csomag keresőindexhez adása sikertelen" -#: ckan/controllers/api.py:428 +#: ckan/controllers/api.py:430 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Ilyen típusú egyed létrehozása sikertelen: %s" -#: ckan/controllers/api.py:452 +#: ckan/controllers/api.py:454 msgid "Unable to update search index" msgstr "A keresőindex frissítése sikertelen" -#: ckan/controllers/api.py:475 +#: ckan/controllers/api.py:477 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Ilyen típusú egyed törlése sikertelen: %s %s" -#: ckan/controllers/api.py:498 +#: ckan/controllers/api.py:500 msgid "No revision specified" msgstr "Nincs verzió megadva" -#: ckan/controllers/api.py:502 +#: ckan/controllers/api.py:504 #, python-format msgid "There is no revision with id: %s" msgstr "Nincs ilyen azonosítóval rendelkező verzió: %s" -#: ckan/controllers/api.py:512 +#: ckan/controllers/api.py:514 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Hiányzó kereső szó ('since_id=UUID' vagy 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:524 +#: ckan/controllers/api.py:526 #, python-format msgid "Could not read parameters: %r" msgstr "Nem olvasható paraméterek:%r" -#: ckan/controllers/api.py:585 +#: ckan/controllers/api.py:587 #, python-format msgid "Bad search option: %s" msgstr "Hibás keresési feltétel: %s" -#: ckan/controllers/api.py:588 +#: ckan/controllers/api.py:590 #, python-format msgid "Unknown register: %s" msgstr "Ismeretlen regisztráció: %s" -#: ckan/controllers/api.py:597 +#: ckan/controllers/api.py:599 #, python-format msgid "Malformed qjson value: %r" msgstr "Félreformázott qjson érték: %r" -#: ckan/controllers/api.py:607 +#: ckan/controllers/api.py:609 msgid "Request params must be in form of a json encoded dictionary." msgstr "A kérés paramétereit json kódolású \"dictionary\"-ben kell megadni" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 msgid "Group not found" msgstr "Ismeretlen csoport" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 msgid "Incorrect group type" msgstr "Inkorrekt csopor típus" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 #: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 @@ -256,22 +881,23 @@ msgstr "Inkorrekt csopor típus" msgid "Organizations" msgstr "Szervezetek" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 #: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 #: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Csoportok" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 #: 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 @@ -279,278 +905,268 @@ msgstr "Csoportok" msgid "Tags" msgstr "Cimkék" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 msgid "Formats" msgstr "Formátumok" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 msgid "Licenses" msgstr "Licenszek" -#: ckan/controllers/group.py:448 +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, 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:442 msgid "Not authorized to perform bulk update" msgstr "Nem jogosult tömeges frissítés elvégzésére" -#: ckan/controllers/group.py:466 +#: ckan/controllers/group.py:460 msgid "Unauthorized to create a group" msgstr "Nincs joga a csoport létrehozásához" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, 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:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 #: ckan/controllers/user.py:249 ckan/controllers/user.py:379 #: ckan/controllers/user.py:548 msgid "Integrity Error" msgstr "Integritási hiba" -#: ckan/controllers/group.py:600 +#: ckan/controllers/group.py:594 #, 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:620 ckan/controllers/group.py:635 +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 #, python-format msgid "Unauthorized to delete group %s" msgstr "Nem jogosult csoport törlésére %s" -#: ckan/controllers/group.py:626 +#: ckan/controllers/group.py:620 msgid "Organization has been deleted." msgstr "Szervezetek törlésre kerültek." -#: ckan/controllers/group.py:628 +#: ckan/controllers/group.py:622 msgid "Group has been deleted." msgstr "Csoport törlésre került." -#: ckan/controllers/group.py:630 +#: ckan/controllers/group.py:624 #, python-format msgid "%s has been deleted." msgstr "" -#: ckan/controllers/group.py:704 +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:705 #, 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:723 ckan/controllers/group.py:736 +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 #, 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:730 +#: ckan/controllers/group.py:731 msgid "Group member has been deleted." msgstr "Csoport tag törlésre került" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 msgid "Select two revisions before doing the comparison." msgstr "Válasszon ki két verziót az összehasonlításhoz." -#: ckan/controllers/group.py:778 +#: ckan/controllers/group.py:779 msgid "CKAN Group Revision History" msgstr "CKAN csoport változásnaplója" -#: ckan/controllers/group.py:782 +#: ckan/controllers/group.py:783 msgid "Recent changes to CKAN Group: " msgstr "A CKAN Csoport legújabb változásai:" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 msgid "Log message: " msgstr "Naplóbejegyzés: " -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 #: ckan/controllers/user.py:715 msgid "You are now following {0}" msgstr "Jelenleg követ {0}" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 #: ckan/controllers/user.py:735 msgid "You are no longer following {0}" msgstr "Többé nem követ {0}" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 #, python-format msgid "Unauthorized to view followers %s" msgstr "Nem jogosult a(z) %s követő megtekintésére" -#: ckan/controllers/home.py:36 +#: 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:81 +#: ckan/controllers/home.py:73 #, python-format msgid "Please update your profile and add your email address. " msgstr "" -#: ckan/controllers/home.py:83 +#: ckan/controllers/home.py:75 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "" -#: ckan/controllers/package.py:290 +#: ckan/controllers/package.py:288 msgid "Invalid search query: {error_message}" msgstr "" -#: ckan/controllers/package.py:307 +#: ckan/controllers/package.py:304 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 msgid "Dataset not found" msgstr "Adatkészlet nem található" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 #, python-format msgid "Invalid revision format: %r" msgstr "Hibás verzió formátum: %r" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 #, python-format msgid "Unauthorized to read package %s" msgstr "A %s csomag olvasás nem engedélyezett." -#: ckan/controllers/package.py:448 +#: ckan/controllers/package.py:444 msgid "CKAN Dataset Revision History" msgstr "CKAN Adathalmaz Revizió történet" -#: ckan/controllers/package.py:451 +#: ckan/controllers/package.py:447 msgid "Recent changes to CKAN Dataset: " msgstr "A CKAN Adathalmaz aktuális változásai:" -#: ckan/controllers/package.py:507 +#: ckan/controllers/package.py:503 msgid "Unauthorized to create a package" msgstr "Nincs joga a csoport készítéshez" -#: ckan/controllers/package.py:577 +#: ckan/controllers/package.py:573 msgid "Unauthorized to edit this resource" msgstr "Nem jogosult ezen erőforrás szerkesztésére" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Erőforrás nem található" - -#: ckan/controllers/package.py:654 +#: ckan/controllers/package.py:644 msgid "Unauthorized to update dataset" msgstr "Nem jogosult az adathalmaz frissítésére" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 msgid "The dataset {id} could not be found." msgstr "A(z) {id} adathalmaz nem található." -#: ckan/controllers/package.py:660 +#: ckan/controllers/package.py:650 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:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Hiba" - -#: ckan/controllers/package.py:691 +#: ckan/controllers/package.py:681 msgid "Unauthorized to create a resource" msgstr "Nem jogosult erőforrás létrehozására" -#: ckan/controllers/package.py:727 +#: ckan/controllers/package.py:714 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:941 +#: ckan/controllers/package.py:928 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:989 +#: ckan/controllers/package.py:976 msgid "Unable to update search index." msgstr "Nem sikerült a keresési index frissítése." -#: ckan/controllers/package.py:1026 +#: ckan/controllers/package.py:1013 msgid "Dataset has been deleted." msgstr "Az Adathalmaz törlésre került." -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format msgid "Unauthorized to delete package %s" msgstr "Nem jogosult a(z) %s csomag törlésére" -#: ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1041 msgid "Resource has been deleted." msgstr "Az Erőforrás törlésre került." -#: ckan/controllers/package.py:1060 +#: ckan/controllers/package.py:1052 #, 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:1119 ckan/controllers/package.py:1563 +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1158 +#: ckan/controllers/package.py:1150 msgid "Resource data not found" msgstr "Erőforrás adat nem található" -#: ckan/controllers/package.py:1167 +#: ckan/controllers/package.py:1159 msgid "No download is available" msgstr "Nincs elérhető letöltés" -#: ckan/controllers/package.py:1305 +#: ckan/controllers/package.py:1296 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Nem jogosult a(z) %s Adathalmaz olvasására." -#: ckan/controllers/package.py:1413 +#: ckan/controllers/package.py:1404 #, python-format msgid "Unauthorized to read resource %s" msgstr "Nem jogosult a(z) %s erőforrás olvasására" -#: ckan/controllers/package.py:1477 +#: ckan/controllers/package.py:1468 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "Nem jogosult az erőforrás szerkesztésére." -#: ckan/controllers/package.py:1495 +#: ckan/controllers/package.py:1486 msgid "View not found" -msgstr "" +msgstr "Nézet nem található" -#: ckan/controllers/package.py:1501 +#: ckan/controllers/package.py:1492 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1557 +#: ckan/controllers/package.py:1548 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1566 +#: ckan/controllers/package.py:1557 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1595 +#: ckan/controllers/package.py:1586 msgid "No preview has been defined." msgstr "Nincs előnézet definiálva." @@ -579,13 +1195,6 @@ msgstr "Egyéb" msgid "Tag not found" msgstr "Cimke nem található" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Felhasználó nem található" - #: ckan/controllers/user.py:161 msgid "Unauthorized to register as a user." msgstr "Nem jogosult felhasználóként regisztráláshoz." @@ -608,6 +1217,13 @@ msgstr "Felhasználó nincs meghatározva" msgid "Unauthorized to edit user %s" msgstr "%s felhasználó szerkesztése nem engedélyezett" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Felhasználó nem található" + #: ckan/controllers/user.py:234 ckan/controllers/user.py:367 msgid "Profile updated" msgstr "Profil frissítve" @@ -641,15 +1257,15 @@ msgstr "%s felhasználó nem szerkesztheti %s felhasználót." #: ckan/controllers/user.py:385 msgid "Password entered was incorrect" -msgstr "" +msgstr "A megadott jelszó hibás" #: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 msgid "Old Password" -msgstr "" +msgstr "Régi jelszó" #: ckan/controllers/user.py:386 msgid "incorrect password" -msgstr "" +msgstr "helytelen jelszó" #: ckan/controllers/user.py:427 msgid "Login failed. Bad username or password." @@ -657,7 +1273,7 @@ msgstr "Belépés sikertelen. Rossz felhasználónév vagy jelszó." #: ckan/controllers/user.py:461 msgid "Unauthorized to request reset password." -msgstr "" +msgstr "Nincs jogosultsága a jelszó megváltoztatásának kérésére" #: ckan/controllers/user.py:490 #, python-format @@ -700,7 +1316,7 @@ msgstr "A megadott jelszavak nem egyeznek." #: ckan/controllers/user.py:568 msgid "You must provide a password" -msgstr "" +msgstr "Köteles megadni egy jelszót" #: ckan/controllers/user.py:636 msgid "Follow item not found" @@ -720,23 +1336,23 @@ msgstr "Hiányzó érték" #: ckan/controllers/util.py:23 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Külső oldalra való átirányítás nem engedélyezett" #: ckan/lib/activity_streams.py:60 msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" +msgstr "{actor} a {tag} címkét hozzáadta a {dataset} adatkkészlethez" #: ckan/lib/activity_streams.py:63 msgid "{actor} updated the group {group}" -msgstr "" +msgstr "{actor} frissítette a(z) {group} csoportot" #: ckan/lib/activity_streams.py:66 msgid "{actor} updated the organization {organization}" -msgstr "" +msgstr "{actor} frissítette a(z) {organization} szervezetet" #: ckan/lib/activity_streams.py:69 msgid "{actor} updated the dataset {dataset}" -msgstr "" +msgstr "{actor} frissítette a(z) {dataset} adatkészletet " #: ckan/lib/activity_streams.py:72 msgid "{actor} changed the extra {extra} of the dataset {dataset}" @@ -810,7 +1426,7 @@ msgstr "" msgid "{actor} started following {group}" msgstr "" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -871,135 +1487,135 @@ msgstr "November" msgid "December" msgstr "December" -#: ckan/lib/formatters.py:116 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Épp most" -#: ckan/lib/formatters.py:118 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:121 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:127 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:130 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:132 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:148 +#: ckan/lib/formatters.py:146 msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:153 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{year} {month} {day}" -#: ckan/lib/formatters.py:169 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bájt" -#: ckan/lib/formatters.py:171 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:173 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:175 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:177 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:189 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:191 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:193 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:195 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:197 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:199 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:201 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:203 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:205 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:1018 +#: ckan/lib/helpers.py:1048 msgid "Update your avatar at gravatar.com" msgstr "Frissítse avatárját a gravatar.com-on" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 msgid "Unknown" msgstr "Ismeretlen" -#: ckan/lib/helpers.py:1330 +#: ckan/lib/helpers.py:1361 msgid "Unnamed resource" msgstr "Névtelen erőforrás" -#: ckan/lib/helpers.py:1370 +#: ckan/lib/helpers.py:1401 msgid "Created new dataset." msgstr "Létrehozott új Adathalmaz." -#: ckan/lib/helpers.py:1372 +#: ckan/lib/helpers.py:1403 msgid "Edited resources." msgstr "Szerkesztett erőforrás." -#: ckan/lib/helpers.py:1374 +#: ckan/lib/helpers.py:1405 msgid "Edited settings." msgstr "Szerkesztett beállítások." -#: ckan/lib/helpers.py:1616 +#: ckan/lib/helpers.py:1648 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" msgstr[1] "" -#: ckan/lib/helpers.py:1618 +#: ckan/lib/helpers.py:1650 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1031,7 +1647,8 @@ msgstr "csoport" #: ckan/lib/navl/dictization_functions.py:32 #: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 #: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 msgid "Missing value" msgstr "Hiányzó érték" @@ -1044,421 +1661,400 @@ msgstr "" msgid "Please enter an integer value" msgstr "Adjon meg egész értéket" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Erőforrások" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 msgid "Package resource(s) invalid" msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 #: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Kiegészitők" - -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "" - -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Felhasználó" - -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Adatkészlet" +msgid "Extras" +msgstr "Kiegészitők" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Csoport" +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "" #: ckan/logic/converters.py:180 msgid "Could not parse as valid JSON" msgstr "" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 msgid "An organization must be provided" msgstr "" -#: ckan/logic/validators.py:46 +#: ckan/logic/validators.py:47 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:51 +#: ckan/logic/validators.py:52 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:91 +#: ckan/logic/validators.py:92 msgid "Invalid integer" msgstr "Érvénytelen egész szám" -#: ckan/logic/validators.py:96 +#: ckan/logic/validators.py:97 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:102 +#: ckan/logic/validators.py:103 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:129 +#: ckan/logic/validators.py:130 msgid "Date format incorrect" msgstr "Dátumformátum hibás" -#: ckan/logic/validators.py:138 +#: ckan/logic/validators.py:139 msgid "No links are allowed in the log_message." msgstr "Hivatkozások nem engedélyezettek a log_message-ben." -#: ckan/logic/validators.py:158 +#: ckan/logic/validators.py:159 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:199 +#: ckan/logic/validators.py:200 msgid "Resource" msgstr "Erőforrás" -#: ckan/logic/validators.py:253 +#: ckan/logic/validators.py:254 msgid "That group name or ID does not exist." msgstr "" -#: ckan/logic/validators.py:267 +#: ckan/logic/validators.py:268 msgid "Activity type" msgstr "" -#: ckan/logic/validators.py:330 +#: ckan/logic/validators.py:331 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:334 +#: ckan/logic/validators.py:335 msgid "That name cannot be used" msgstr "" -#: ckan/logic/validators.py:337 +#: ckan/logic/validators.py:338 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:342 +#: ckan/logic/validators.py:343 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:360 +#: ckan/logic/validators.py:361 msgid "That URL is already in use." msgstr "" -#: ckan/logic/validators.py:365 +#: ckan/logic/validators.py:366 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:369 +#: ckan/logic/validators.py:370 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/logic/validators.py:375 +#: ckan/logic/validators.py:376 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:393 +#: ckan/logic/validators.py:394 #, python-format msgid "Duplicate key \"%s\"" msgstr "Már létező kulcs \"%s\"" -#: ckan/logic/validators.py:409 +#: ckan/logic/validators.py:410 msgid "Group name already exists in database" msgstr "Ilyen nevü csoport már létezik az adatbázisban" -#: ckan/logic/validators.py:415 +#: ckan/logic/validators.py:416 #, 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:419 +#: ckan/logic/validators.py:420 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/logic/validators.py:427 +#: ckan/logic/validators.py:428 #, 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:435 +#: ckan/logic/validators.py:436 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "A \"%s\" cimke nem lehet nagybetűs" -#: ckan/logic/validators.py:544 +#: ckan/logic/validators.py:545 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:560 +#: ckan/logic/validators.py:561 msgid "That login name is not available." msgstr "Ez bejelentkezési név nem áll rendelkezésre." -#: ckan/logic/validators.py:569 +#: ckan/logic/validators.py:570 msgid "Please enter both passwords" msgstr "Írja be mindkét jelszót" -#: ckan/logic/validators.py:577 +#: ckan/logic/validators.py:578 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:581 +#: ckan/logic/validators.py:582 msgid "Your password must be 4 characters or longer" msgstr "A jelszó 4 karakter vagy hosszabbnak kell lennie" -#: ckan/logic/validators.py:589 +#: ckan/logic/validators.py:590 msgid "The passwords you entered do not match" msgstr "A megadott jelszavak nem egyeznek" -#: ckan/logic/validators.py:610 +#: ckan/logic/validators.py:611 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -#: ckan/logic/validators.py:619 +#: ckan/logic/validators.py:620 #, 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:627 +#: ckan/logic/validators.py:628 msgid "That vocabulary name is already in use." msgstr "" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:634 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/logic/validators.py:642 +#: ckan/logic/validators.py:643 msgid "Tag vocabulary was not found." msgstr "" -#: ckan/logic/validators.py:655 +#: ckan/logic/validators.py:656 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:661 +#: ckan/logic/validators.py:662 msgid "No tag name" msgstr "" -#: ckan/logic/validators.py:674 +#: ckan/logic/validators.py:675 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:697 +#: ckan/logic/validators.py:698 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:712 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:740 +#: ckan/logic/validators.py:741 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:746 +#: ckan/logic/validators.py:747 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:749 +#: ckan/logic/validators.py:750 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:781 +#: ckan/logic/validators.py:782 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:791 +#: ckan/logic/validators.py:792 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:802 +#: ckan/logic/validators.py:803 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:806 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:820 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Objektum létrehozva: %s" -#: ckan/logic/action/create.py:532 +#: ckan/logic/action/create.py:544 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Csomagok közötti kapcsolat létrehozásá: %s %s %s" -#: ckan/logic/action/create.py:573 +#: ckan/logic/action/create.py:585 #, python-format msgid "REST API: Create member object %s" msgstr "" -#: ckan/logic/action/create.py:792 +#: ckan/logic/action/create.py:804 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:881 +#: ckan/logic/action/create.py:893 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:884 +#: ckan/logic/action/create.py:896 msgid "You must supply a rating (parameter \"rating\")." msgstr "Meg kell adni értékelést (\"rating\" paraméter)." -#: ckan/logic/action/create.py:889 +#: ckan/logic/action/create.py:901 msgid "Rating must be an integer value." msgstr "Az értékelés egész számnak kell lennie." -#: ckan/logic/action/create.py:893 +#: ckan/logic/action/create.py:905 #, 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:1052 +#: ckan/logic/action/create.py:1064 msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1285 +#: ckan/logic/action/create.py:1297 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1390 +#: ckan/logic/action/create.py:1402 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:45 +#: ckan/logic/action/delete.py:54 msgid " Delete User: {0}" msgstr "" -#: ckan/logic/action/delete.py:86 +#: ckan/logic/action/delete.py:92 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: %s csomag törlése" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Törlés: %s" -#: ckan/logic/action/delete.py:312 +#: ckan/logic/action/delete.py:318 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 msgid "id not in data" msgstr "" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:572 +#: ckan/logic/action/delete.py:578 #, python-format msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:613 +#: ckan/logic/action/delete.py:619 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 msgid "Resource was not found." msgstr "Erőforrás nem található." -#: ckan/logic/action/get.py:2049 +#: ckan/logic/action/get.py:2087 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:2058 +#: ckan/logic/action/get.py:2096 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:2090 +#: ckan/logic/action/get.py:2128 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 msgid "Package was not found." msgstr "A csomag nem található" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 #, python-format msgid "REST API: Update object %s" msgstr "" -#: ckan/logic/action/update.py:380 +#: ckan/logic/action/update.py:401 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: csomagok közötti kapcsolat módosítása: %s %s %s" -#: ckan/logic/action/update.py:740 +#: ckan/logic/action/update.py:761 msgid "TaskStatus was not found." msgstr "" -#: ckan/logic/action/update.py:1038 +#: ckan/logic/action/update.py:1059 msgid "Organization was not found." msgstr "" @@ -1482,7 +2078,7 @@ 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:143 ckan/logic/auth/update.py:63 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" @@ -1514,24 +2110,24 @@ msgstr "" msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:191 +#: ckan/logic/auth/create.py:189 msgid "Group was not found." msgstr "Csoport nem található." -#: ckan/logic/auth/create.py:211 +#: ckan/logic/auth/create.py:209 msgid "Valid API key needed to create a package" msgstr "" -#: ckan/logic/auth/create.py:219 +#: ckan/logic/auth/create.py:217 msgid "Valid API key needed to create a group" msgstr "" -#: ckan/logic/auth/create.py:239 +#: ckan/logic/auth/create.py:237 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 #, python-format msgid "User %s not authorized to edit group %s" msgstr "" @@ -1575,31 +2171,31 @@ msgstr "" msgid "User %s not authorized to delete task_status" msgstr "" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 msgid "Not authorized" msgstr "Nem jogosult" -#: ckan/logic/auth/get.py:108 +#: ckan/logic/auth/get.py:109 #, python-format msgid "User %s not authorized to read these packages" msgstr "" -#: ckan/logic/auth/get.py:130 +#: ckan/logic/auth/get.py:124 #, python-format msgid "User %s not authorized to read package %s" msgstr "" -#: ckan/logic/auth/get.py:149 +#: ckan/logic/auth/get.py:143 #, python-format msgid "User %s not authorized to read resource %s" msgstr "" -#: ckan/logic/auth/get.py:176 +#: ckan/logic/auth/get.py:170 #, python-format msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:258 +#: ckan/logic/auth/get.py:252 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1633,39 +2229,39 @@ msgstr "" msgid "User %s not authorized to edit permissions of group %s" msgstr "" -#: ckan/logic/auth/update.py:189 +#: ckan/logic/auth/update.py:190 msgid "Have to be logged in to edit user" msgstr "" -#: ckan/logic/auth/update.py:197 +#: ckan/logic/auth/update.py:198 #, 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:208 +#: ckan/logic/auth/update.py:209 msgid "User {0} not authorized to update user {1}" msgstr "" -#: ckan/logic/auth/update.py:216 +#: ckan/logic/auth/update.py:217 #, 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:225 +#: ckan/logic/auth/update.py:226 #, python-format msgid "User %s not authorized to update task_status table" msgstr "" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/auth/update.py:240 #, python-format msgid "User %s not authorized to update term_translation table" msgstr "" -#: ckan/logic/auth/update.py:261 +#: ckan/logic/auth/update.py:262 msgid "Valid API key needed to edit a package" msgstr "" -#: ckan/logic/auth/update.py:271 +#: ckan/logic/auth/update.py:272 msgid "Valid API key needed to edit a group" msgstr "" @@ -1774,57 +2370,50 @@ msgstr "%s szülője" msgid "has sibling %s" msgstr "%s testvére" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Betöltés ..." - -#: ckan/public/base/javascript/modules/api-info.js:20 +#: ckan/public/base/javascript/modules/api-info.js:96 msgid "There is no API data to load for this resource" msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:21 +#: ckan/public/base/javascript/modules/api-info.js:124 msgid "Failed to load data API information" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:34 +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, python-format msgid "Input is too short, must be at least one character" -msgstr "" +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 msgid "There are unsaved modifications to this form" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:7 +#: ckan/public/base/javascript/modules/confirm-action.js:97 msgid "Please Confirm Action" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:8 +#: ckan/public/base/javascript/modules/confirm-action.js:100 msgid "Are you sure you want to perform this action?" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:9 +#: ckan/public/base/javascript/modules/confirm-action.js:102 #: ckan/templates/user/new_user_form.html:9 #: ckan/templates/user/perform_reset.html:21 msgid "Confirm" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 #: ckan/templates/admin/confirm_reset.html:9 #: ckan/templates/group/confirm_delete.html:14 #: ckan/templates/group/confirm_delete_member.html:15 @@ -1835,39 +2424,42 @@ msgstr "" msgid "Cancel" msgstr "Mégse" -#: ckan/public/base/javascript/modules/follow.js:23 +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:72 #: ckan/templates/snippets/follow_button.html:14 msgid "Follow" msgstr "" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:18 +#: ckan/public/base/javascript/modules/image-upload.js:72 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 #: ckan/templates/snippets/search_form.html:68 msgid "Remove" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: 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 @@ -1875,84 +2467,78 @@ msgstr "" msgid "URL" msgstr "URL" -#: ckan/public/base/javascript/modules/image-upload.js:21 +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 msgid "File" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 msgid "Save order" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 msgid "Saving..." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 msgid "Upload a file" msgstr "Fájl feltöltése" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 msgid "An Error Occurred" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 msgid "Unable to upload file" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 msgid "Unable to authenticate upload" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 msgid "Unable to get data for uploaded file" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" msgstr "" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" msgstr "" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 #: ckan/templates/organization/bulk_process.html:65 #: ckan/templates/organization/edit.html:3 #: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 +#: ckan/templates/organization/members.html:33 #: ckan/templates/package/edit_base.html:11 #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 +#: ckan/templates/package/snippets/resource_item.html:56 msgid "Edit" msgstr "Módosítás" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 msgid "Show more" msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 msgid "Hide" msgstr "" @@ -2083,19 +2669,19 @@ msgstr "" msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:17 +#: ckan/templates/admin/config.html:16 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:18 +#: ckan/templates/admin/config.html:17 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:27 +#: ckan/templates/admin/config.html:26 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:34 +#: ckan/templates/admin/config.html:33 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2140,81 +2726,12 @@ msgstr "" msgid "

Purge deleted datasets forever and irreversibly.

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

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." msgstr "" #: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 +#: ckan/templates/package/resource_read.html:115 #: ckan/templates/package/snippets/resource_view.html:26 msgid "Click here for more information." msgstr "" @@ -2224,12 +2741,6 @@ msgstr "" msgid "Download resource" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." msgstr "" @@ -2362,8 +2873,8 @@ msgstr "" 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/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 @@ -2378,26 +2889,12 @@ msgstr "" msgid "Edit Group" msgstr "" -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 +#: ckan/templates/group/edit_base.html:23 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/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "" - #: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 #: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 msgid "History" @@ -2412,28 +2909,6 @@ msgstr "" msgid "Search groups..." msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Név növekvő sorrendben" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Név csökkenő sorrendben" - #: ckan/templates/group/index.html:29 msgid "There are currently no groups for this site" msgstr "" @@ -2455,11 +2930,11 @@ msgid "Edit Member" msgstr "" #: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 +#: ckan/templates/group/member_new.html:64 ckan/templates/group/members.html:6 #: ckan/templates/organization/member_new.html:7 #: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 +#: ckan/templates/organization/member_new.html:65 +#: ckan/templates/organization/members.html:8 msgid "Add Member" msgstr "" @@ -2489,44 +2964,40 @@ msgid "If you wish to invite a new user, enter their email address." msgstr "" #: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 +#: ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 +#: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" #: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 +#: ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 +#: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 #: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 #: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 #: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 +#: ckan/templates/user/edit_user_form.html:45 msgid "Delete" msgstr "Törlés" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Mentés" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 msgid "What are roles?" msgstr "" -#: ckan/templates/group/member_new.html:81 +#: ckan/templates/group/member_new.html:80 msgid "" "

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

Member: Can add/remove " @@ -2546,32 +3017,6 @@ msgstr "" msgid "Create Group" msgstr "" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Utóljára módosítva" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." @@ -2600,14 +3045,6 @@ msgstr "" msgid "my-group" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Leírás" - #: ckan/templates/group/snippets/group_form.html:20 msgid "A little information about my group..." msgstr "" @@ -2616,26 +3053,10 @@ msgstr "" msgid "Are you sure you want to delete this Group?" msgstr "" -#: ckan/templates/group/snippets/group_form.html:64 +#: ckan/templates/group/snippets/group_form.html:63 msgid "Save Group" msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 msgid "View {name}" @@ -2781,6 +3202,10 @@ msgstr "szervezetek" msgid "groups" msgstr "csoportok" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -2902,11 +3327,11 @@ msgstr "" msgid "Email address" msgstr "" -#: ckan/templates/organization/member_new.html:62 +#: ckan/templates/organization/member_new.html:61 msgid "Update Member" msgstr "Tag frissítése" -#: ckan/templates/organization/member_new.html:82 +#: ckan/templates/organization/member_new.html:81 msgid "" "

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

Editor: Can add and " @@ -2915,6 +3340,12 @@ msgid "" "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 @@ -2980,12 +3411,12 @@ msgid "" "public and private datasets belonging to this organization." msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:64 +#: ckan/templates/organization/snippets/organization_form.html:63 msgid "Save Organization" msgstr "Szervezet mentése" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 msgid "View {organization_name}" msgstr "" @@ -3030,7 +3461,7 @@ msgstr "" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 +#: ckan/templates/package/snippets/resource_item.html:32 #: ckan/templates/snippets/datapreview_embed_dialog.html:16 msgid "Preview" msgstr "Előzetes nézet" @@ -3090,7 +3521,7 @@ msgid "" msgstr "" #: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 +#: ckan/templates/package/snippets/resource_form.html:81 msgid "Add" msgstr "Hozzáadás" @@ -3101,48 +3532,6 @@ msgid "" "differ significantly from the current revision." msgstr "" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Hiba:" - -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" - -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "" - -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "" - #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" msgstr "" @@ -3152,15 +3541,11 @@ msgid "View resource" msgstr "" #: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 +#: ckan/templates/package/resource_edit_base.html:30 msgid "Edit resource" msgstr "" #: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 msgid "Views" msgstr "" @@ -3169,91 +3554,100 @@ msgid "API Endpoint" msgstr "" #: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 +#: ckan/templates/package/snippets/resource_item.html:47 msgid "Go to resource" msgstr "" #: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 +#: ckan/templates/package/snippets/resource_item.html:44 msgid "Download" msgstr "" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 msgid "URL:" msgstr "" -#: ckan/templates/package/resource_read.html:69 +#: ckan/templates/package/resource_read.html:66 msgid "From the dataset abstract" msgstr "" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/package/resource_read.html:68 #, python-format msgid "Source: %(dataset)s" msgstr "" -#: ckan/templates/package/resource_read.html:112 +#: ckan/templates/package/resource_read.html:109 msgid "There are no views created for this resource yet." msgstr "" -#: ckan/templates/package/resource_read.html:116 +#: ckan/templates/package/resource_read.html:113 msgid "Not seeing the views you were expecting?" msgstr "" -#: ckan/templates/package/resource_read.html:121 +#: ckan/templates/package/resource_read.html:118 msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -#: ckan/templates/package/resource_read.html:123 +#: ckan/templates/package/resource_read.html:120 msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/resource_read.html:124 +#: ckan/templates/package/resource_read.html:121 msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/resource_read.html:125 +#: ckan/templates/package/resource_read.html:122 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" msgstr "" -#: ckan/templates/package/resource_read.html:147 +#: ckan/templates/package/resource_read.html:144 msgid "Additional Information" msgstr "További információ" -#: ckan/templates/package/resource_read.html:151 +#: ckan/templates/package/resource_read.html:148 #: ckan/templates/package/snippets/additional_info.html:6 #: ckan/templates/revision/diff.html:43 #: ckan/templates/snippets/additional_info.html:11 msgid "Field" msgstr "Mező" -#: ckan/templates/package/resource_read.html:152 +#: ckan/templates/package/resource_read.html:149 #: ckan/templates/package/snippets/additional_info.html:7 #: ckan/templates/snippets/additional_info.html:12 msgid "Value" msgstr "Érték" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 msgid "unknown" msgstr "" -#: ckan/templates/package/resource_read.html:161 +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:162 #: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "" -#: ckan/templates/package/resource_read.html:165 +#: ckan/templates/package/resource_read.html:166 #: ckan/templates/package/snippets/resource_form.html:37 #: ckan/templates/package/snippets/resource_info.html:16 msgid "Format" msgstr "Formátum" -#: ckan/templates/package/resource_read.html:169 +#: ckan/templates/package/resource_read.html:170 #: ckan/templates/package/snippets/package_basic_fields.html:30 #: ckan/templates/snippets/license.html:21 msgid "License" @@ -3271,8 +3665,8 @@ msgstr "" msgid "Add new resource" msgstr "" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" "

This dataset has no data, why not " @@ -3366,10 +3760,6 @@ msgid "" "continue." msgstr "" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "" - #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 msgid "Title" @@ -3431,7 +3821,7 @@ msgstr "" msgid "Are you sure you want to delete this dataset?" msgstr "" -#: ckan/templates/package/snippets/package_form.html:44 +#: ckan/templates/package/snippets/package_form.html:43 msgid "Next: Add Data" msgstr "" @@ -3517,15 +3907,15 @@ msgstr "" msgid "Are you sure you want to delete this resource?" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:72 +#: ckan/templates/package/snippets/resource_form.html:71 msgid "Previous" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:75 +#: ckan/templates/package/snippets/resource_form.html:74 msgid "Save & add another" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 +#: ckan/templates/package/snippets/resource_form.html:77 msgid "Finish" msgstr "" @@ -3537,11 +3927,11 @@ msgstr "" msgid "A resource can be any file or link to a file containing useful data." msgstr "" -#: ckan/templates/package/snippets/resource_item.html:24 +#: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:36 +#: ckan/templates/package/snippets/resource_item.html:35 msgid "More information" msgstr "" @@ -3583,7 +3973,7 @@ msgstr "" msgid "Data and Resources" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:29 +#: ckan/templates/package/snippets/resources_list.html:30 msgid "This dataset has no data" msgstr "" @@ -3611,18 +4001,10 @@ msgstr "" msgid "eg. Information about my view" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" msgstr "" @@ -3721,11 +4103,11 @@ msgstr "" msgid "Home" msgstr "Főoldal" -#: ckan/templates/snippets/language_selector.html:4 +#: ckan/templates/snippets/language_selector.html:3 msgid "Language" msgstr "" -#: ckan/templates/snippets/language_selector.html:12 +#: ckan/templates/snippets/language_selector.html:11 #: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 @@ -3890,7 +4272,7 @@ msgstr "" #: ckan/templates/user/dashboard_datasets.html:19 #: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 #: ckan/templates/user/read.html:16 msgid "Create one now?" msgstr "" @@ -3899,7 +4281,7 @@ msgstr "" msgid "You are not a member of any groups." msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 +#: ckan/templates/user/dashboard_organizations.html:21 msgid "You are not a member of any organizations." msgstr "" @@ -3959,492 +4341,208 @@ msgstr "" msgid "Password" msgstr "" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:56 -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:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "" - -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Jelszó visszaállítása" - -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "" - -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "" - -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" 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" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -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" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." msgstr "" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." msgstr "" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Elfelejtette a jelszavát?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" msgstr "" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Kilépés" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" +#: ckan/templates/user/new.html:6 +msgid "Registration" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Adatkészlet száma" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Legmagasabbra értékelt adatkészletek" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Értékelések átlaga" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Értékelések száma" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Nincs még értékelve" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "A leggyakrabban szerkesztett adatkészletek" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Szerkesztések száma" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "A legnépesebb csoportok" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Adatkészletek száma" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Leggyakoribb címkék" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" +#: 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:6 +msgid "Password reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" msgstr "" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" msgstr "" diff --git a/ckan/i18n/id/LC_MESSAGES/ckan.mo b/ckan/i18n/id/LC_MESSAGES/ckan.mo index d2b614ed8b0..cc3e45928f1 100644 Binary files a/ckan/i18n/id/LC_MESSAGES/ckan.mo and b/ckan/i18n/id/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/id/LC_MESSAGES/ckan.po b/ckan/i18n/id/LC_MESSAGES/ckan.po index 7da4a0092fe..50ff8e02db8 100644 --- a/ckan/i18n/id/LC_MESSAGES/ckan.po +++ b/ckan/i18n/id/LC_MESSAGES/ckan.po @@ -1,38 +1,671 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: jitopdeveloper , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/authz.py:179 +#: 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:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Kesalahan" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Belum diunggah" + +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Sumberdaya tidak ditemukan" + +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Tidak diizinkan untuk melihat halaman ini" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Diunggah ke kumpulan data" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Kesalahan dalam mengunggah" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Kesalahan:" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Kesalahan traceback" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Terakhir diperbarui" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Tidak pernah" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Log unggah" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detail" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Akhir dari log" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Kumpulan data" + +#: ckanext/datastore/controller.py:46 +#, python-format +msgid "format: must be one of %s" +msgstr "Format: harus menjadi salah satu %s" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Sumber kumpulan data tidak ditemukan" + +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" + +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Kueri" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Contoh: Javascript" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: 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:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Deskripsi" + +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Simpan" + +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Kolom" + +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "Tipe" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Memuat..." + +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "API data" + +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +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 "Tampilkan Kolom" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +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:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevansi" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "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:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "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 "" + +#: 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:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Pengikut" + +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Sumberdaya" + +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Gambar" + +#: 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:101 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +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 "Grup (Axis 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/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Jumlah total Kumpulan data" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Tanggal" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Peringkat Tertinggi Kumpulan data" + +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Peringkat rata-rata" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Jumlah peringkat" + +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Tidak ada peringkat" + +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Kumpulan Data Paling Sering Diedit" + +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Kumpulan data" + +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Jumlah editan" + +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Grup Terbesar" + +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Grup" + +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Jumlah kumpulan data" + +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Tag Tertinggi" + +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Pengguna" + +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "" + +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "" + +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +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:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckan/authz.py:182 #, python-format msgid "Authorization function not found: %s" msgstr "Fungsi otorisasi tidak ditemukan: %s" -#: ckan/authz.py:191 ckan/templates/header.html:14 +#: ckan/authz.py:194 ckan/templates/header.html:14 msgid "Admin" msgstr "Admin" -#: ckan/authz.py:195 +#: ckan/authz.py:198 msgid "Editor" msgstr "Editor" -#: ckan/authz.py:199 +#: ckan/authz.py:202 msgid "Member" msgstr "" @@ -56,7 +689,7 @@ msgstr "" msgid "Site Tag Logo" msgstr "" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 #: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 @@ -65,31 +698,31 @@ msgstr "" msgid "About" msgstr "Tentang" -#: ckan/controllers/admin.py:54 +#: ckan/controllers/admin.py:55 msgid "About page text" msgstr "" -#: ckan/controllers/admin.py:55 +#: ckan/controllers/admin.py:56 msgid "Intro Text" msgstr "" -#: ckan/controllers/admin.py:55 +#: ckan/controllers/admin.py:56 msgid "Text on home page" msgstr "" -#: ckan/controllers/admin.py:56 +#: ckan/controllers/admin.py:57 msgid "Custom CSS" msgstr "" -#: ckan/controllers/admin.py:56 +#: ckan/controllers/admin.py:57 msgid "Customisable css inserted into the page header" msgstr "" -#: ckan/controllers/admin.py:57 +#: ckan/controllers/admin.py:58 msgid "Homepage" msgstr "" -#: ckan/controllers/admin.py:160 +#: ckan/controllers/admin.py:161 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " @@ -98,156 +731,147 @@ msgstr "" "Tidak dapat membersihkan paket %s yang berasosiasi dengan revisi %s yang " "menyertakan paket tak-terhapus %s" -#: ckan/controllers/admin.py:182 +#: ckan/controllers/admin.py:183 #, python-format msgid "Problem purging revision %s: %s" msgstr "Masalah membersihkan revisi %s: %s" -#: ckan/controllers/admin.py:184 +#: ckan/controllers/admin.py:185 msgid "Purge complete" msgstr "Pembersihan selesai" -#: ckan/controllers/admin.py:186 +#: ckan/controllers/admin.py:187 msgid "Action not implemented." msgstr "Aksi tidak diimplementasikan." -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Tidak diizinkan untuk melihat laman ini" - -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 msgid "Access denied" msgstr "Akses ditolak" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 #: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 msgid "Not found" msgstr "Tidak ditemukan" -#: ckan/controllers/api.py:134 +#: ckan/controllers/api.py:136 msgid "Bad request" msgstr "Permintaan buruk" -#: ckan/controllers/api.py:168 +#: ckan/controllers/api.py:170 #, python-format msgid "Action name not known: %s" msgstr "Nama aksi tidak diketahui: %s" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 #, python-format msgid "JSON Error: %s" msgstr "Masalah JSON: %s" -#: ckan/controllers/api.py:195 +#: ckan/controllers/api.py:197 #, python-format msgid "Bad request data: %s" msgstr "Data permintaan buruk: %s" -#: ckan/controllers/api.py:298 +#: ckan/controllers/api.py:300 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Tidak dapat membuat daftar entitas dari tipe ini: %s" -#: ckan/controllers/api.py:327 +#: ckan/controllers/api.py:329 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Tidak dapat membaca entitas dari tipe ini: %s" -#: ckan/controllers/api.py:365 +#: ckan/controllers/api.py:367 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Tidak dapat membuat entitas baru dari tipe ini: %s %s" -#: ckan/controllers/api.py:398 +#: ckan/controllers/api.py:400 msgid "Unable to add package to search index" msgstr "Tidak dapat menambahkan paket ke indeks pencarian" -#: ckan/controllers/api.py:428 +#: ckan/controllers/api.py:430 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Tidak dapat memperbarui entitas dari tipe ini: %s" -#: ckan/controllers/api.py:452 +#: ckan/controllers/api.py:454 msgid "Unable to update search index" msgstr "Tidak dapat memperbarui indeks pencarian" -#: ckan/controllers/api.py:475 +#: ckan/controllers/api.py:477 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Tidak dapat menghapus entitas dari tipe ini: %s %s" -#: ckan/controllers/api.py:498 +#: ckan/controllers/api.py:500 msgid "No revision specified" msgstr "Tidak ada revisi dispesifikasikan" -#: ckan/controllers/api.py:502 +#: ckan/controllers/api.py:504 #, python-format msgid "There is no revision with id: %s" msgstr "Tidak ada revisi dengan id: %s" -#: ckan/controllers/api.py:512 +#: ckan/controllers/api.py:514 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" "Istilah pencarian hilang ('since_id=UUID' atau 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:524 +#: ckan/controllers/api.py:526 #, python-format msgid "Could not read parameters: %r" msgstr "Tidak dapat membaca parameter: %r" -#: ckan/controllers/api.py:585 +#: ckan/controllers/api.py:587 #, python-format msgid "Bad search option: %s" msgstr "Opsi pencarian buruk: %s" -#: ckan/controllers/api.py:588 +#: ckan/controllers/api.py:590 #, python-format msgid "Unknown register: %s" msgstr "Register tidak dikenal: %s" -#: ckan/controllers/api.py:597 +#: ckan/controllers/api.py:599 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:607 +#: ckan/controllers/api.py:609 msgid "Request params must be in form of a json encoded dictionary." msgstr "Paramater yang diminta harus dalam bentuk kamus encoded json." -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 msgid "Group not found" msgstr "Grup tidak ditemukan" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 msgid "Incorrect group type" msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 #: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 @@ -259,22 +883,23 @@ msgstr "" msgid "Organizations" msgstr "Organisasi" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 #: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 #: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grup" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 #: 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 @@ -282,282 +907,272 @@ msgstr "Grup" msgid "Tags" msgstr "Tag" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 msgid "Formats" msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:448 +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Pengguna %r tidak ada izin untuk mengedit %s" + +#: ckan/controllers/group.py:442 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:466 +#: ckan/controllers/group.py:460 msgid "Unauthorized to create a group" msgstr "Tidak punya izin untuk membuat grup" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Pengguna %r tidak ada izin untuk mengedit %s" - -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 #: ckan/controllers/user.py:249 ckan/controllers/user.py:379 #: ckan/controllers/user.py:548 msgid "Integrity Error" msgstr "Integritas Bermasalah" -#: ckan/controllers/group.py:600 +#: ckan/controllers/group.py:594 #, 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:620 ckan/controllers/group.py:635 +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 #, python-format msgid "Unauthorized to delete group %s" msgstr "" -#: ckan/controllers/group.py:626 +#: ckan/controllers/group.py:620 msgid "Organization has been deleted." msgstr "" -#: ckan/controllers/group.py:628 +#: ckan/controllers/group.py:622 msgid "Group has been deleted." msgstr "" -#: ckan/controllers/group.py:630 +#: ckan/controllers/group.py:624 #, python-format msgid "%s has been deleted." msgstr "" -#: ckan/controllers/group.py:704 +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:705 #, python-format msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 #, python-format msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/controllers/group.py:730 +#: ckan/controllers/group.py:731 msgid "Group member has been deleted." msgstr "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 msgid "Select two revisions before doing the comparison." msgstr "Pilih dua revisi sebelum melakukan perbandingan." -#: ckan/controllers/group.py:778 +#: ckan/controllers/group.py:779 msgid "CKAN Group Revision History" msgstr "Riwayat Revisi Grup CKAN" -#: ckan/controllers/group.py:782 +#: ckan/controllers/group.py:783 msgid "Recent changes to CKAN Group: " msgstr "Perubahan terbaru Grup CKAN:" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 msgid "Log message: " msgstr "Log pesan:" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 #: ckan/controllers/user.py:715 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 #: ckan/controllers/user.py:735 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 #, python-format msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/controllers/home.py:36 +#: 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:81 +#: ckan/controllers/home.py:73 #, 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:83 +#: ckan/controllers/home.py:75 #, 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:290 +#: ckan/controllers/package.py:288 msgid "Invalid search query: {error_message}" msgstr "" -#: ckan/controllers/package.py:307 +#: ckan/controllers/package.py:304 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 msgid "Dataset not found" msgstr "Kumpulan data tidak ditemukan" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 #, python-format msgid "Invalid revision format: %r" msgstr "Format revisi cacat: %r" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 #, python-format msgid "Unauthorized to read package %s" msgstr "Tidak punya izin untuk membaca paket %s" -#: ckan/controllers/package.py:448 +#: ckan/controllers/package.py:444 msgid "CKAN Dataset Revision History" msgstr "Riwayat Revisi Kumpulan Data CKAN" -#: ckan/controllers/package.py:451 +#: ckan/controllers/package.py:447 msgid "Recent changes to CKAN Dataset: " msgstr "Perubahan terbaru Kumpulan Data CKAN:" -#: ckan/controllers/package.py:507 +#: ckan/controllers/package.py:503 msgid "Unauthorized to create a package" msgstr "Tidak punya izin untuk membuat paket" -#: ckan/controllers/package.py:577 +#: ckan/controllers/package.py:573 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Sumberdaya tidak ditemukan" - -#: ckan/controllers/package.py:654 +#: ckan/controllers/package.py:644 msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:660 +#: ckan/controllers/package.py:650 msgid "You must add at least one data resource" msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Galat" - -#: ckan/controllers/package.py:691 +#: ckan/controllers/package.py:681 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:727 +#: ckan/controllers/package.py:714 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:941 +#: ckan/controllers/package.py:928 msgid "Unable to add package to search index." msgstr "Tidak dapat menambahkan paket ke indeks pencarian." -#: ckan/controllers/package.py:989 +#: ckan/controllers/package.py:976 msgid "Unable to update search index." msgstr "Tidak dapat memperbarui indeks pencarian." -#: ckan/controllers/package.py:1026 +#: ckan/controllers/package.py:1013 msgid "Dataset has been deleted." msgstr "" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1041 msgid "Resource has been deleted." msgstr "" -#: ckan/controllers/package.py:1060 +#: ckan/controllers/package.py:1052 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1158 +#: ckan/controllers/package.py:1150 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1167 +#: ckan/controllers/package.py:1159 msgid "No download is available" msgstr "Tidak ada unduhan tersedia" -#: ckan/controllers/package.py:1305 +#: ckan/controllers/package.py:1296 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1413 +#: ckan/controllers/package.py:1404 #, python-format msgid "Unauthorized to read resource %s" msgstr "Tidak ada izin untuk membaca sumberdaya %s" -#: ckan/controllers/package.py:1477 +#: ckan/controllers/package.py:1468 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1495 +#: ckan/controllers/package.py:1486 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1501 +#: ckan/controllers/package.py:1492 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1557 +#: ckan/controllers/package.py:1548 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1566 +#: ckan/controllers/package.py:1557 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1595 +#: ckan/controllers/package.py:1586 msgid "No preview has been defined." msgstr "" @@ -586,13 +1201,6 @@ msgstr "Lainnya" msgid "Tag not found" msgstr "Tag tidak ditemukan" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Pengguna tidak ditemukan" - #: ckan/controllers/user.py:161 msgid "Unauthorized to register as a user." msgstr "" @@ -615,6 +1223,13 @@ msgstr "Tidak ada pengguna dispesifikasikan" msgid "Unauthorized to edit user %s" msgstr "Tidak ada izin untuk mengedit pengguna %s" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Pengguna tidak ditemukan" + #: ckan/controllers/user.py:234 ckan/controllers/user.py:367 msgid "Profile updated" msgstr "Profil diperbarui" @@ -817,7 +1432,7 @@ msgstr "" msgid "{actor} started following {group}" msgstr "" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -877,129 +1492,129 @@ msgstr "" msgid "December" msgstr "" -#: ckan/lib/formatters.py:116 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "" -#: ckan/lib/formatters.py:118 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" -#: ckan/lib/formatters.py:121 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" -#: ckan/lib/formatters.py:127 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" -#: ckan/lib/formatters.py:130 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" -#: ckan/lib/formatters.py:132 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" -#: ckan/lib/formatters.py:148 +#: ckan/lib/formatters.py:146 msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:153 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "" -#: ckan/lib/formatters.py:169 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "" -#: ckan/lib/formatters.py:171 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "" -#: ckan/lib/formatters.py:173 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "" -#: ckan/lib/formatters.py:175 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "" -#: ckan/lib/formatters.py:177 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "" -#: ckan/lib/formatters.py:189 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:191 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:193 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:195 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:197 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:199 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:201 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:203 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:205 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:1018 +#: ckan/lib/helpers.py:1048 msgid "Update your avatar at gravatar.com" msgstr "Perbarui avatar anda di gravatar.com" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 msgid "Unknown" msgstr "Tidak dikenal" -#: ckan/lib/helpers.py:1330 +#: ckan/lib/helpers.py:1361 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1370 +#: ckan/lib/helpers.py:1401 msgid "Created new dataset." msgstr "Kumpulan data baru yang dibuat." -#: ckan/lib/helpers.py:1372 +#: ckan/lib/helpers.py:1403 msgid "Edited resources." msgstr "Sumberdaya yang diedit." -#: ckan/lib/helpers.py:1374 +#: ckan/lib/helpers.py:1405 msgid "Edited settings." msgstr "Setelan yang diedit." -#: ckan/lib/helpers.py:1616 +#: ckan/lib/helpers.py:1648 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" -#: ckan/lib/helpers.py:1618 +#: ckan/lib/helpers.py:1650 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1030,7 +1645,8 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:32 #: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 #: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 msgid "Missing value" msgstr "Nilai hilang" @@ -1043,198 +1659,173 @@ msgstr "Field masukan %(name)s tidak diharapkan." msgid "Please enter an integer value" msgstr "Silahkan masukkan sebuah nilai integer" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Sumberdaya" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 msgid "Package resource(s) invalid" msgstr "Paket sumberdaya(s) cacat" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 #: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 msgid "Extras" msgstr "Ekstra" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Kosakata tag \"%s\" tidak ada" - -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Pengguna" - -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Kumpulan data" - -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Grup" +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Kosakata tag \"%s\" tidak ada" #: ckan/logic/converters.py:180 msgid "Could not parse as valid JSON" msgstr "" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 msgid "An organization must be provided" msgstr "" -#: ckan/logic/validators.py:46 +#: ckan/logic/validators.py:47 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:51 +#: ckan/logic/validators.py:52 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:91 +#: ckan/logic/validators.py:92 msgid "Invalid integer" msgstr "Integer cacat" -#: ckan/logic/validators.py:96 +#: ckan/logic/validators.py:97 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:102 +#: ckan/logic/validators.py:103 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:129 +#: ckan/logic/validators.py:130 msgid "Date format incorrect" msgstr "Format tanggal salah" -#: ckan/logic/validators.py:138 +#: ckan/logic/validators.py:139 msgid "No links are allowed in the log_message." msgstr "Tidak diperkenankan ada tautan dalam log_message." -#: ckan/logic/validators.py:158 +#: ckan/logic/validators.py:159 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:199 +#: ckan/logic/validators.py:200 msgid "Resource" msgstr "Sumberdaya" -#: ckan/logic/validators.py:253 +#: ckan/logic/validators.py:254 msgid "That group name or ID does not exist." msgstr "Nama grup atau ID tersebut tidak ada." -#: ckan/logic/validators.py:267 +#: ckan/logic/validators.py:268 msgid "Activity type" msgstr "Tipe aktivitas" -#: ckan/logic/validators.py:330 +#: ckan/logic/validators.py:331 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:334 +#: ckan/logic/validators.py:335 msgid "That name cannot be used" msgstr "Nama tersebut tidak dapat digunakan" -#: ckan/logic/validators.py:337 +#: ckan/logic/validators.py:338 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Nama maksimal hingga %i karakter panjangnya" -#: ckan/logic/validators.py:342 +#: ckan/logic/validators.py:343 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:360 +#: ckan/logic/validators.py:361 msgid "That URL is already in use." msgstr "URL tersebut sudah digunakan." -#: ckan/logic/validators.py:365 +#: ckan/logic/validators.py:366 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Panjang nama \"%s\" kurang dari minimal %s" -#: ckan/logic/validators.py:369 +#: ckan/logic/validators.py:370 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Panjang nama \"%s\" melebihi maksimal %s" -#: ckan/logic/validators.py:375 +#: ckan/logic/validators.py:376 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Versi harus maksimal %i karakter panjangnya" -#: ckan/logic/validators.py:393 +#: ckan/logic/validators.py:394 #, python-format msgid "Duplicate key \"%s\"" msgstr "Kunci duplikat \"%s\"" -#: ckan/logic/validators.py:409 +#: ckan/logic/validators.py:410 msgid "Group name already exists in database" msgstr "Nama grup sudah ada di basisdata" -#: ckan/logic/validators.py:415 +#: ckan/logic/validators.py:416 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Panjang tag \"%s\" kurang dari minimal %s" -#: ckan/logic/validators.py:419 +#: ckan/logic/validators.py:420 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Panjang tag \"%s\" lebih besar dari maksimal %i" -#: ckan/logic/validators.py:427 +#: ckan/logic/validators.py:428 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Tag \"%s\" harus berupa karakter alfanumerik atau simbol: -_." -#: ckan/logic/validators.py:435 +#: ckan/logic/validators.py:436 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Tag \"%s\" tidak boleh huruf besar" -#: ckan/logic/validators.py:544 +#: ckan/logic/validators.py:545 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:560 +#: ckan/logic/validators.py:561 msgid "That login name is not available." msgstr "Nama login tersebut tidak tersedia." -#: ckan/logic/validators.py:569 +#: ckan/logic/validators.py:570 msgid "Please enter both passwords" msgstr "Silahkan masukkan kedua password" -#: ckan/logic/validators.py:577 +#: ckan/logic/validators.py:578 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:581 +#: ckan/logic/validators.py:582 msgid "Your password must be 4 characters or longer" msgstr "Password anda harus 4 karakter atau lebih" -#: ckan/logic/validators.py:589 +#: ckan/logic/validators.py:590 msgid "The passwords you entered do not match" msgstr "Password yang anda masukkan tidak cocok" -#: ckan/logic/validators.py:610 +#: ckan/logic/validators.py:611 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." @@ -1242,223 +1833,227 @@ msgstr "" "Pengeditan tidak diperkenankan karena mirip spam. Silahkan abaikan tautan " "pada deskripsi anda." -#: ckan/logic/validators.py:619 +#: ckan/logic/validators.py:620 #, python-format msgid "Name must be at least %s characters long" msgstr "Nama sedikitnya harus %s karakter panjangnya" -#: ckan/logic/validators.py:627 +#: ckan/logic/validators.py:628 msgid "That vocabulary name is already in use." msgstr "Perbendaharaan nama tersebut sudah digunakan." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:634 #, 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:642 +#: ckan/logic/validators.py:643 msgid "Tag vocabulary was not found." msgstr "Perbendaharaan tag tidak ditemukan." -#: ckan/logic/validators.py:655 +#: ckan/logic/validators.py:656 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Tag %s bukan milik perbendaharaan %s" -#: ckan/logic/validators.py:661 +#: ckan/logic/validators.py:662 msgid "No tag name" msgstr "Tidak ada nama tag" -#: ckan/logic/validators.py:674 +#: ckan/logic/validators.py:675 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Tag %s sudah menjadi perbendaharaan %s" -#: ckan/logic/validators.py:697 +#: ckan/logic/validators.py:698 msgid "Please provide a valid URL" msgstr "Mohon sediakan sebuah URL yang sah" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:712 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:740 +#: ckan/logic/validators.py:741 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:746 +#: ckan/logic/validators.py:747 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:749 +#: ckan/logic/validators.py:750 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:781 +#: ckan/logic/validators.py:782 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:791 +#: ckan/logic/validators.py:792 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:802 +#: ckan/logic/validators.py:803 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:806 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:820 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Membuat objek %s" -#: ckan/logic/action/create.py:532 +#: ckan/logic/action/create.py:544 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Membuat hubungan paket: %s %s %s" -#: ckan/logic/action/create.py:573 +#: ckan/logic/action/create.py:585 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Membuat anggota dari objek %s" -#: ckan/logic/action/create.py:792 +#: ckan/logic/action/create.py:804 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:881 +#: ckan/logic/action/create.py:893 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:884 +#: ckan/logic/action/create.py:896 msgid "You must supply a rating (parameter \"rating\")." msgstr "Anda harus menyediakan sebuah peringkat (parameter \"rating\")" -#: ckan/logic/action/create.py:889 +#: ckan/logic/action/create.py:901 msgid "Rating must be an integer value." msgstr "Peringkat harus berupa nilai integer." -#: ckan/logic/action/create.py:893 +#: ckan/logic/action/create.py:905 #, python-format msgid "Rating must be between %i and %i." msgstr "Peringkat harus antara %i dan %i." -#: ckan/logic/action/create.py:1052 +#: ckan/logic/action/create.py:1064 msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1285 +#: ckan/logic/action/create.py:1297 msgid "You cannot follow yourself" msgstr "Anda tidak dapat mengikuti diri anda sendiri" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1390 +#: ckan/logic/action/create.py:1402 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:45 +#: ckan/logic/action/delete.py:54 msgid " Delete User: {0}" msgstr "" -#: ckan/logic/action/delete.py:86 +#: ckan/logic/action/delete.py:92 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Menghapus Paket: %s" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Hapus %s" -#: ckan/logic/action/delete.py:312 +#: ckan/logic/action/delete.py:318 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 msgid "id not in data" msgstr "id tidak berada dalam data" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Tidak dapat menemukan perbendaharaan \"%s\"" -#: ckan/logic/action/delete.py:572 +#: ckan/logic/action/delete.py:578 #, python-format msgid "Could not find tag \"%s\"" msgstr "Tidak dapat menemukan tag \"%s\"" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:613 +#: ckan/logic/action/delete.py:619 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 msgid "Resource was not found." msgstr "Sumberdaya tidak ditemukan." -#: ckan/logic/action/get.py:2049 +#: ckan/logic/action/get.py:2087 msgid "Do not specify if using \"query\" parameter" msgstr "Jangan spesifikasikan bila menggunakan parameter \"query\"" -#: ckan/logic/action/get.py:2058 +#: ckan/logic/action/get.py:2096 msgid "Must be : pair(s)" msgstr "Harus berupa pasangan(s) :" -#: ckan/logic/action/get.py:2090 +#: ckan/logic/action/get.py:2128 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Field \"{field}\" tidak dikenali dalam resource_search." -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 msgid "Package was not found." msgstr "Paket tidak ditemukan." -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Memperbarui objek %s" -#: ckan/logic/action/update.py:380 +#: ckan/logic/action/update.py:401 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Memperbarui hubungan paket: %s %s %s" -#: ckan/logic/action/update.py:740 +#: ckan/logic/action/update.py:761 msgid "TaskStatus was not found." msgstr "TaskStatus tidak ditemukan." -#: ckan/logic/action/update.py:1038 +#: ckan/logic/action/update.py:1059 msgid "Organization was not found." msgstr "" @@ -1482,7 +2077,7 @@ 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:143 ckan/logic/auth/update.py:63 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" "Tidak ada paket ditemukan untuk sumberdaya ini, tidak dapat memeriksa " @@ -1516,24 +2111,24 @@ msgstr "" msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:191 +#: ckan/logic/auth/create.py:189 msgid "Group was not found." msgstr "Grup tidak ditemukan." -#: ckan/logic/auth/create.py:211 +#: ckan/logic/auth/create.py:209 msgid "Valid API key needed to create a package" msgstr "Kunci API yang sah diperlukan untuk membuat sebuah paket" -#: ckan/logic/auth/create.py:219 +#: ckan/logic/auth/create.py:217 msgid "Valid API key needed to create a group" msgstr "Kunci API yang sah diperlukan untuk membuat sebuah grup" -#: ckan/logic/auth/create.py:239 +#: ckan/logic/auth/create.py:237 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Pengguna %s tidak punya izin untuk mengedit grup %s" @@ -1577,31 +2172,31 @@ msgstr "" msgid "User %s not authorized to delete task_status" msgstr "Pengguna %s tidak punya izin untuk menghapus task_status" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 msgid "Not authorized" msgstr "" -#: ckan/logic/auth/get.py:108 +#: ckan/logic/auth/get.py:109 #, 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:130 +#: 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:149 +#: 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:176 +#: ckan/logic/auth/get.py:170 #, python-format msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:258 +#: ckan/logic/auth/get.py:252 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1635,39 +2230,39 @@ msgstr "Pengguna %s tidak punya izin untuk mengubah kondisi dari grup %s" 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:189 +#: ckan/logic/auth/update.py:190 msgid "Have to be logged in to edit user" msgstr "" -#: ckan/logic/auth/update.py:197 +#: ckan/logic/auth/update.py:198 #, 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:208 +#: ckan/logic/auth/update.py:209 msgid "User {0} not authorized to update user {1}" msgstr "" -#: ckan/logic/auth/update.py:216 +#: ckan/logic/auth/update.py:217 #, 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:225 +#: ckan/logic/auth/update.py:226 #, 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:239 +#: ckan/logic/auth/update.py:240 #, python-format msgid "User %s not authorized to update term_translation table" msgstr "Pengguna %s tidak punya izin untuk memperbarui tabel term_translation" -#: ckan/logic/auth/update.py:261 +#: ckan/logic/auth/update.py:262 msgid "Valid API key needed to edit a package" msgstr "Kunci API yang sah diperlukan untuk mengedit paket" -#: ckan/logic/auth/update.py:271 +#: ckan/logic/auth/update.py:272 msgid "Valid API key needed to edit a group" msgstr "Kunci API yang sah diperlukan untuk mengedit grup" @@ -1776,57 +2371,49 @@ msgstr "induk dari %s" msgid "has sibling %s" msgstr "punya kembaran %s" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Memuat..." - -#: ckan/public/base/javascript/modules/api-info.js:20 +#: ckan/public/base/javascript/modules/api-info.js:96 msgid "There is no API data to load for this resource" msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:21 +#: ckan/public/base/javascript/modules/api-info.js:124 msgid "Failed to load data API information" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:34 +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, python-format msgid "Input is too short, must be at least one character" -msgstr "" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" #: ckan/public/base/javascript/modules/basic-form.js:4 msgid "There are unsaved modifications to this form" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:7 +#: ckan/public/base/javascript/modules/confirm-action.js:97 msgid "Please Confirm Action" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:8 +#: ckan/public/base/javascript/modules/confirm-action.js:100 msgid "Are you sure you want to perform this action?" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:9 +#: ckan/public/base/javascript/modules/confirm-action.js:102 #: ckan/templates/user/new_user_form.html:9 #: ckan/templates/user/perform_reset.html:21 msgid "Confirm" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 #: ckan/templates/admin/confirm_reset.html:9 #: ckan/templates/group/confirm_delete.html:14 #: ckan/templates/group/confirm_delete_member.html:15 @@ -1837,39 +2424,42 @@ msgstr "" msgid "Cancel" msgstr "Batal" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Ikuti" - -#: ckan/public/base/javascript/modules/follow.js:24 +#: ckan/public/base/javascript/modules/follow.js:69 #: ckan/templates/snippets/follow_button.html:9 msgid "Unfollow" msgstr "Tidak ikuti" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Unggah" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Ikuti" -#: ckan/public/base/javascript/modules/image-upload.js:17 +#: ckan/public/base/javascript/modules/image-upload.js:60 msgid "Link" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:18 +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Unggah" + +#: ckan/public/base/javascript/modules/image-upload.js:72 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 #: ckan/templates/snippets/search_form.html:68 msgid "Remove" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Gambar" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: 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 @@ -1877,84 +2467,78 @@ msgstr "Gambar" msgid "URL" msgstr "URL" -#: ckan/public/base/javascript/modules/image-upload.js:21 +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 msgid "File" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 msgid "Save order" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 msgid "Saving..." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 msgid "Upload a file" msgstr "Unggah file" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 msgid "An Error Occurred" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 msgid "Unable to upload file" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 msgid "Unable to authenticate upload" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 msgid "Unable to get data for uploaded file" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" msgstr "" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" msgstr "" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 #: ckan/templates/organization/bulk_process.html:65 #: ckan/templates/organization/edit.html:3 #: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 +#: ckan/templates/organization/members.html:33 #: ckan/templates/package/edit_base.html:11 #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 +#: ckan/templates/package/snippets/resource_item.html:56 msgid "Edit" msgstr "Edit" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 msgid "Show more" msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 msgid "Hide" msgstr "" @@ -2084,19 +2668,19 @@ msgstr "Sampah" msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:17 +#: ckan/templates/admin/config.html:16 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:18 +#: ckan/templates/admin/config.html:17 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:27 +#: ckan/templates/admin/config.html:26 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:34 +#: ckan/templates/admin/config.html:33 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2141,81 +2725,12 @@ msgstr "" msgid "

Purge deleted datasets forever and irreversibly.

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

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." msgstr "" #: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 +#: ckan/templates/package/resource_read.html:115 #: ckan/templates/package/snippets/resource_view.html:26 msgid "Click here for more information." msgstr "" @@ -2225,12 +2740,6 @@ msgstr "" msgid "Download resource" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." msgstr "" @@ -2363,8 +2872,8 @@ msgstr "" 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/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 @@ -2379,26 +2888,12 @@ msgstr "" msgid "Edit Group" msgstr "" -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 +#: ckan/templates/group/edit_base.html:23 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/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Pengikut" - #: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 #: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 msgid "History" @@ -2413,28 +2908,6 @@ msgstr "Tambah Grup" msgid "Search groups..." msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - #: ckan/templates/group/index.html:29 msgid "There are currently no groups for this site" msgstr "" @@ -2456,11 +2929,11 @@ msgid "Edit Member" msgstr "" #: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 +#: ckan/templates/group/member_new.html:64 ckan/templates/group/members.html:6 #: ckan/templates/organization/member_new.html:7 #: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 +#: ckan/templates/organization/member_new.html:65 +#: ckan/templates/organization/members.html:8 msgid "Add Member" msgstr "" @@ -2490,44 +2963,40 @@ msgid "If you wish to invite a new user, enter their email address." msgstr "" #: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 +#: ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 +#: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" #: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 +#: ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 +#: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 #: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 #: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 #: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 +#: ckan/templates/user/edit_user_form.html:45 msgid "Delete" msgstr "Hapus" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Simpan" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 msgid "What are roles?" msgstr "" -#: ckan/templates/group/member_new.html:81 +#: ckan/templates/group/member_new.html:80 msgid "" "

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

Member: Can add/remove " @@ -2547,32 +3016,6 @@ msgstr "" msgid "Create Group" msgstr "" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Terakhir Dimodifikasi" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." @@ -2601,14 +3044,6 @@ msgstr "" msgid "my-group" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Deskripsi" - #: ckan/templates/group/snippets/group_form.html:20 msgid "A little information about my group..." msgstr "" @@ -2617,25 +3052,10 @@ msgstr "" msgid "Are you sure you want to delete this Group?" msgstr "" -#: ckan/templates/group/snippets/group_form.html:64 +#: ckan/templates/group/snippets/group_form.html:63 msgid "Save Group" msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 msgid "View {name}" @@ -2781,6 +3201,10 @@ msgstr "" msgid "groups" msgstr "" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -2902,11 +3326,11 @@ msgstr "Username" msgid "Email address" msgstr "" -#: ckan/templates/organization/member_new.html:62 +#: ckan/templates/organization/member_new.html:61 msgid "Update Member" msgstr "" -#: ckan/templates/organization/member_new.html:82 +#: ckan/templates/organization/member_new.html:81 msgid "" "

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

Editor: Can add and " @@ -2915,6 +3339,11 @@ msgid "" "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 @@ -2980,12 +3409,12 @@ msgid "" "public and private datasets belonging to this organization." msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:64 +#: ckan/templates/organization/snippets/organization_form.html:63 msgid "Save Organization" msgstr "" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 msgid "View {organization_name}" msgstr "" @@ -3030,7 +3459,7 @@ msgstr "" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 +#: ckan/templates/package/snippets/resource_item.html:32 #: ckan/templates/snippets/datapreview_embed_dialog.html:16 msgid "Preview" msgstr "Pratayang" @@ -3090,7 +3519,7 @@ msgid "" msgstr "" #: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 +#: ckan/templates/package/snippets/resource_form.html:81 msgid "Add" msgstr "Tambah" @@ -3101,48 +3530,6 @@ msgid "" "differ significantly from the current revision." msgstr "" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Galat:" - -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" - -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Terakhir diperbarui" - -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "" - #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" msgstr "" @@ -3152,15 +3539,11 @@ msgid "View resource" msgstr "" #: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 +#: ckan/templates/package/resource_edit_base.html:30 msgid "Edit resource" msgstr "" #: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 msgid "Views" msgstr "" @@ -3169,91 +3552,100 @@ msgid "API Endpoint" msgstr "API Endpoint" #: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 +#: ckan/templates/package/snippets/resource_item.html:47 msgid "Go to resource" msgstr "" #: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 +#: ckan/templates/package/snippets/resource_item.html:44 msgid "Download" msgstr "Unduh" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 msgid "URL:" msgstr "" -#: ckan/templates/package/resource_read.html:69 +#: ckan/templates/package/resource_read.html:66 msgid "From the dataset abstract" msgstr "" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/package/resource_read.html:68 #, python-format msgid "Source: %(dataset)s" msgstr "" -#: ckan/templates/package/resource_read.html:112 +#: ckan/templates/package/resource_read.html:109 msgid "There are no views created for this resource yet." msgstr "" -#: ckan/templates/package/resource_read.html:116 +#: ckan/templates/package/resource_read.html:113 msgid "Not seeing the views you were expecting?" msgstr "" -#: ckan/templates/package/resource_read.html:121 +#: ckan/templates/package/resource_read.html:118 msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -#: ckan/templates/package/resource_read.html:123 +#: ckan/templates/package/resource_read.html:120 msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/resource_read.html:124 +#: ckan/templates/package/resource_read.html:121 msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/resource_read.html:125 +#: ckan/templates/package/resource_read.html:122 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" msgstr "" -#: ckan/templates/package/resource_read.html:147 +#: ckan/templates/package/resource_read.html:144 msgid "Additional Information" msgstr "Informasi Tambahan" -#: ckan/templates/package/resource_read.html:151 +#: ckan/templates/package/resource_read.html:148 #: ckan/templates/package/snippets/additional_info.html:6 #: ckan/templates/revision/diff.html:43 #: ckan/templates/snippets/additional_info.html:11 msgid "Field" msgstr "Field" -#: ckan/templates/package/resource_read.html:152 +#: ckan/templates/package/resource_read.html:149 #: ckan/templates/package/snippets/additional_info.html:7 #: ckan/templates/snippets/additional_info.html:12 msgid "Value" msgstr "Nilai" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 msgid "unknown" msgstr "" -#: ckan/templates/package/resource_read.html:161 +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:162 #: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Dibuat" -#: ckan/templates/package/resource_read.html:165 +#: ckan/templates/package/resource_read.html:166 #: ckan/templates/package/snippets/resource_form.html:37 #: ckan/templates/package/snippets/resource_info.html:16 msgid "Format" msgstr "Format" -#: ckan/templates/package/resource_read.html:169 +#: ckan/templates/package/resource_read.html:170 #: ckan/templates/package/snippets/package_basic_fields.html:30 #: ckan/templates/snippets/license.html:21 msgid "License" @@ -3271,8 +3663,8 @@ msgstr "" msgid "Add new resource" msgstr "" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" "

This dataset has no data, why not " @@ -3366,10 +3758,6 @@ msgid "" "continue." msgstr "" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "API data" - #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 msgid "Title" @@ -3431,7 +3819,7 @@ msgstr "" msgid "Are you sure you want to delete this dataset?" msgstr "" -#: ckan/templates/package/snippets/package_form.html:44 +#: ckan/templates/package/snippets/package_form.html:43 msgid "Next: Add Data" msgstr "" @@ -3517,15 +3905,15 @@ msgstr "" msgid "Are you sure you want to delete this resource?" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:72 +#: ckan/templates/package/snippets/resource_form.html:71 msgid "Previous" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:75 +#: ckan/templates/package/snippets/resource_form.html:74 msgid "Save & add another" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 +#: ckan/templates/package/snippets/resource_form.html:77 msgid "Finish" msgstr "" @@ -3537,11 +3925,11 @@ msgstr "" msgid "A resource can be any file or link to a file containing useful data." msgstr "" -#: ckan/templates/package/snippets/resource_item.html:24 +#: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:36 +#: ckan/templates/package/snippets/resource_item.html:35 msgid "More information" msgstr "" @@ -3583,7 +3971,7 @@ msgstr "" msgid "Data and Resources" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:29 +#: ckan/templates/package/snippets/resources_list.html:30 msgid "This dataset has no data" msgstr "" @@ -3611,18 +3999,10 @@ msgstr "" msgid "eg. Information about my view" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" msgstr "" @@ -3721,11 +4101,11 @@ msgstr "" msgid "Home" msgstr "Beranda" -#: ckan/templates/snippets/language_selector.html:4 +#: ckan/templates/snippets/language_selector.html:3 msgid "Language" msgstr "" -#: ckan/templates/snippets/language_selector.html:12 +#: ckan/templates/snippets/language_selector.html:11 #: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 @@ -3884,7 +4264,7 @@ msgstr "" #: ckan/templates/user/dashboard_datasets.html:19 #: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 #: ckan/templates/user/read.html:16 msgid "Create one now?" msgstr "" @@ -3893,7 +4273,7 @@ msgstr "" msgid "You are not a member of any groups." msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 +#: ckan/templates/user/dashboard_organizations.html:21 msgid "You are not a member of any organizations." msgstr "" @@ -3957,488 +4337,204 @@ msgstr "Password" msgid "Confirm Password" msgstr "" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:56 -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:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "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:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Cari Pengguna" - -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "" - -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" 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" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -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" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." msgstr "" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." msgstr "" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Lupa password anda?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" msgstr "" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Keluar" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" +#: ckan/templates/user/new.html:6 +msgid "Registration" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Jumlah total Kumpulan data" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Peringkat Tertinggi Kumpulan data" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Peringkat rata-rata" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Jumlah peringkat" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Tidak ada peringkat" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Kumpulan Data Paling Sering Diedit" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Jumlah editan" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Grup Terbesar" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Jumlah kumpulan data" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Tag Tertinggi" - -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "Kunci API" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" +#: 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:6 +msgid "Password reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" msgstr "" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Cari Pengguna" diff --git a/ckan/i18n/is/LC_MESSAGES/ckan.mo b/ckan/i18n/is/LC_MESSAGES/ckan.mo index f5b315a7e68..408dde96f7e 100644 Binary files a/ckan/i18n/is/LC_MESSAGES/ckan.mo and b/ckan/i18n/is/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/is/LC_MESSAGES/ckan.po b/ckan/i18n/is/LC_MESSAGES/ckan.po index 3579abda7da..863d19bb0ff 100644 --- a/ckan/i18n/is/LC_MESSAGES/ckan.po +++ b/ckan/i18n/is/LC_MESSAGES/ckan.po @@ -1,4573 +1,4669 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Virkni aðgangsheimildar fannst ekki: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Lokið" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Kerfisstjóri" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Í bið" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Útgefandi" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Sendi" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Meðlimur" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Villa" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Þú þarft að vera kerfisstjóri til að geta stjórnað" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Upphleðslu er ekki lokið" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Titill síðu" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Tilfang fannst ekki" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Útlit" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Þú hefur ekki heimild til að opna síðuna" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Slagorð vefsins" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Hlaða inn í DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Merki vefsins" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Villa í upphleðslu:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Villa:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Texti um vefinn" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Kynningartexti" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Staða" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Texti á heimasíðu" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Síðast uppfært" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Sérsniðið CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Aldrei" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Sérsníðanlegt CSS var sett inn í haus síðunnar" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Upphleðsluskrá" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Heimasíða" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Upplýsingar" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Endir á skrá" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Tilfang DataStore fannst ekki" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Get ekki varanlega eytt %s þar sem tengd útgáfa %s inniheldur pakka %s sem á" -" eftir að eyða út" +"Þessi gögn eru ógild (til dæmis: tölugildi er ekki innan marka eða var " +"slegið inn í textareit)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Vandamál við að eyða útgáfu %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Tilfangið „{0}“ fannst ekki." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Hreinsun lokið" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Notandinn {0} hefur ekki heimild til að uppfæra tilfangið {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Aðgerð ekki framkvæmd." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Þú hefur ekki heimild til að opna síðuna" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "Opnaðu tilfangsgögn í gegnum nettengt API með öflugum leitarstuðningi" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Aðgangur óheimill" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Ítarlegri upplýsingar má finna í aðalleiðbeiningum CKAN gagnaforritaskila og " +"gagnabankans.

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Fannst ekki" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Viðmið" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Villa í fyrirspurn" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Heiti aðgerðar ekki þekkt: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Stofna" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON-villa: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Uppfæra / Færa inn" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Gagnavilla fyrirspurnar: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Fyrirspurn" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Ekki hægt að birta útgáfu af þessari tegund: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Fyrirspurn (með SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Ekki hægt að lesa einingu af þessari tegund: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Athugar" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Get ekki stofnað nýja einingu af þessari tegund: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Dæmi um fyrirspurn (fyrstu 5 niðurstöður)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Ekki tókst að bæta pakka við uppflettitöflu leitarvélar" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Dæmi um fyrirspurn (niðurstöður sem innihalda 'jones') " -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Ekki tókst að uppfæra einingu af þessari tegund: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Dæmi um fyrirspurn (með SQL yfirlýsingu)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Ekki tókst að uppfæra uppflettitöflu leitarvélar" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Dæmi: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Get ekki eytt einingu af þessari tegund: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Einföld ajax (JSONP) fyrirspurn til data API með jQuery." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Engin útgáfa tilgreind" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Dæmi: Kyrkislanga" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Það er engin útgáfa með þetta auðkenni: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Leitarstreng vantar ('since_id=UUID' eða 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Gat ekki lesið breytur: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Lýsing" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Villa í leitarvalkosti: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Vista" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Óþekkt skráning: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Villa í qjson gildi: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Fyrirspurnarbreytur verða að vera á json kóðuðu dictionary sniði" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Safn fannst ekki" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Hleð..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Stofnun fannst ekki" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Data API" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Röng safnategund" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tafla" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Stofnanir" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Söfn" - -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Efnisorð" - -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Snið" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Leyfi" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Heimild vantar til að framkvæma uppfærslu á magni" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Gagnapakkar á hverri síðu" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Þú hefur ekki heimild til að stofna safn" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Prófunarstillingar" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Notandinn %r hefur ekki heimild til að breyta %s" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Samsvörun" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Villa í heilindum gagna" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Notandinn %r hefur ekki heimild til að breyta %s aðgangsheimildum" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Þú hefur ekki heimild til að eyða safninu %s" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Síðast breytt" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Stofnuninni hefur verið eytt" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Viðbótarupplýsingar í vaxandi röð" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Safninu hefur verið eytt." +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Viðbótarupplýsingar í lækkandi röð" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s hefur verið eytt" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Vinsælt" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Þú hefur ekki heimild til að bæta notanda við safnið %s" +#: 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" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Þú hefur ekki heimild til til að eyða notendum safnsins %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "valfrjáls texti" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Meðlimi safns hefur verið eytt." +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Landskóði" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Veljið tvær útgáfur til að hefja samanburð." +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "valfrjáls tilfangstexti" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Útgáfusaga CKAN safnsins" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Nýlegar breytingar á CKAN safninu:" +#: 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/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Skilaboð úr kerfisskrá:" +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Þú fylgist nú með {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 "0 gagnapakkar" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Þú ert ekki lengur að fylgjast með {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 "Gagnaforskoðunartól CKAN býður upp á mikla möguleika" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Ekki heimild til að að skoða fylgjendur %s" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Fylgjendur" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "Vefurinn er ekki virkur. Það á eftir að setja upp gagnagrunninn." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Tilföng" -#: ckan/controllers/home.py:81 -#, 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/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Mynd" -#: ckan/controllers/home.py:83 -#, 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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Slóð á mynd" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: 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ð)" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Breytan „{parameter_name}“ er ekki heiltala" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Gagnaskoðandi" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Gagnapakki fannst ekki" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Myndrit" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Ógilt snið á útgáfu: %r" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Kort" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -"Skoðun á {package_type} gagnasöfnun á {format} sniði er ekki studd " -"(sniðmátsskráin {file} fannst ekki)." - -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Ekki heimild til að lesa pakkann %s" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Útgáfusaga CKAN gagnapakka" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Nýlegar breytingar á CKAN gagnapakka:" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Þú hefur ekki heimild til að búa til pakka" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Þú hefur ekki heimild til að breyta þessu tilfangi" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Tilfang fannst ekki" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Síur" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Þú hefur ekki heimild til að uppfæra gagnapakka" +#: 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" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Gagnapakkinn {id} fannst ekki." +#: 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" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Þú verður að bæta við a.m.k. einu tilfangi" +#: 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" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Villa" +#: 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" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Þú hefur ekki heimild til að búa til tilfang" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Gerð myndrits" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Þú hefur ekki heimild til að búa til tilfang fyrir þennan pakka" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Hópur (ás 1)" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Ekki tókst að bæta pakka við uppflettitöflu leitarvélar." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Röð (ás 2)" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Ekki tókst að uppfæra uppflettitöflu leitarvélar." +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Gerð svæðis" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Gagnapakka hefur verið eytt." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Breiddargráðureitur" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Óheimilt að eyða pakka %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Lengdargráðureitur" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Tilfangi hefur verið eytt." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON-reitur" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Þú hefur ekki heimild til að eyða tilfanginu %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Sjálfvirk þysjun að eiginleikum" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Tilfangssýn fannst ekki" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Klasamerkingar" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Tilfangsgögn fundust ekki" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Heildarfjöldi gagnapakka" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Engar skrár til niðurhals" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Dagsetning" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Óheimilt að lesa gagnapakka %s" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Fjöldi gagnapakka" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Þú hefur ekki lesaðgang að tilfanginu %s" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Uppfærslur gagnapakka á viku" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Þú hefur ekki heimild til að breyta þessu tilfangi" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Allar uppfærslur gagnapakka" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Sýn fannst ekki" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Nýir gagnapakkar" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Sýnartegund fannst ekki" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Gagnapakkar með hæstu einkunn" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Villa í tilfangssýnargögnum" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Meðaleinkunn" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Tilfangssýn ekki uppgefin" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Fjöldi einkunna" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Forskoðun hefur ekki verið skilgreind." +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Engar einkunnir" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Útgáfusaga CKAN gagnageymslu" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Gagnapakkar sem hafa verið uppfærðir oftast" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Nýlegar breytingar á CKAN gagnageymslu." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Gagnapakki" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Hefur áhrif á gagnapakka: %s. \n" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Fjöldi breytinga" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Útgáfa uppfærð" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Engir gagnapakkar uppfærðir" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Annað" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Stærstu söfn" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Efnisorð fannst ekki" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Safn" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Notandi fannst ekki" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Fjöldi gagnapakka" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Þú hefur ekki heimild til að skrá þig sem notandi." +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Engin söfn" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Þú hefur ekki heimild til að stofna notanda" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Algengustu efnisorðin" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Þú hefur ekki heimild til að eyða notanda með auðkenninu „{user_id}“." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Heiti efnisorðs" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Enginn notandi var tilgreindur" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Fjöldi gagnapakka" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Þú hefur ekki heimild til að breyta notandanum %s" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Prófíllinn var uppfærður" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Notandi" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Þú hefur ekki heimild til að stofna notanda %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Talnagögn" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Villa í stafarugli. Reyndu aftur." +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Heildarfjöldi gagnapakka" -#: ckan/controllers/user.py:265 -#, 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“" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Texti" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Þú hefur ekki heimild til að breyta notanda." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Vefsíða" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "Notandinn %s hefur ekki heimild til að breyta %s" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Vefsíðuslóð" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Innslegið lykilorð er rangt" +#: 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/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Gamalt lykilorð" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Vafrinn þinn styður ekki iframes." -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "rangt lykilorð" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Virkni aðgangsheimildar fannst ekki: %s" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Innskráning mistókst. Rangt notandanafn eða aðgangsorð." +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Kerfisstjóri" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Þú hefur ekki heimild til að biðja um endurstillingu aðgangsorðs." +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Útgefandi" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "„%s“ samræmist fleiri en einum notanda" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Meðlimur" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Enginn notandi fannst: %s" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Þú þarft að vera kerfisstjóri til að geta stjórnað" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Endurstillingarkóði hefur verið sendur til þín í tölvupósti." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Titill síðu" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Ekki tókst að senda endurstillingartengil: %s" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Útlit" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Þú hefur ekki heimild til að endurstilla aðgangsorð." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Slagorð vefsins" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Ógildur endurstillingarkóði. Reyndu aftur." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Merki vefsins" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Aðgangsorðinu þínu hefur verið breytt." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Aðgangsorð verður að vera 4 stafir eða lengra." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Texti um vefinn" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Aðgangsorðin sem þú slóst inn stemma ekki." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Kynningartexti" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Þú verður að slá inn aðgangsorð" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Texti á heimasíðu" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Eftirfarandi atriði fannst ekki" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Sérsniðið CSS" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} fannst ekki" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Sérsníðanlegt CSS var sett inn í haus síðunnar" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Allt" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Heimasíða" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Gildi vantar" +#: ckan/controllers/admin.py:161 +#, 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/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Áframsending á ytri síðu er ekki heimil" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Vandamál við að eyða útgáfu %s: %s" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} bætti efnisorðinu {tag} við gagnapakkann {dataset}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Hreinsun lokið" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} uppfærði safnið {group}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Aðgerð ekki framkvæmd." -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} uppfærði stofnunina {organization}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Aðgangur óheimill" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} uppfærði gagnapakkann {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Fannst ekki" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} hefur breytt viðbótinni {extra} við gagnapakkann {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Villa í fyrirspurn" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} uppfærði tilfangið {resource} í gagnapakkanum {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Heiti aðgerðar ekki þekkt: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} uppfærði prófílinn sinn" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON-villa: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} eyddi safninu {group}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Gagnavilla fyrirspurnar: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} eyddi stofnuninni {organization}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Ekki hægt að birta útgáfu af þessari tegund: %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} eyddi gagnapakkanum {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Ekki hægt að lesa einingu af þessari tegund: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} eyddi viðbótinni {extra} við gagnapakkann {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Get ekki stofnað nýja einingu af þessari tegund: %s %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} eyddi skránni {resource} úr gagnapakkanum {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Ekki tókst að bæta pakka við uppflettitöflu leitarvélar" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} stofnaði safnið {group}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Ekki tókst að uppfæra einingu af þessari tegund: %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} stofnaði stofnunina {organization}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Ekki tókst að uppfæra uppflettitöflu leitarvélar" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} stofnaði gagnapakkann {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Get ekki eytt einingu af þessari tegund: %s %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} hefur sett inn viðbótina {extra} við gagnapakkann {dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Engin útgáfa tilgreind" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} bætti skránni {resource} við gagnapakkann {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Það er engin útgáfa með þetta auðkenni: %s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} skráði sig" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Leitarstreng vantar ('since_id=UUID' eða 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} fjarlægði efnisorðið {tag} af gagnapakkanum {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Gat ekki lesið breytur: %r" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} fylgist nú með gagnapakkanum {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Villa í leitarvalkosti: %s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} fylgist nú með notandanum {user}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Óþekkt skráning: %s" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} fylgist nú með safninu {group}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Villa í qjson gildi: %r" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Skoða" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Fyrirspurnarbreytur verða að vera á json kóðuðu dictionary sniði" -#: ckan/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/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Safn fannst ekki" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "janúar" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Stofnun fannst ekki" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "febrúar" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Röng safnategund" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "mars" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Stofnanir" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "apríl" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Söfn" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "maí" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Efnisorð" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "júní" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Snið" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "júlí" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Leyfi" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "ágúst" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Notandinn %r hefur ekki heimild til að breyta %s" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "september" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Heimild vantar til að framkvæma uppfærslu á magni" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "október" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Þú hefur ekki heimild til að stofna safn" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "nóvember" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Villa í heilindum gagna" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "desember" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Notandinn %r hefur ekki heimild til að breyta %s aðgangsheimildum" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Rétt í þessu" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Þú hefur ekki heimild til að eyða safninu %s" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} mínútu síðan" -msgstr[1] "{mins} mínútum síðan" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Stofnuninni hefur verið eytt" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} klukkustund síðan" -msgstr[1] "{hours} klukkustundum síðan" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Safninu hefur verið eytt." -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} degi síðan" -msgstr[1] "{days} dögum síðan" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s hefur verið eytt" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} mánuðum síðan" -msgstr[1] "{months} mánuðum síðan" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "meira en {years} ár síðan" -msgstr[1] "meira en {years} ár síðan" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Þú hefur ekki heimild til að bæta notanda við safnið %s" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Þú hefur ekki heimild til til að eyða notendum safnsins %s" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{day} {month}, {year}" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Meðlimi safns hefur verið eytt." -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bæti" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Veljið tvær útgáfur til að hefja samanburð." -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Útgáfusaga CKAN safnsins" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Nýlegar breytingar á CKAN safninu:" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Skilaboð úr kerfisskrá:" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Þú fylgist nú með {0}" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Þú ert ekki lengur að fylgjast með {0}" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Ekki heimild til að að skoða fylgjendur %s" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: 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/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/home.py:73 +#, 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/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Breytan „{parameter_name}“ er ekki heiltala" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Gagnapakki fannst ekki" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Ógilt snið á útgáfu: %r" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Uppfærðu myndina á gravatar.com" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Óþekkt" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Ekki heimild til að lesa pakkann %s" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Nafnlaus skrá" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Útgáfusaga CKAN gagnapakka" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Stofnaði nýjan gagnapakka." +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Nýlegar breytingar á CKAN gagnapakka:" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Breytti tilföngum." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Þú hefur ekki heimild til að búa til pakka" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Breytti stillingum." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Þú hefur ekki heimild til að breyta þessu tilfangi" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} fletting" -msgstr[1] "{number} flettingar" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Þú hefur ekki heimild til að uppfæra gagnapakka" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} nýleg fletting" -msgstr[1] "{number} nýlegar flettingar" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Gagnapakkinn {id} fannst ekki." -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Þú verður að bæta við a.m.k. einu tilfangi" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Netfang viðtakanda vantar!" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Þú hefur ekki heimild til að búa til tilfang" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "stofnun" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Þú hefur ekki heimild til að búa til tilfang fyrir þennan pakka" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "safn" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Ekki tókst að bæta pakka við uppflettitöflu leitarvélar." -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Gildi vantar" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Ekki tókst að uppfæra uppflettitöflu leitarvélar." -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Gagnapakka hefur verið eytt." + +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "Ekki gert ráð fyrir innsláttarsvæðinu %(name)s hér." +msgid "Unauthorized to delete package %s" +msgstr "Óheimilt að eyða pakka %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Vinsamlegast sláðu inn heiltölu" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Tilfangi hefur verið eytt." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Tilföng" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Þú hefur ekki heimild til að eyða tilfanginu %s" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Tilföng pakkans eru ógild" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Tilfangssýn fannst ekki" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Viðbætur" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Tilfangsgögn fundust ekki" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Efnisorðið „%s“ er ekki til" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Engar skrár til niðurhals" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Notandi" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Óheimilt að lesa gagnapakka %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Gagnapakki" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Þú hefur ekki lesaðgang að tilfanginu %s" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Safn" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Þú hefur ekki heimild til að breyta þessu tilfangi" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Tókst ekki að greina sem gilt JSON" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Sýn fannst ekki" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Sýnartegund fannst ekki" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Stofnun er ekki til" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Villa í tilfangssýnargögnum" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Þú getur ekki bætt gagnapakka við þessa stofnun" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Tilfangssýn ekki uppgefin" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Ógild heiltala" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Forskoðun hefur ekki verið skilgreind." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Þarf að vera náttúruleg tala" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Útgáfusaga CKAN gagnageymslu" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Þarf að vera jákvæð heiltala" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Nýlegar breytingar á CKAN gagnageymslu." -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Snið dagsetningar er ekki rétt" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Hefur áhrif á gagnapakka: %s. \n" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Engir tenglar eru leyfðir í log_message." +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Útgáfa uppfærð" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Auðkenni gagnapakka er nú þegar til" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Annað" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Skrá" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Efnisorð fannst ekki" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Ekkert safn með þetta heiti eða auðkenni." +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Þú hefur ekki heimild til að skrá þig sem notandi." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Tegund virkni" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Þú hefur ekki heimild til að stofna notanda" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Nöfn þurfa að vera strengir" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Þú hefur ekki heimild til að eyða notanda með auðkenninu „{user_id}“." -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Það er ekki hægt að nota þetta heiti" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Enginn notandi var tilgreindur" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Must be at least %s characters long" -msgstr "Þarf að vera að minnsta kosti %s stafir" +msgid "Unauthorized to edit user %s" +msgstr "Þú hefur ekki heimild til að breyta notandanum %s" + +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Notandi fannst ekki" + +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Prófíllinn var uppfærður" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Heiti má ekki vera lengra en %i bókstafir" +msgid "Unauthorized to create user %s" +msgstr "Þú hefur ekki heimild til að stofna notanda %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Villa í stafarugli. Reyndu aftur." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format 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: " -"-_" +"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/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Þessi slóð er nú þegar skráð." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Þú hefur ekki heimild til að breyta notanda." -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Heitið „%s“ er styttra en %s stafa lágmarkslengd" +msgid "User %s not authorized to edit %s" +msgstr "Notandinn %s hefur ekki heimild til að breyta %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Heitið „%s“ er lengra en %s stafa hámarkslengdin" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Innslegið lykilorð er rangt" -#: ckan/logic/validators.py:375 -#, 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/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Gamalt lykilorð" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Lykillinn „%s“ er nú þegar til" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "rangt lykilorð" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Safn með þessu heiti er þegar til staðar í gagnapakkanum" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Innskráning mistókst. Rangt notandanafn eða aðgangsorð." -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Efnisorðið „%s“ nær ekki %s stafa lágmarkslengd " +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Þú hefur ekki heimild til að biðja um endurstillingu aðgangsorðs." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Efnisorðið „%s“ fer yfir %i stafa hámarkslengd" +msgid "\"%s\" matched several users" +msgstr "„%s“ samræmist fleiri en einum notanda" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, 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: " -"-_." +msgid "No such user: %s" +msgstr "Enginn notandi fannst: %s" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Efnisorðið „%s\" má ekki vera í hástöfum" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Endurstillingarkóði hefur verið sendur til þín í tölvupósti." -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Notendanöfn þurfa að vera strengir" +#: ckan/controllers/user.py:503 +#, python-format +msgid "Could not send reset link: %s" +msgstr "Ekki tókst að senda endurstillingartengil: %s" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Þetta notandanafn er ekki laust." +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Þú hefur ekki heimild til að endurstilla aðgangsorð." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Vinsamlegast sláðu inn bæði aðgangsorðin" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Ógildur endurstillingarkóði. Reyndu aftur." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Aðgangsorð þurfa að vera strengir" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Aðgangsorðinu þínu hefur verið breytt." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Aðgangsorðið verður að vera 4 stafir eða lengra" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Aðgangsorð verður að vera 4 stafir eða lengra." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Aðgangsorðin sem þú slóst inn stemma ekki" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Aðgangsorðin sem þú slóst inn stemma ekki." -#: ckan/logic/validators.py:610 -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/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Þú verður að slá inn aðgangsorð" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Heiti þarf að vera að minnsta kosti %s stafir" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Eftirfarandi atriði fannst ekki" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Þetta heiti er þegar í notkun." +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} fannst ekki" -#: ckan/logic/validators.py:633 -#, 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/controllers/user.py:654 +msgid "Everything" +msgstr "Allt" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Efnisorðið fannst ekki." +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Gildi vantar" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Efnisorðið %s tilheyrir ekki orðasafninu %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Áframsending á ytri síðu er ekki heimil" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Ekkert efnisorð" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} bætti efnisorðinu {tag} við gagnapakkann {dataset}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Efnisorðið %s tilheyrir nú þegar orðasafninu %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} uppfærði safnið {group}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Vinsamlegast gefðu upp gilda vefslóð" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} uppfærði stofnunina {organization}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "hlutverkið er ekki til." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} uppfærði gagnapakkann {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Gagnapakkar með engar stofnanir geta ekki verið lokaðir." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} hefur breytt viðbótinni {extra} við gagnapakkann {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Ekki listi" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} uppfærði tilfangið {resource} í gagnapakkanum {dataset}" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Ekki strengur" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} uppfærði prófílinn sinn" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Þetta foreldri myndi skapa lykkju í stigveldinu" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} eyddi safninu {group}" -#: ckan/logic/validators.py:791 -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/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} eyddi stofnuninni {organization}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" er nauðsynlegt þegar \"filter_values\" er útfyllt" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} eyddi gagnapakkanum {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" er nauðsynlegt þegar \"filter_fields\" er útfyllt" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} eyddi viðbótinni {extra} við gagnapakkann {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Það er til skemareitur með sama nafni" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} eyddi skránni {resource} úr gagnapakkanum {dataset}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Búa til object %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} stofnaði safnið {group}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Stofna vensl milli pakka: %s %s %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} stofnaði stofnunina {organization}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Stofna member object %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} stofnaði gagnapakkann {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Reyni að stofna stofnun sem safn" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} hefur sett inn viðbótina {extra} við gagnapakkann {dataset}" -#: ckan/logic/action/create.py:881 -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/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} bætti skránni {resource} við gagnapakkann {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Þú verður að tilgreina einkunn (breytan „rating“)." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} skráði sig" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Einkunn verður að vera heiltala." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} fjarlægði efnisorðið {tag} af gagnapakkanum {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Einkunn verður að vera á milli %i og %i" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} fylgist nú með gagnapakkanum {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} fylgist nú með notandanum {user}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Vinsamlegast skráðu þig inn til að fylgjast með notendum" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} fylgist nú með safninu {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Þú getur ekki fylgst með sjálfum þér" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Skoða" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Þú fylgist nú þegar með {0}" +#: 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/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Vinsamlegast skráðu þig inn til að fylgjast með gagnapakka." +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "janúar" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Notandinn {username} er ekki til." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "febrúar" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Vinsamlegast skráðu þig inn til að fylgjast með safni." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "mars" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "apríl" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Eyða pakka: %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "maí" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Eyða %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "júní" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Eyða meðlimi: %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "júlí" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "auðkenni ekki í gögnum" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "ágúst" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Fann ekki orðasafnið „%s“" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "september" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Fann ekki efnisorðið „%s“" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "október" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Vinsamlegast skráðu þig inn til að hætta að fylgjast með einhverju." +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "nóvember" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Þú ert ekki að fylgjast með {0}." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "desember" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Skrá fannst ekki." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Rétt í þessu" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Ekki tilgreina ef þú notar breytuna „query“" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} mínútu síðan" +msgstr[1] "{mins} mínútum síðan" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Verður að vera : par" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} klukkustund síðan" +msgstr[1] "{hours} klukkustundum síðan" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Svæðið „{field}“ virkar ekki í resource_search." +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} degi síðan" +msgstr[1] "{days} dögum síðan" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Pakkinn fannst ekki." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} mánuðum síðan" +msgstr[1] "{months} mánuðum síðan" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Uppfæra object %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "meira en {years} ár síðan" +msgstr[1] "meira en {years} ár síðan" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Uppfæra vensl pakka: %s %s %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus fannst ekki." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{day} {month}, {year}" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Stofnun fannst ekki." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bæti" -#: 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/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Notandinn %s hefur ekki heimild til að breyta þessum söfnum" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: 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/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -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/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: 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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Þú hefur ekki heimild til að búa til notendur" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Safnið fannst ekki." +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Þú verður að hafa gildan API lykil til að stofna pakka" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Þú verður að hafa gildan API lykil til að stofna safn" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Uppfærðu myndina á gravatar.com" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Notandinn %s hefur ekki heimild til að bæta við notendum" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Óþekkt" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Notandinn %s hefur ekki heimild til að breyta safninu %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Nafnlaus skrá" -#: 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/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Stofnaði nýjan gagnapakka." -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "Tilfangssýn fannst ekki, get ekki athugað heimildir" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Breytti tilföngum." -#: 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/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Breytti stillingum." -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} fletting" +msgstr[1] "{number} flettingar" -#: 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/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} nýleg fletting" +msgstr[1] "{number} nýlegar flettingar" -#: ckan/logic/auth/delete.py:103 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organizations" -msgstr "Notandinn %s hefur ekki heimild til að eyða stofnunum" +msgid "%s <%s>" +msgstr "%s <%s>" -#: 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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Netfang viðtakanda vantar!" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "stofnun" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Óheimilt" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "safn" -#: 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/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Gildi vantar" -#: ckan/logic/auth/get.py:130 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read package %s" -msgstr "Notandinn %s hefur ekki aðgang til að lesa pakkann %s" +msgid "The input field %(name)s was not expected." +msgstr "Ekki gert ráð fyrir innsláttarsvæðinu %(name)s hér." -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Notandinn %s hefur ekki heimild til að lesa tilfangið %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Vinsamlegast sláðu inn heiltölu" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "Notandinn %s hefur ekki lesaðgang að safninu %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "Skráðu þig inn ef þú vilt skoða stjórnborðið." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Tilföng pakkans eru ógild" -#: ckan/logic/auth/update.py:39 -#, 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/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Viðbætur" -#: ckan/logic/auth/update.py:71 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Notandinn %s hefur ekki heimild til að breyta skránni %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Efnisorðið „%s“ er ekki til" -#: ckan/logic/auth/update.py:100 -#, 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/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Tókst ekki að greina sem gilt JSON" -#: ckan/logic/auth/update.py:128 -#, 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/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "" -#: ckan/logic/auth/update.py:145 -#, 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/validators.py:47 +msgid "Organization does not exist" +msgstr "Stofnun er ekki til" -#: ckan/logic/auth/update.py:162 -#, 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/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Þú getur ekki bætt gagnapakka við þessa stofnun" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Þú þarf að skrá þig inn til að breyta notanda" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Ógild heiltala" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "Notandinn %s hefur ekki heimild til að breyta notandanum %s" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Þarf að vera náttúruleg tala" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "Notandinn {0} hefur ekki hemild til að uppfæra notandann {1}" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Þarf að vera jákvæð heiltala" -#: ckan/logic/auth/update.py:216 -#, 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:225 -#, 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:239 -#, 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/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Til að breyta pakka þarftu gildan API lykil" - -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Þú verður að hafa gildan API lykil til að breyta safni" - -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Skilmálar ekki tilgreindir" - -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" - -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" - -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Snið dagsetningar er ekki rétt" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Engir tenglar eru leyfðir í log_message." -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Auðkenni gagnapakka er nú þegar til" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Skrá" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Ekkert safn með þetta heiti eða auðkenni." -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Annað (opið)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Tegund virkni" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Annað (í almannaeigu)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Nöfn þurfa að vera strengir" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Annað (tilvísun)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Það er ekki hægt að nota þetta heiti" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Þarf að vera að minnsta kosti %s stafir" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Heiti má ekki vera lengra en %i bókstafir" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Annað (ekki til endursölu)" +#: ckan/logic/validators.py:343 +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/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Annað (ekki opið)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Þessi slóð er nú þegar skráð." -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "er háð %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Heitið „%s“ er styttra en %s stafa lágmarkslengd" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "er háð %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Heitið „%s“ er lengra en %s stafa hámarkslengdin" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "dregið af %s" +msgid "Version must be a maximum of %i characters long" +msgstr "Útgáfa má að hámarki vera %i stafir að lengd" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "hefur tengingu %s" +msgid "Duplicate key \"%s\"" +msgstr "Lykillinn „%s“ er nú þegar til" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "tengir á %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Safn með þessu heiti er þegar til staðar í gagnapakkanum" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "tengt frá %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Efnisorðið „%s“ nær ekki %s stafa lágmarkslengd " -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "er barn %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Efnisorðið „%s“ fer yfir %i stafa hámarkslengd" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "er foreldri %s" +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/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "hefur systkini %s" +msgid "Tag \"%s\" must not be uppercase" +msgstr "Efnisorðið „%s\" má ekki vera í hástöfum" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Hleð..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Notendanöfn þurfa að vera strengir" -#: ckan/public/base/javascript/modules/api-info.js:20 -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/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Þetta notandanafn er ekki laust." -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Villa kom upp við að sækja upplýsingar um API gögn" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Vinsamlegast sláðu inn bæði aðgangsorðin" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Ekkert fannst" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Aðgangsorð þurfa að vera strengir" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Sláðu inn fyrstu stafina..." +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Aðgangsorðið verður að vera 4 stafir eða lengra" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Of stutt, verður að vera í það minnsta einn stafur" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Aðgangsorðin sem þú slóst inn stemma ekki" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Það eru óvistaðar breytingar í þessu formi" +#: ckan/logic/validators.py:611 +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/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Vinsamlegast staðfestu aðgerðina" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Heiti þarf að vera að minnsta kosti %s stafir" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Ertu viss um að þú viljir framkvæma þessa aðgerð?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Þetta heiti er þegar í notkun." -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Staðfesta" +#: ckan/logic/validators.py:634 +#, 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/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Hætta við" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Efnisorðið fannst ekki." -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Fylgjast með" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Efnisorðið %s tilheyrir ekki orðasafninu %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Hætta að fylgjast með" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Ekkert efnisorð" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Hlaða inn" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Efnisorðið %s tilheyrir nú þegar orðasafninu %s" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Tengill" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Vinsamlegast gefðu upp gilda vefslóð" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Fjarlægja" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "hlutverkið er ekki til." -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Mynd" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Gagnapakkar með engar stofnanir geta ekki verið lokaðir." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "Vefslóð" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Ekki listi" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Skrá" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Ekki strengur" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Sæktu skrá á tölvuna þína" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Þetta foreldri myndi skapa lykkju í stigveldinu" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/validators.py:792 +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/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Endurpantaðu tilföng" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" er nauðsynlegt þegar \"filter_values\" er útfyllt" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Vistaðu pöntun" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" er nauðsynlegt þegar \"filter_fields\" er útfyllt" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Vistun í gangi..." +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Það er til skemareitur með sama nafni" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Hlaða inn skrá" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Villa kom upp" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Búa til object %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Skránni hefur verið hlaðið inn" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Stofna vensl milli pakka: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Ekki tókst að hlaða inn skrá" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Stofna member object %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Ekki fékkst heimild til að hlaða inn skrá" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Reyni að stofna stofnun sem safn" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -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/logic/action/create.py:893 +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/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Þú ert að sækja skrá. Ertu viss um að viljir fara af síðunni og stöðva " -"niðurhalið? " +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Þú verður að tilgreina einkunn (breytan „rating“)." -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Endurraða tilfangssýnum" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Einkunn verður að vera heiltala." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Breyta" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Einkunn verður að vera á milli %i og %i" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Sýna fleiri" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Fela" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Vinsamlegast skráðu þig inn til að fylgjast með notendum" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Villa %(error_code)s" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Þú getur ekki fylgst með sjálfum þér" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Um {0}" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Þú fylgist nú þegar með {0}" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Vinsamlegast skráðu þig inn til að fylgjast með gagnapakka." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Notandinn {username} er ekki til." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Keyrir á CKAN" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Vinsamlegast skráðu þig inn til að fylgjast með safni." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Stillingar kerfisstjóra" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Skoða prófíl" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Eyða pakka: %s" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, 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)" +msgid "REST API: Delete %s" +msgstr "REST API: Eyða %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Stjórnborð" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Eyða meðlimi: %s" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Breyta stillingum" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "auðkenni ekki í gögnum" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Stillingar" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Fann ekki orðasafnið „%s“" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Skrá út" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Fann ekki efnisorðið „%s“" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Innskráning" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Vinsamlegast skráðu þig inn til að hætta að fylgjast með einhverju." -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Skráning" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Þú ert ekki að fylgjast með {0}." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Gagnapakkar" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Skrá fannst ekki." -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Leita að gagnapökkum" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Ekki tilgreina ef þú notar breytuna „query“" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Leit" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Verður að vera : par" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Hoppa fram að innihaldi" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Svæðið „{field}“ virkar ekki í resource_search." -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Hlaða inn færri" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Pakkinn fannst ekki." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Hlaða inn fleiri" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Uppfæra object %s" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "Engar uppfærslur skráðar" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Uppfæra vensl pakka: %s %s %s" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Kerfisstjórn" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus fannst ekki." -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Kerfisstjórar" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Stofnun fannst ekki." -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Stillingar" +#: 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/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Rusl" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Notandinn %s hefur ekki heimild til að breyta þessum söfnum" -#: ckan/templates/admin/config.html:16 -#: 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/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/templates/admin/config.html:17 -msgid "Reset" -msgstr "Núllstilla" +#: 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/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Uppfæra stillingar" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +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/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN stillingar" +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:108 #, 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" +msgid "User %s not authorized to edit these packages" +msgstr "Notandinn %s hefur ekki heimild til að breyta þessum pökkum" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:119 #, 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

" +msgid "User %s not authorized to create groups" +msgstr "Notandinn %s hefur ekki heimild til að stofna söfn" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Eyða varanlega" +#: 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/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "

Hreinsa varanlega burt eyddum gagnapökkum.

" +#: 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/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Þú hefur ekki heimild til að búa til notendur" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "Opnaðu tilfangsgögn í gegnum nettengt API með öflugum leitarstuðningi" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Safnið fannst ekki." -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" -"Ítarlegri upplýsingar má finna í aðalleiðbeiningum CKAN gagnaforritaskila og " -"gagnabankans.

" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Þú verður að hafa gildan API lykil til að stofna pakka" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Viðmið" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Þú verður að hafa gildan API lykil til að stofna safn" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "Hægt er opna Data API með eftirfarandi aðgerðum CKAN action API." +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Notandinn %s hefur ekki heimild til að bæta við notendum" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Stofna" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Notandinn %s hefur ekki heimild til að breyta safninu %s" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Uppfæra / Færa inn" +#: 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/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Fyrirspurn" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "Tilfangssýn fannst ekki, get ekki athugað heimildir" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Fyrirspurn (með SQL)" +#: 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Athugar" +#: 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/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Dæmi um fyrirspurn (fyrstu 5 niðurstöður)" +#: 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Dæmi um fyrirspurn (niðurstöður sem innihalda 'jones') " +#: 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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Dæmi um fyrirspurn (með SQL yfirlýsingu)" +#: 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/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Dæmi: Javascript" +#: 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/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." +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Óheimilt" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Dæmi: Kyrkislanga" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Notandinn %s hefur ekki heimild til að lesa þessa pakka" -#: 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/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/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Smelltu hér til að fá meiri upplýsingar." +#: 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/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Hlaða niður skrá" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Notandinn %s hefur ekki lesaðgang að safninu %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Vafrinn þinn styður ekki iframes." +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Skráðu þig inn ef þú vilt skoða stjórnborðið." -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Forskoðun ekki í boði." +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Notandinn %s hefur ekki heimild til þess að breyta pakkanum %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Nánari upplýsingar..." +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Notandinn %s hefur ekki heimild til að breyta skránni %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:100 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Engin meðhöndlun skilgreind fyrir gagnategundina: %(type)s." +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/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Hefðbundið" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Notandinn %s hefur ekki heimild til að eyða stofnuninni %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Hefðbundin stærð innsláttarsvæðis" +#: ckan/logic/auth/update.py:145 +#, 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/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Meðalstórt" +#: ckan/logic/auth/update.py:162 +#, 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/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Meðalstórt innsláttarsvæði" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Þú þarf að skrá þig inn til að breyta notanda" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Full stærð" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Notandinn %s hefur ekki heimild til að breyta notandanum %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Full stærð Innsláttarsvæðis" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "Notandinn {0} hefur ekki hemild til að uppfæra notandann {1}" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Stórt" +#: ckan/logic/auth/update.py:217 +#, 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/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Stórt innsláttarsvæði" +#: ckan/logic/auth/update.py:226 +#, 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/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Forskeyti" +#: ckan/logic/auth/update.py:240 +#, 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/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Forskeyti innsláttarsvæðis" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Til að breyta pakka þarftu gildan API lykil" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Viðbótarupplýsingar (tómt)" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Þú verður að hafa gildan API lykil til að breyta safni" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Viðbótarupplýsingar" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Skilmálar ekki tilgreindir" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Textasvæði" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Velja" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Uppfærslustraumur" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: 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/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Bæta við safni" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Form fyrir söfn" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: 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/model/license.py:301 +msgid "Other (Open)" +msgstr "Annað (opið)" -#: 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/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Annað (í almannaeigu)" -#: 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/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Annað (tilvísun)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Stjórna" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Breyta safni" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: 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/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Annað (ekki til endursölu)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Fylgjendur" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Annað (ekki opið)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Saga" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "er háð %s" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Bæta við safni" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "er háð %s" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Leita í söfnum..." +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "dregið af %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Nöfn í stafrófsröð" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "hefur tengingu %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Öfug stafrófsröð" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "tengir á %s" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "Það eru engin söfn skráð" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "tengt frá %s" -#: 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/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "er barn %s" -#: 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/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "er foreldri %s" -#: 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/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "hefur systkini %s" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Bæta við meðlim" +#: ckan/public/base/javascript/modules/api-info.js:96 +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/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Núverandi notandi" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Villa kom upp við að sækja upplýsingar um API gögn" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Ef þú vilt bæta við nýjum núverandi notanda skaltu leita að notandanafni " -"þeirra hér að neðan." +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Sláðu inn fyrstu stafina..." -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "eða" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Ekkert fannst" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Nýr notandi" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "Ef þú vilt bjóða nýjum notanda skaltu slá inn netfang hans." +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Það eru óvistaðar breytingar í þessu formi" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Hlutverk" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Vinsamlegast staðfestu aðgerðina" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Ertu viss um að þú viljir eyða þessum meðlim?" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Ertu viss um að þú viljir framkvæma þessa aðgerð?" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Eyða" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Staðfesta" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Vista" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Hvað eru hlutverk?" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Hætta að fylgjast með" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

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/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Fylgjast með" -#: 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/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Tengill" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Uppfæra safn" +#: ckan/public/base/javascript/modules/image-upload.js:61 +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/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Stofna safn" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Hlaða inn" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Samsvörun" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Fjarlægja" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Síðast breytt" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Sæktu skrá á tölvuna þína" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Vinsælt" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "Vefslóð" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Leita að gagnapökkum..." +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Skrá" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Gagnapakkar í safninu: {group}" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Vistaðu pöntun" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Nýlegar útgáfur" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Vistun í gangi..." -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Heiti" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Hlaða inn skrá" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Safnið mitt" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Villa kom upp" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "mitt-safn" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Ekki tókst að hlaða inn skrá" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Lýsing" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Ekki fékkst heimild til að hlaða inn skrá" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Smá upplýsingar um safnið mitt..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Skránni hefur verið hlaðið inn" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Ertu viss um að þú viljir eyða þessu safni?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +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/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Vista safn" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +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/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} gagnapakki" -msgstr[1] "{num} gagnapakkar" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Bæta við síu" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 gagnapakkar" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Skoða {name}" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Breyta" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Fjarlægja gagnapakka úr þessu safni" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Sýna fleiri" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Hvað eru söfn?" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Fela" -#: 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/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Villa %(error_code)s" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Bera saman" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Um {0}" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Eytt" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "lesa meira" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Útgáfa" +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Keyrir á CKAN" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Tímastimpill" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Stillingar kerfisstjóra" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Höfundur" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Skoða prófíl" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Kerfisskilaboð" +#: ckan/templates/header.html:26 +#, 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/home/index.html:4 -msgid "Welcome" -msgstr "Velkomin(n)" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Stjórnborð" -#: 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/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Breyta stillingum" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Velkomin(n) í CKAN" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Stillingar" -#: 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/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Skrá út" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Þetta er í kastljósinu" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Innskráning" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "T.d. umhverfi" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Skráning" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Leita að gögnum" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Gagnapakkar" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Vinsæl efnisorð" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Leita að gagnapökkum" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} tölfræði" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Leit" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "gagnapakki" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Hoppa fram að innihaldi" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "gagnapakkar" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Hlaða inn færri" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "stofnanir" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Hlaða inn fleiri" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "söfn" +#: 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/macros/form.html:126 +#: 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:29 +msgid "Trash" +msgstr "Rusl" + +#: ckan/templates/admin/config.html:16 +#: 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:16 +msgid "Reset" +msgstr "Núllstilla" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Uppfæra stillingar" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN stillingar" + +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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 "" -"Þú getur notað Markdown sniðmát hér" +"

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/macros/form.html:265 -msgid "This field is required" -msgstr "Þessi reitur þarf að vera útfylltur" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Staðfesta núllstillingu" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Sérsniðið" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Stjórna CKAN" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Formið inniheldur ógildar færslur:" +#: 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/macros/form.html:395 -msgid "Required field" -msgstr "Reitur sem þarf að fylla út" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Eyða varanlega" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/myndin-min.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "

Hreinsa varanlega burt eyddum gagnapökkum.

" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "Slóð á mynd" +#: 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/macros/form.html:424 -msgid "Clear Upload" -msgstr "Hreinsa niðurhal" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Smelltu hér til að fá meiri upplýsingar." -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Form fyrir stofnun" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Hlaða niður skrá" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Breyta gagnapökkum" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Forskoðun ekki í boði." -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Bæta við gagnapakka" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Nánari upplýsingar..." -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "niðurstöður fyrir „{query}“" +#: 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/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/development/snippets/form.html:5 +msgid "Standard" +msgstr "Hefðbundið" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Gera opinbert" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Hefðbundin stærð innsláttarsvæðis" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr " Loka fyrir aðgang" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Meðalstórt" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Drög" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Meðalstórt innsláttarsvæði" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Einkamál" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Full stærð" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Þessi stofnun er ekki með neina tengda gagnapakka" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Full stærð Innsláttarsvæðis" -#: 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/development/snippets/form.html:8 +msgid "Large" +msgstr "Stórt" -#: 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/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Stórt innsláttarsvæði" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Bæta við stofnun" +#: 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/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "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:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "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/organization/index.html:20 -msgid "Search organizations..." -msgstr "Leita í stofnunum..." +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Bæta við safni" -#: 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/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Form fyrir söfn" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Notandanafn" +#: ckan/templates/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/organization/member_new.html:50 -msgid "Email address" -msgstr "Tölvupóstfang" +#: 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/organization/member_new.html:62 -msgid "Update Member" -msgstr "Uppfæra meðlim" +#: 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/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Stjórna" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Stofna stofnun" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Breyta safni" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Uppfæra stofnun" +#: ckan/templates/group/edit_base.html:23 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/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Stofna stofnun" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Saga" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Bæta við gagnapakka" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Bæta við safni" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Gagnapakkar hjá stofnun: {group}" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Leita í söfnum..." -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Hvað eru stofnanir?" +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Það eru engin söfn skráð" -#: 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/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/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/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/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Stofnunin mí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 "Breyta meðlim" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "min-stofnun" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Bæta við meðlim" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Stutt lýsing á stofnuninni..." +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Núverandi notandi" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"Ertu viss um að þú viljir eyða þessari stofnun? Þetta mun eyða öllum " -"opinberum og lokuðum gagnapökkum sem tilheyra þessari stofnun." +"Ef þú vilt bæta við nýjum núverandi notanda skaltu leita að notandanafni " +"þeirra hér að neðan." -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Vista stofnun" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "eða" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Skoða {organization_name}" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Nýr notandi" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Stofna gagnapakka" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Ef þú vilt bjóða nýjum notanda skaltu slá inn netfang hans." -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Hvað eru gagnapakkar?" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Hlutverk" -#: 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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Eyða" -#: 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/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Hvað eru hlutverk?" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Skoða gagnapakka" +#: ckan/templates/group/member_new.html:80 +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/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Breyta lýsigögnum" +#: 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/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/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Uppfæra safn" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Forskoða" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Stofna safn" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Uppfæra" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Leita að gagnapökkum..." -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Tengja þetta safn við þennan gagnapakka" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Gagnapakkar í safninu: {group}" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Bæta við safn" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Nýlegar útgáfur" -#: 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/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Heiti" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Uppfæra gagnapakka" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Safnið mitt" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Bæta gögnum við gagnapakka" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "mitt-safn" -#: 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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Smá upplýsingar um safnið mitt..." -#: 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/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Ertu viss um að þú viljir eyða þessu safni?" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Nýtt tilfang" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Vista safn" -#: 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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Skoða {name}" -#: 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/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Fjarlægja gagnapakka úr þessu safni" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Bæta við" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Hvað eru söfn?" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/group/snippets/helper.html:8 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +" 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 "" -"Þetta er gömul útgáfa af gagnapakkanum, breytt %(timestamp)s. Hún getur " -"verið töluvert frábrugðin núgildandi útgáfu." +"Þú 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/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Hlaða inn í DataStore" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Bera saman" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Villa í upphleðslu:" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Eytt" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Villa:" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "lesa meira" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Útgáfa" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Staða" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Tímastimpill" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Síðast uppfært" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Höfundur" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Aldrei" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Kerfisskilaboð" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Upphleðsluskrá" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Velkomin(n)" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Upplýsingar" +#: 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/package/resource_data.html:81 -msgid "End of log" -msgstr "Endir á skrá" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Velkomin(n) í CKAN" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Öll tilföng" +#: 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/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Skoða skrá" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Þetta er í kastljósinu" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Breyta tilfangi" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "T.d. umhverfi" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Leita að gögnum" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Sýnir" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Vinsæl efnisorð" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API Endpoint" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} tölfræði" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Fara í tilfang" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "gagnapakki" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Sækja" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "gagnapakkar" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "Vefslóð:" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "stofnanir" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Úr útdrætti gagnapakka" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "söfn" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Heimild: %(dataset)s" +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Þú getur notað Markdown sniðmát hér" -#: ckan/templates/package/resource_read.html:112 -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/macros/form.html:265 +msgid "This field is required" +msgstr "Þessi reitur þarf að vera útfylltur" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Sérðu ekki sýnirnar sem þú bjóst við?" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Sérsniðið" -#: ckan/templates/package/resource_read.html:121 -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/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Formið inniheldur ógildar færslur:" -#: ckan/templates/package/resource_read.html:123 -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/macros/form.html:395 +msgid "Required field" +msgstr "Reitur sem þarf að fylla út" -#: ckan/templates/package/resource_read.html:124 -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/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/myndin-min.jpg" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"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/macros/form.html:411 +msgid "Image URL" +msgstr "Slóð á mynd" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Viðbótarupplýsingar" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Hreinsa niðurhal" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Svæði" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Form fyrir stofnun" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Gildi" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Breyta gagnapökkum" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "óþekkt" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Bæta við gagnapakka" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Stofnað" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "niðurstöður fyrir „{query}“" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Skráasnið" +#: 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/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Leyfisskilmálar" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Gera opinbert" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Ný sýn" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr " Loka fyrir aðgang" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Þetta tilfang hefur enga sýn" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Drög" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Bæta við nýju tilfangi" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Einkamál" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

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

" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Þessi stofnun er ekki með neina tengda gagnapakka" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: 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/package/search.html:53 -msgid "API Docs" -msgstr "API skjöl" +#: 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/package/search.html:55 -msgid "full {format} dump" -msgstr "fullt {format} úrtak" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Bæta við stofnun" -#: 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/organization/index.html:20 +msgid "Search organizations..." +msgstr "Leita í stofnunum..." -#: 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/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Það eru engar stofnanir skilgreindar fyrir þennan vef" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "Allar sýnir" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Notandanafn" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "Skoða sýn" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Tölvupóstfang" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Forskoða sýn" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Uppfæra meðlim" -#: 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/organization/member_new.html:81 +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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Heimild" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Stofna stofnun" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Útgáfa" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Uppfæra stofnun" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Ríki" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Stofna stofnun" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Síðast uppfært" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Bæta við gagnapakka" -#: 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/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Gagnapakkar hjá stofnun: {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Hvað eru stofnanir?" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Data API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Stofnunin mín" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Titill" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "min-stofnun" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "t.d. Lýsandi titill" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Stutt lýsing á stofnuninni..." -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "t.d. mitt-gagnasafn" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Ertu viss um að þú viljir eyða þessari stofnun? Þetta mun eyða öllum " +"opinberum og lokuðum gagnapökkum sem tilheyra þessari stofnun." -#: 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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Vista stofnun" -#: 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/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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"Skilgreiningar á leyfisskilmálum má finna á opendefinition.org" +"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/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Stofnun" +#: 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/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Engin stofnun" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Sýnileiki" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Skoða gagnapakka" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Opinbert" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Breyta lýsigögnum" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Virkt" +#: 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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Forskoða" -#: 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/edit_view.html:21 +msgid "Update" +msgstr "Uppfæra" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Næst: Bæta við gögnum" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Tengja þetta safn við þennan gagnapakka" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Bæta við safn" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Uppfæra gagnapakka" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Netfang höfundar" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Bæta gögnum við gagnapakka" -#: 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/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/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Netfang umsjónarmanns" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Uppfæra skrá" +#: 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/snippets/resource_form.html:24 -msgid "Data" +#: 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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Bæta við" + +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Þetta er gömul útgáfa af gagnapakkanum, breytt %(timestamp)s. Hún getur " +"verið töluvert frábrugðin núgildandi útgáfu." -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "t.d. Verð á þorski í janúar 2013" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Öll tilföng" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Ýmsar nytsamlegar upplýsingar um gögnin" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Skoða skrá" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "t.d. CSV, XML eða JSON" +#: 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/snippets/resource_form.html:40 -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/resource_edit_base.html:26 +msgid "Views" +msgstr "Sýnir" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "t.d. 2012-06-05" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API Endpoint" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Skráarstærð" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Fara í tilfang" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "t.d. 1024" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Sækja" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME gerð" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "Vefslóð:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "t.d. application/json" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Úr útdrætti gagnapakka" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Ertu viss um að þú viljir eyða þessu tilfangi?" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Heimild: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Fyrra" +#: ckan/templates/package/resource_read.html:109 +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/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Vista og bæta meiru við" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Sérðu ekki sýnirnar sem þú bjóst við?" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Ljúka" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Hvað er tilfang?" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:121 +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:122 +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 "" -"Tilfang getur verið skjal, hlekkur á skjal eða tilvísun í gagnaveitu með " -"nýtanlegum gögnum." +"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/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Skoða" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Viðbótarupplýsingar" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Frekari upplýsingar" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Svæði" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Fella inn í síðu" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Gildi" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "Þessi tilfangssýn er ekki aðgengileg á þessum tímapunkti." +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Fella þess tilfangssýn inn í vefsíðu" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "óþekkt" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" 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:69 -msgid "Width" -msgstr "Breidd" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Stofnað" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Hæð" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Skráasnið" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Kóði" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Leyfisskilmálar" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Forskoðun tilfangs" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Ný sýn" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Gögn og tilföng" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Þetta tilfang hefur enga sýn" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Þessi gagnapakki hefur engin gögn" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Bæta við nýju tilfangi" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format -msgid "Read dataset as of %s" -msgstr "Lesa gagnapakka frá %s" - -#: 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" +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/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "t.d. Upplýsingar um mína sýn" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Bæta við síu" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API skjöl" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Fjarlægja síu" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "fullt {format} úrtak" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Síur" +#: 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/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Hvað er sýn?" +#: 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/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/package/view_edit_base.html:9 +msgid "All views" +msgstr "Allar sýnir" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Mismunur" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Skoða sýn" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Mismunur á útgáfum" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Forskoða sýn" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Mismunur" +#: 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/revision/diff.html:54 -msgid "No Differences" -msgstr "Enginn mismunur" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Heimild" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Breytingasaga" +#: 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/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Útgáfur" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Útgáfa" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Afturkalla eyðingu" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Ríki" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Breytingar" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Síðast uppfært" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Efnisorð gagnapakka" +#: 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/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Eining" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Ný uppfærsla" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Fella inn gagnaglugga" +#: 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/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Fella þessa birtingu gagna inn í vefsíðu:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titill" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Veldu breidd og hæð í pixlum:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "t.d. Lýsandi titill" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Breidd:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "t.d. mitt-gagnasafn" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Hæð:" +#: 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/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Staða gagnamiðlara: {status}." +#: 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/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Trackback URL" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Skilgreiningar á leyfisskilmálum má finna á opendefinition.org" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Sýna meira {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Stofnun" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Sýna aðeins vinsælt {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Engin stofnun" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Engar {facet_type} samræmast þessu leitarorði" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Sýnileiki" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Heim" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Opinbert" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Tungumál" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Virkt" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Áfram" +#: 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/snippets/license.html:14 -msgid "No License Provided" -msgstr "Leyfi ekki tilgreint" +#: 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/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Þessi gagnapakki uppfyllir skilgreiningu Open Definition." +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Næst: Bæta við gögnum" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Það er engin lýsing á þessari stofnun" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Engin lýsing er til á þessum gagnapakka" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Senda" +#: 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/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Raða eftir" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Netfang höfundar" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Takmarka leitarniðurstöður" +#: 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/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Reyndu aðra leit.

" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Netfang umsjónarmanns" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Uppfæra skrá" + +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" 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/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "Engir gagnapakkar samræmast leitarorðinu „{query}“" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "t.d. Verð á þorski í janúar 2013" -#: 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/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Ýmsar nytsamlegar upplýsingar um gögnin" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Engir gagnapakkar fundust" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "t.d. CSV, XML eða JSON" -#: 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/package/snippets/resource_form.html:40 +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/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Engin söfn samræmast leitarorðinu „{query}“" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "t.d. 2012-06-05" -#: 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/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Skráarstærð" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Engin söfn fundust" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "t.d. 1024" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME gerð" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "Engar stofnanir fundust fyrir „{query}“" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "t.d. application/json" -#: 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/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Ertu viss um að þú viljir eyða þessu tilfangi?" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Engar stofnanir fundust" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Fyrra" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Samfélagsmiðlar" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Vista og bæta meiru við" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Gerast áskrifandi" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Ljúka" -#: 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:82 -msgid "Email" -msgstr "Netfang" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Hvað er tilfang?" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: 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/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Breytingar" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Skoða" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Leita eftir efnisorðum" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Frekari upplýsingar" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Fréttaveita" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Fella inn í síðu" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Gagnapakkarnir mínir" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "Þessi tilfangssýn er ekki aðgengileg á þessum tímapunkti." -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Mínar stofnanir" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Fella þess tilfangssýn inn í vefsíðu" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Mín söfn" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Þú getur afritað og límt inn ívafskóðann í vefumsjónarkerfi eða " +"blogghugbúnað sem styður hreint HTML" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Virkni atriða sem ég fylgist með" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Breidd" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Þú hefur ekki búið til neina gagnapakka." +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Hæð" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Viltu búa til gagnapakka?" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Kóði" -#: 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/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Forskoðun tilfangs" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Þú ert ekki meðlimur í neinni stofnun." +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Gögn og tilföng" -#: 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/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Þessi gagnapakki hefur engin gögn" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Notandaupplýsingar" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Lesa gagnapakka frá %s" -#: 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/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Stofna gagnapakka" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Breyta upplýsingum" +#: 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/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Fullt nafn" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "t.d. Mín sýn" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "t.d. Anna Jónsdóttir" +#: 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/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "t.d. anna@opingogn.is" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Fjarlægja síu" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Smá upplýsingar um þig" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Hvað er sýn?" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Gerast áskrifandi að tilkynningum í tölvupósti" +#: 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/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Breyta aðgangsorði" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Mismunur" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Mismunur á útgáfum" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Aðgangsorð" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Mismunur" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Staðfesta aðgangsorð" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Enginn mismunur" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Ertu viss um að þú viljir eyða þessum notanda?" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Breytingasaga" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "Ertu viss um að þú viljir endurstilla API lykilinn þinn?" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Útgáfur" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Endurstilla API-lykil" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Afturkalla eyðingu" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Uppfæra prófíl" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Breytingar" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Allir notendur" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Efnisorð gagnapakka" -#: 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/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Eining" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Stofna aðgang?" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Ný uppfærsla" -#: 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/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Fella inn gagnaglugga" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Stofna aðgang" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Fella þessa birtingu gagna inn í vefsíðu:" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Gleymdirðu aðgangsorðinu?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Veldu breidd og hæð í pixlum:" -#: 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/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Breidd:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Gleymdirðu aðgangsorðinu þínu?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Hæð:" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Skráð(ur) út" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Staða gagnamiðlara: {status}." -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Þú hefur skráð þig út." +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Þú ert þegar innskráð(ur) sem {user}." +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Sýna meira {facet_type}" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Skrá út" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Sýna aðeins vinsælt {facet_type}" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Mundu mig" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Engar {facet_type} samræmast þessu leitarorði" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Þú ert þegar innskráð(ur)" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Heim" -#: ckan/templates/user/logout_first.html:24 -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/snippets/language_selector.html:3 +msgid "Language" +msgstr "Tungumál" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Útskrá núna" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Áfram" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Skráning" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Leyfi ekki tilgreint" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Nýskráning" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Þessi gagnapakki uppfyllir skilgreiningu Open Definition." -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Hvers vegna ætti ég að skrá mig?" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Það er engin lýsing á þessari stofnun" -#: 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/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Engin lýsing er til á þessum gagnapakka" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "notandanafn" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Senda" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Fullt nafn" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Raða eftir" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Stofna aðgang" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Takmarka leitarniðurstöður" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Gleymt aðgangsorð" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Reyndu aðra leit.

" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Breyta aðgangsorði" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Uppfæra aðgangsorð" +#: 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/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Hvernig virkar þetta?" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Engir gagnapakkar samræmast leitarorðinu „{query}“" -#: ckan/templates/user/perform_reset.html:40 -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/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/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Notandinn hefur ekki stofnað neina gagnapakka." +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Engir gagnapakkar fundust" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Þú hefur ekki skrifað neitt um þig." +#: 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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Þessi notandi hefur ekki skráð neinar upplýsingar um sig." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: 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/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Aðeins þú getur séð þetta" +#: 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/user/read_base.html:87 -msgid "Member Since" -msgstr "Notandi síðan" +#: 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/user/read_base.html:96 -msgid "API Key" -msgstr "API lykill" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Engar stofnanir fundust" -#: 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/snippets/social.html:5 +msgid "Social" +msgstr "Samfélagsmiðlar" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Breyta aðgangsorði" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Gerast áskrifandi" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Breyta aðgangsorð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:82 +msgid "Email" +msgstr "Netfang" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Sláðu notandanafnið þitt inn í svæðið. Við munum senda þér tölvupóst með " -"tengil á síðu þar sem þú getur valið nýtt aðgangsorð." +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Uppfærslur frá:" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Breytingar" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Leita í lista..." +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Leita eftir efnisorðum" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Þú ert ekki að fylgjast með neinu" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Fréttaveita" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Engir fylgjendur" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Gagnapakkarnir mínir" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Leita að notanda" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mínar stofnanir" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Lokið" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mín söfn" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Í bið" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Virkni atriða sem ég fylgist með" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Sendi" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Þú hefur ekki búið til neina gagnapakka." -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Upphleðslu er ekki lokið" +#: 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:16 +msgid "Create one now?" +msgstr "Viltu búa til gagnapakka?" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Tilfang DataStore fannst ekki" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Þú ert ekki meðlimur í neinu safni." -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" -"Þessi gögn eru ógild (til dæmis: tölugildi er ekki innan marka eða var " -"slegið inn í textareit)." +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Þú ert ekki meðlimur í neinni stofnun." -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "Tilfangið „{0}“ fannst ekki." +#: 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" -#: 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}" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Notandaupplýsingar" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Gagnapakkar á hverri síðu" +#: 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." -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Prófunarstillingar" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Breyta upplýsingum" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Viðbótarupplýsingar í vaxandi röð" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Fullt nafn" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Viðbótarupplýsingar í lækkandi röð" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "t.d. Anna Jónsdóttir" -#: 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" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "t.d. anna@opingogn.is" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "valfrjáls texti" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Smá upplýsingar um þig" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Landskóði" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Gerast áskrifandi að tilkynningum í tölvupósti" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "valfrjáls tilfangstexti" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Breyta aðgangsorði" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Engin lýsing á safninu" - -#: ckanext/example_theme/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/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Aðgangsorð" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "Slóð á mynd" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Staðfesta aðgangsorð" -#: 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ð)" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Ertu viss um að þú viljir eyða þessum notanda?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Gagnaskoðandi" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Ertu viss um að þú viljir endurstilla API lykilinn þinn?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Tafla" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Endurstilla API-lykil" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Myndrit" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Uppfæra prófíl" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Kort" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Allir notendur" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -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 "Innskráning" -#: 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" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Stofna aðgang?" -#: 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" +#: 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." -#: 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" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Stofna aðgang" -#: 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" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Gleymdirðu aðgangsorðinu?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Gerð myndrits" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Hópur (ás 1)" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Gleymdirðu aðgangsorðinu þínu?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Röð (ás 2)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Skráð(ur) út" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Gerð svæðis" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Þú hefur skráð þig út." -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Breiddargráðureitur" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Þú ert þegar innskráð(ur) sem {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Lengdargráðureitur" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Skrá út" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "GeoJSON-reitur" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Mundu mig" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Sjálfvirk þysjun að eiginleikum" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Þú ert þegar innskráð(ur)" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Klasamerkingar" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Heildarfjöldi gagnapakka" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Útskrá núna" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Dagsetning" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Skráning" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Fjöldi gagnapakka" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Nýskráning" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Uppfærslur gagnapakka á viku" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Hvers vegna ætti ég að skrá mig?" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Allar uppfærslur gagnapakka" +#: 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" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Nýir gagnapakkar" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "notandanafn" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Gagnapakkar með hæstu einkunn" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Fullt nafn" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Meðaleinkunn" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Stofna aðgang" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Fjöldi einkunna" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Gleymt aðgangsorð" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Engar einkunnir" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Breyta aðgangsorði" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Gagnapakkar sem hafa verið uppfærðir oftast" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Uppfæra aðgangsorð" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Fjöldi breytinga" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Hvernig virkar þetta?" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Engir gagnapakkar uppfærðir" +#: ckan/templates/user/perform_reset.html:40 +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" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Stærstu söfn" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Notandinn hefur ekki stofnað neina gagnapakka." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Fjöldi gagnapakka" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Þú hefur ekki skrifað neitt um þig." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Engin söfn" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Þessi notandi hefur ekki skráð neinar upplýsingar um sig." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Algengustu efnisorðin" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Heiti efnisorðs" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Aðeins þú getur séð þetta" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Fjöldi gagnapakka" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Notandi síðan" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API lykill" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Talnagögn" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Endurstilltu aðgangsorðið þitt" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Heildarfjöldi gagnapakka" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Breyta aðgangsorði" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Texti" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Breyta aðgangsorði" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Sláðu notandanafnið þitt inn í svæðið. Við munum senda þér tölvupóst með " +"tengil á síðu þar sem þú getur valið nýtt aðgangsorð." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Vefsíða" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Uppfærslur frá:" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "Vefsíðuslóð" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Leita í lista..." -#: 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/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" diff --git a/ckan/i18n/it/LC_MESSAGES/ckan.mo b/ckan/i18n/it/LC_MESSAGES/ckan.mo index b595a0e9679..730bbac2234 100644 Binary files a/ckan/i18n/it/LC_MESSAGES/ckan.mo and b/ckan/i18n/it/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/it/LC_MESSAGES/ckan.po b/ckan/i18n/it/LC_MESSAGES/ckan.po index 617aab5062d..cff404dee9c 100644 --- a/ckan/i18n/it/LC_MESSAGES/ckan.po +++ b/ckan/i18n/it/LC_MESSAGES/ckan.po @@ -1,4605 +1,4701 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: groundrace , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Funzione di autorizzazione non trovata: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Completato" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Amministratore" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Sospeso" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Curatore" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Invio in corso" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Membro" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Errore" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "E' necessario essere amministratori del sistema per amministrarlo" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Non ancora caricato" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Titolo sito" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Risorsa non trovata" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Stile" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Non sei autorizzato a vedere questa pagina" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Sottotitolo del sito" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Carica nel DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Logo del sito" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Errore nel caricamento:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Errore:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Informazioni sulla pagina" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Testo Introduzione" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Stato" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "testo nella pagina principale" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Ultimo aggiornamento" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "CSS personalizzato" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Mai" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "CSS personalizzato inserito nella testata della pagina" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Registro dei caricamenti" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Homepage" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Dettagli" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Fine del log" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Risorsa DataStore non trovata" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Impossibile effettuare la purifica del pacchetto %s perché la revisione " -"associata %s contiene i pacchetti non ancora cancellati %s" +"Dato non valido (per esempio: un valore numerico fuori intervallo od " +"inserito in un campo di testo)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Problema con il purge della revisione %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "La risorsa \"{0}\" non è stata trovata." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Operazione di purifica completata" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "L'utente {0} non è autorizzato ad aggiornare la risorsa {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Azione non implementata." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Non sei autorizzato a vedere questa pagina" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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." -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Accesso negato" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

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

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Non trovato" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Endpoints" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Richiesta non valida" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Nome di azione non nota: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Crea" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Errore JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Aggiorna / Inserisci" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Richiesta dati errata: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Query" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Impossibile aggiornare un'entità di questo tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Query (via SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Impossibile leggere un'entità di questo tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Querying" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Impossibile creare una nuova entità di questo tipo: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Esempio di query (primi 5 risultati)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Impossibile aggiungere il pacchetto all'indice di ricerca" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Esempio di query (risultati che includono 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Impossibile aggiornare un'entità di questo tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Esempio di query (via SQL statement)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Impossibile aggiornare l'indice di ricerca" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Esempio: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Impossibile eliminare un'entità di questo tipo: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"Una richiesta ajax semplice (JSONP) verso l'API dati utilizzando jQuery." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Nessuna revisione specificata" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Esempio: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Non esiste una modifica con id: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" msgstr "" -"Termine di ricerca mancante ('since_id=UUID' o 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Impossibile leggere i parametri: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Descrizione" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Opzione di ricerca errata: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Salva" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Registro sconosciuto: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Valore qjson non valido: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" msgstr "" -"I parametri della richiesta devono essere un dizionario codificato in JSON" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Gruppo non trovato" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Caricando..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organizzazione non trovata." +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Data API" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Tipo del gruppo errato" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tabella" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organizzazioni" - -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Gruppi" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Tag" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formati" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licenze" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Dataset per pagina" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Non autorizzato ad eseguire gli aggiornamenti" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Configurazione di test" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Non sei autorizzato a creare un gruppo" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Rilevanza" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "L'utente %r non è autorizzato a modificare %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Errore di integrità" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "L'utente %r non è autorizzato a modificare le autorizzazioni di %s" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Ultima modifica" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Non autorizzato a eliminare il gruppo %s" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Campo Libero in Crescente" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "L'organizzazione è stata eliminata." +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Campo Libero in Decrescente" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Il gruppo è stato eliminato." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Popolare" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s è stato eliminato." +#: 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" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Non sei autorizzato ad aggiungere membri al gruppo %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "testo personalizzato" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Non sei autorizzato a eliminare membri dal gruppo %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Codice nazione" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Il membero del gruppo e' stato eliminato." +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "testo di risorsa personalizzata" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Selezionare due revisioni prima di effettuare il confronto" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "This is an untranslated string" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Cronologia delle modifiche nel gruppo" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Modifiche recenti al gruppo CKAN:" +#: 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/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Messaggio di log:" +#: 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" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Adesso stai seguendo {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 "Lo strumento di anteprima dati CKAN ha numerose funzioni avanzate" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Non stai più seguendo {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Sostenitori" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Non sei autorizzato a leggere chi segue %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Risorse" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "Questo sito al momento è offline. Il database non è inizializzato." +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Immagine" -#: ckan/controllers/home.py:81 -#, 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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL dell'immagine" -#: ckan/controllers/home.py:83 -#, 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." +#: 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)" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Esploratore Dati" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Il parametro \"{parameter_name}\" non è un intero" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Grafo" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Dataset non trovato" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Mappa" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Formato di revisione non valido: %r" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "Errore nel caricamento della vista" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" msgstr "" -"Visualizzare i dataset {package_type} nel formato {format} non é supportato" -" (Il template {file} non é stato trovato)." -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Non autorizzato a leggere il pacchetto %s" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Cronologia delle Revisioni del Dataset CKAN" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Modifiche recenti al Dataset CKAN:" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Non sei autorizzato a creare un pacchetto" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filtri" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Non sei autorizzato a modificare questa risorsa" +#: 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" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Risorsa non trovata" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "es: 0" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Non sei autorizzato a modificare il dataset" +#: 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" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Il dataset {id} non é stato trovato." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "es: 100" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Devi aggiungere almeno una risorsa" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tipo di Grafo" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Errore" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Gruppo (Asse 1)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Non sei autorizzato a creare una risorsa" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Serie (Asse 2)" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Non sei autorizzato a creare una risorsa per questo pacchetto" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tipo del campo" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Impossibile aggiungere il pacchetto all'indice di ricerca" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Campo latitudine" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Impossibile aggiornare l'indice di ricerca" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Campo longitudine" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Il dataset è stato eliminato." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Campo GeoJSON" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Non sei autorizzato a rimuovere il pacchetto %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Ingrandimento automatico alle funzioni" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "La risorsa è stata eliminata." +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Raggruppamento di marcatori" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Non sei autorizzato a rimuovere la risorsa %s" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Numero totale di dataset" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Visualizzazione risorsa non trovata" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Data" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Risorsa non trovata" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Dataset totali" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Nessun download è disponibile" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Revisioni del dataset per settimana" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Non autorizzato a leggere il dataset %s" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Tutte le revisioni del dataset" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Non sei autorizzato a leggere la risorsa %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Nuovi dataset" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Non sei autorizzato a modificare questa risorsa" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Dataset più votati" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Vista non trovata" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Voto medio" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Tipo di Vista Non trovata" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Numero di voti" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Informazioni per vista di risorsa difettose" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Nessun voto" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Vista di risorsa mancante" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Dataset più modificati" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "L'anteprima non è stata definita." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Dataset" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Cronologia del catalogo CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Numero di modifiche" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Modifiche recenti al catalogo CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Nessun dataset modificato" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Dataset interessati: %s\n" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Gruppi più numerosi" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Revisione aggiornata" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Gruppo" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Altro" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Numero di dataset" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Tag non trovato" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Nessun gruppo" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Utente non trovato" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Migliori tag" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Non autorizzato a registrarsi come utente" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Nome del Tag" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Non sei autorizzato a creare un utente" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Numero di dataset" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Non autorizzato a rimuove l'utente con id \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "L'utente con più dataset" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Nessun utente specificato" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Utenten" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Non sei autorizzato a modificare l'utente %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Menu statistiche" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profilo aggiornato" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Numero totale di dataset" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Non sei autorizzato a creare l'utente %s" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Testo" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Captcha errato. Prova di nuovo per favore." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Sito web" -#: ckan/controllers/user.py:265 -#, 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" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL della pagina" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Non autorizzato a modificare l'utente." +#: 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/controllers/user.py:320 +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Il tuo browser non supporta gli iframes." + +#: ckan/authz.py:182 #, python-format -msgid "User %s not authorized to edit %s" -msgstr "L'utente %s non è autorizzato a modificare %s" +msgid "Authorization function not found: %s" +msgstr "Funzione di autorizzazione non trovata: %s" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "La password inserita è incorretta" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Amministratore" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Vecchia password" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Curatore" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "password incorretta" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Membro" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Autenticazione fallita. Nome utente o password non corrette." - -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Non autorizzato al reset della password." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "E' necessario essere amministratori del sistema per amministrarlo" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" corrisponde a diversi utenti" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Titolo sito" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Nessun utente corrispondente a: %s" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Stile" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Controlla la tua casella di posta per un codice di reset." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Sottotitolo del sito" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Impossibile inviare il codice di reset: %s" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Logo del sito" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Non autorizzato al reset della password." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Chiave di reset non valida. Prova di nuovo per favore." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Informazioni sulla pagina" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "La tua password è stata azzerata." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Testo Introduzione" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "La tua password deve essere lunga almeno 4 caratteri." +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "testo nella pagina principale" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Le due password che hai inserito non corrispondono." +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "CSS personalizzato" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Devi fornire una password" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "CSS personalizzato inserito nella testata della pagina" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Elemento seguente non trovato" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Homepage" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} non trovato" +#: ckan/controllers/admin.py:161 +#, 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/user.py:654 -msgid "Everything" -msgstr "Tutto" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problema con il purge della revisione %s: %s" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Valore mancante" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Operazione di purifica completata" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Reindirizzamento ad un sito esterno non permesso" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Azione non implementata." -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} ha aggiunto il tag {tag} al dataset {dataset}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Accesso negato" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} ha aggiornato il gruppo {group}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Non trovato" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} ha aggiornato l'organizzazione {organization}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Richiesta non valida" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} ha aggiornato il dataset {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Nome di azione non nota: %s" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" -"{actor} ha cambiato le informazioni aggiuntive {extra} del dataset {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Errore JSON: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} ha aggiornato la risorsa {resource} nel dataset {dataset}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Richiesta dati errata: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} ha aggiornato il suo profilo" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Impossibile aggiornare un'entità di questo tipo: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} ha eliminato il gruppo {group}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Impossibile leggere un'entità di questo tipo: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} ha eliminato l'organizzazione {organization}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Impossibile creare una nuova entità di questo tipo: %s %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} ha eliminato il dataset {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Impossibile aggiungere il pacchetto all'indice di ricerca" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" -"{actor} ha eliminato le informazioni aggiuntive {extra} dal dataset " -"{dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Impossibile aggiornare un'entità di questo tipo: %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} ha eliminato la risorsa {resource} dal dataset {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Impossibile aggiornare l'indice di ricerca" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} ha creato il gruppo {group}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Impossibile eliminare un'entità di questo tipo: %s %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} ha creato l'organizzazione {organization}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Nessuna revisione specificata" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} ha creato il dataset {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Non esiste una modifica con id: %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -"{actor} ha aggiunto le informazioni aggiuntive {extra} al dataset {dataset}" - -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} ha aggiunto la risorsa {resource} al dataset {dataset}" - -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} si è registrato il" +"Termine di ricerca mancante ('since_id=UUID' o 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} ha rimosso il tag {tag} dal dataset {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Impossibile leggere i parametri: %r" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} ha cominciato a seguire {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Opzione di ricerca errata: %s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} ha cominciato a seguire {user}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Registro sconosciuto: %s" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} ha cominciato a seguire {group}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Valore qjson non valido: %r" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Visualizza" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" +"I parametri della richiesta devono essere un dizionario codificato in JSON" -#: ckan/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/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Gruppo non trovato" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Gennaio" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organizzazione non trovata." -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Febbraio" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Tipo del gruppo errato" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Marzo" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organizzazioni" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Aprile" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Gruppi" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Maggio" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Tag" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Giugno" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formati" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Luglio" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licenze" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Agosto" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "L'utente %r non è autorizzato a modificare %s" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Settembre" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Non autorizzato ad eseguire gli aggiornamenti" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Ottobre" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Non sei autorizzato a creare un gruppo" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Novembre" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Errore di integrità" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Dicembre" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "L'utente %r non è autorizzato a modificare le autorizzazioni di %s" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Proprio ora" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Non autorizzato a eliminare il gruppo %s" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} minuto fa" -msgstr[1] "{mins} minuti fa" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "L'organizzazione è stata eliminata." -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} ora fa" -msgstr[1] "{hours} ore fa" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Il gruppo è stato eliminato." -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} giorno fa" -msgstr[1] "{days} giorni fa" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s è stato eliminato." -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} mese fa" -msgstr[1] "{months} mesi fa" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "più di {years} anno fa" -msgstr[1] "più di {years} anni fa" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Non sei autorizzato ad aggiungere membri al gruppo %s" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Non sei autorizzato a eliminare membri dal gruppo %s" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Il membero del gruppo e' stato eliminato." -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Selezionare due revisioni prima di effettuare il confronto" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Cronologia delle modifiche nel gruppo" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Modifiche recenti al gruppo CKAN:" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB " +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Messaggio di log:" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Adesso stai seguendo {0}" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Non stai più seguendo {0}" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Non sei autorizzato a leggere chi segue %s" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: 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/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/home.py:73 +#, 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/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Il parametro \"{parameter_name}\" non è un intero" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Dataset non trovato" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Formato di revisione non valido: %r" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Aggiorna il tuo avatar su gravatar.com" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Sconosciuto" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Non autorizzato a leggere il pacchetto %s" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Risorsa senza nome" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Cronologia delle Revisioni del Dataset CKAN" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Nuovo dataset creato." +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Modifiche recenti al Dataset CKAN:" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Risorse modificate." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Non sei autorizzato a creare un pacchetto" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Impostazioni modificate." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Non sei autorizzato a modificare questa risorsa" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} visualizzazione" -msgstr[1] "{number} visualizzazioni" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Non sei autorizzato a modificare il dataset" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} visualizzazione recente" -msgstr[1] "{number} visualizzazioni recenti" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Il dataset {id} non é stato trovato." -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Devi aggiungere almeno una risorsa" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "L'indirizzo e-mail del destinatario non è disponibile!" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Non sei autorizzato a creare una risorsa" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organizzazione" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Non sei autorizzato a creare una risorsa per questo pacchetto" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "gruppo" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Impossibile aggiungere il pacchetto all'indice di ricerca" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Valore mancante" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Impossibile aggiornare l'indice di ricerca" -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Il dataset è stato eliminato." + +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "Il campo di input %(name)s non era previsto." +msgid "Unauthorized to delete package %s" +msgstr "Non sei autorizzato a rimuovere il pacchetto %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Si prega di inserire un valore intero" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "La risorsa è stata eliminata." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Risorse" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Non sei autorizzato a rimuovere la risorsa %s" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Risorsa/e del pacchetto non valide" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Visualizzazione risorsa non trovata" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Extra" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Risorsa non trovata" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Il vocabolario di tag \"%s\" non esiste" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Nessun download è disponibile" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Utenten" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Non autorizzato a leggere il dataset %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Dataset" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Non sei autorizzato a leggere la risorsa %s" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Gruppo" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Non sei autorizzato a modificare questa risorsa" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Non è stato possible eseguire il parsing come un JSON valido" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Vista non trovata" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Tipo di Vista Non trovata" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "L'organizzazione non esiste" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Informazioni per vista di risorsa difettose" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Non puoi aggiungere un dataset a questa organizzazione" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Vista di risorsa mancante" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Numero intero non valido" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "L'anteprima non è stata definita." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Deve essere un numero naturale" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Cronologia del catalogo CKAN" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Deve essere un numero intero positivo" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Modifiche recenti al catalogo CKAN" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Formato della data non corretto" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Dataset interessati: %s\n" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "I link non sono permessi nel log_message." +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Revisione aggiornata" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Id del dataset già esistente" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Altro" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Risorsa" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Tag non trovato" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Il nome del gruppo o l'ID non esistono." +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Non autorizzato a registrarsi come utente" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Tipo di attività" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Non sei autorizzato a creare un utente" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "I nomi devono essere stringhe" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Non autorizzato a rimuove l'utente con id \"{user_id}\"." -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Questo nome non può essere usato" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Nessun utente specificato" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Must be at least %s characters long" -msgstr "La lunghezza dev'essere di almeno %s caratteri" +msgid "Unauthorized to edit user %s" +msgstr "Non sei autorizzato a modificare l'utente %s" + +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Utente non trovato" + +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profilo aggiornato" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Il nome deve contenere un numero massimo di %i caratteri" +msgid "Unauthorized to create user %s" +msgstr "Non sei autorizzato a creare l'utente %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Captcha errato. Prova di nuovo per favore." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Deve consistere solamente di caratteri (base) minuscoli e questi simboli: -_" +"L'utente \"%s\" è ora registrato ma sei ancora autenticato come \"%s\" dalla" +" sessione precedente" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Questa URL è già stata usata." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Non autorizzato a modificare l'utente." -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "La lunghezza del nome \"%s\" è inferiore a %s" +msgid "User %s not authorized to edit %s" +msgstr "L'utente %s non è autorizzato a modificare %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "La lunghezza del nome \"%s\" è maggiore di quella massima %s" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "La password inserita è incorretta" -#: ckan/logic/validators.py:375 -#, 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/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Vecchia password" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Chiave duplicata \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "password incorretta" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Un gruppo con questo nome esiste già nel database" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Autenticazione fallita. Nome utente o password non corrette." -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "La lunghezza del tag \"%s\" è inferiore alla lunghezza minima %s" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Non autorizzato al reset della password." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Il tag \"%s\" è più lungo del massimo di %i caratteri" +msgid "\"%s\" matched several users" +msgstr "\"%s\" corrisponde a diversi utenti" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "Il tag \"%s\" deve contenere solo caratteri alfanumerici o i simboli: -_." +msgid "No such user: %s" +msgstr "Nessun utente corrispondente a: %s" + +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Controlla la tua casella di posta per un codice di reset." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Il tag \"%s\" non deve contenere caratteri maiuscoli" +msgid "Could not send reset link: %s" +msgstr "Impossibile inviare il codice di reset: %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "I nomi utente devono essere stringhe" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Non autorizzato al reset della password." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Questo nome utente non è disponibile." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Chiave di reset non valida. Prova di nuovo per favore." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Per favore inserisci entrambe le password" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "La tua password è stata azzerata." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Le password devono essere stringhe" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "La tua password deve essere lunga almeno 4 caratteri." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "La password deve essere lunga almeno 4 caratteri" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Le due password che hai inserito non corrispondono." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Le due password che hai inserito non corrispondono" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Devi fornire una password" -#: ckan/logic/validators.py:610 -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:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Il nome deve essere lungo almeno %s caratteri" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Elemento seguente non trovato" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Questo nome di vocabolario è già in uso." +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} non trovato" -#: ckan/logic/validators.py:633 -#, 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/controllers/user.py:654 +msgid "Everything" +msgstr "Tutto" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Il vocabolario del tag non è stato trovato." +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Valore mancante" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Il tag %s non fa parte del vocabolario %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Reindirizzamento ad un sito esterno non permesso" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Nome tag assente" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} ha aggiunto il tag {tag} al dataset {dataset}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Il tag %s fa già parte del vocabolario %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} ha aggiornato il gruppo {group}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Per favore inserisci una URL valida" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} ha aggiornato l'organizzazione {organization}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "il ruolo non esiste." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} ha aggiornato il dataset {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" msgstr "" -"I dataset non associati a un'organizzazione non possono essere privati." - -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Non è una lista" +"{actor} ha cambiato le informazioni aggiuntive {extra} del dataset {dataset}" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Non è una stringa" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} ha aggiornato la risorsa {resource} nel dataset {dataset}" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Questo elemento genitore creerebbe un loop nella gerarchia" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} ha aggiornato il suo profilo" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" e \"filter_values\" dovrebbero avere stessa lunghezza" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} ha eliminato il gruppo {group}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" è obbligatorio quando \"filter_values\" è riempito" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} ha eliminato l'organizzazione {organization}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" è obbligatorio quando \"filter_fields\" è riempito" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} ha eliminato il dataset {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Esiste un campo di schema con lo stesso nome" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "" +"{actor} ha eliminato le informazioni aggiuntive {extra} dal dataset " +"{dataset}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Creare l'oggetto %s" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} ha eliminato la risorsa {resource} dal dataset {dataset}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Creare una relazione per il pacchetto: %s %s %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} ha creato il gruppo {group}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Crea oggetto membro %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} ha creato l'organizzazione {organization}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Prova a create una organizzazione come gruppo" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} ha creato il dataset {dataset}" -#: ckan/logic/action/create.py:881 -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/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "" +"{actor} ha aggiunto le informazioni aggiuntive {extra} al dataset {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "È necessario indicare un voto (parametro \"rating\")." +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} ha aggiunto la risorsa {resource} al dataset {dataset}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Il voto deve essere un numero intero." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} si è registrato il" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Il voto deve essere compreso tra %i e %i." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} ha rimosso il tag {tag} dal dataset {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} ha cominciato a seguire {dataset}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Devi essere autenticato per poter seguire gli utenti" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} ha cominciato a seguire {user}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Non puoi seguire te stesso" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} ha cominciato a seguire {group}" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Stai già seguendo {0}" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Visualizza" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Devi essere autenticato per seguire un dataset." +#: 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/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "L'utente {username} non esiste." +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Gennaio" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Devi essere autenticato per seguire un gruppo." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Febbraio" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Marzo" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Eliminare il pacchetto: %s" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Aprile" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Eliminare %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Maggio" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Rimuovi Membro: %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Giugno" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id assente dai dati" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Luglio" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Impossibile trovare il vocabolario \"%s\"" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Agosto" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Impossibile trovare il tag \"%s\"" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Settembre" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Devi essere autenticato per smettere di seguire un oggetto." +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Ottobre" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Non stai seguendo {0}." +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Novembre" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Risorsa non trovata." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Dicembre" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Non specificare se si usa il parametro \"query\"" +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Proprio ora" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Devono essere coppie :" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} minuto fa" +msgstr[1] "{mins} minuti fa" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Campo \"{field}\" non riconosciuto in resource_search." +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} ora fa" +msgstr[1] "{hours} ore fa" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Pacchetto non trovato." - -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Aggiorna l'oggetto %s" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} giorno fa" +msgstr[1] "{days} giorni fa" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Aggiornare la relazione del pacchetto: %s %s %s" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} mese fa" +msgstr[1] "{months} mesi fa" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus non trovato." +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "più di {years} anno fa" +msgstr[1] "più di {years} anni fa" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organizzazione non trovata." +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: 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/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "L'utente %s non è autorizzato a modificare questi gruppi" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: 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/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: 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/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "" -"Nessun pacchetto trovato per questa risorsa, impossibile controllare " -"l'autorizzazione." +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB " -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: 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/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: 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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Non autorizzato alla creazione di utenti" +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Gruppo non trovato." +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "È necessaria una chiave API valida per creare un pacchetto" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "È necessaria una chiave API valida per creare un pacchetto" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "L'utente %s non è autorizzato ad aggiungere membri" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "L'utente %s non è autorizzato a modificare il gruppo %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Aggiorna il tuo avatar su gravatar.com" -#: 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/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Sconosciuto" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" -"Vista di risorsa non trovata, impossibile verificare l'autorizzazione." +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Risorsa senza nome" -#: 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/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Nuovo dataset creato." -#: 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/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Risorse modificate." -#: 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/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Impostazioni modificate." -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} visualizzazione" +msgstr[1] "{number} visualizzazioni" -#: 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/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} visualizzazione recente" +msgstr[1] "{number} visualizzazioni recenti" -#: ckan/logic/auth/delete.py:120 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete task_status" -msgstr "L'utente %s non è autorizzato a eliminare il task status" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Non autorizzato" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "L'indirizzo e-mail del destinatario non è disponibile!" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizzazione" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "L'utente %s non è autorizzato a leggere il pacchetto %s" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "gruppo" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "L'utente %s non è autorizzato a leggere la risorsa %s" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Valore mancante" -#: ckan/logic/auth/get.py:176 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read group %s" -msgstr "L'utente %s non è autorizzato a leggere il gruppo %s" +msgid "The input field %(name)s was not expected." +msgstr "Il campo di input %(name)s non era previsto." -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "Devi essere autenticato per accedere al tuo cruscotto" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Si prega di inserire un valore intero" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "L'utente %s non è autorizzato a modificare il pacchetto %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "L'utente %s non è autorizzato a modificare la risorsa %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Risorsa/e del pacchetto non valide" -#: ckan/logic/auth/update.py:100 -#, 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/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Extra" -#: ckan/logic/auth/update.py:128 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "L'utente %s non è autorizzato a modificare l'organizzazione %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Il vocabolario di tag \"%s\" non esiste" -#: ckan/logic/auth/update.py:145 -#, 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/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Non è stato possible eseguire il parsing come un JSON valido" -#: ckan/logic/auth/update.py:162 -#, 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/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "E' necessario loggati per modificare l'utente" - -#: ckan/logic/auth/update.py:197 -#, 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:208 -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:216 -#, 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:225 -#, 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:239 -#, 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/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "È necessaria una chiave API valida per modificare il pacchetto" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "L'organizzazione non esiste" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "È necessaria una chiave API valida per modificare il gruppo" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Non puoi aggiungere un dataset a questa organizzazione" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Licenza non specificata" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Numero intero non valido" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Deve essere un numero naturale" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Deve essere un numero intero positivo" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Formato della data non corretto" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "I link non sono permessi nel log_message." -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribuzione" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Id del dataset già esistente" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribuzione - Condividi allo stesso modo" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Risorsa" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Il nome del gruppo o l'ID non esistono." -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Altro (di tipo Open)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Tipo di attività" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Altro (Public Domain)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "I nomi devono essere stringhe" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Altro (con Attribuzione)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Questo nome non può essere usato" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "La lunghezza dev'essere di almeno %s caratteri" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non Commerciale (Qualsiasi tipo)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Il nome deve contenere un numero massimo di %i caratteri" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Altro (Non Commerciale)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Deve consistere solamente di caratteri (base) minuscoli e questi simboli: -_" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Altro (non Open)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Questa URL è già stata usata." -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "dipende da %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "La lunghezza del nome \"%s\" è inferiore a %s" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "è una dipendenza di %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "La lunghezza del nome \"%s\" è maggiore di quella massima %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "deriva da %s" +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/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "ha una derivazione %s" +msgid "Duplicate key \"%s\"" +msgstr "Chiave duplicata \"%s\"" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "collegamenti a %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Un gruppo con questo nome esiste già nel database" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "è linkato da %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "La lunghezza del tag \"%s\" è inferiore alla lunghezza minima %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "è discendente di %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Il tag \"%s\" è più lungo del massimo di %i caratteri" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "è antenato di %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Il tag \"%s\" deve contenere solo caratteri alfanumerici o i simboli: -_." -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "è parente di %s" +msgid "Tag \"%s\" must not be uppercase" +msgstr "Il tag \"%s\" non deve contenere caratteri maiuscoli" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Caricando..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "I nomi utente devono essere stringhe" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Non ci sono dati da caricare via API per questa risorsa " +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Questo nome utente non è disponibile." -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Lettura dei dati attraverso le API fallita" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Per favore inserisci entrambe le password" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Elementi non trovati" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Le password devono essere stringhe" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Inizia a scrivere..." +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "La password deve essere lunga almeno 4 caratteri" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Troppo breve! Il testo deve contenere almeno un carattere" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Le due password che hai inserito non corrispondono" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Ci sono modifiche non salvate per questa form" +#: ckan/logic/validators.py:611 +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/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Confermare azione" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Il nome deve essere lungo almeno %s caratteri" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Sei certo di voler confermare questa azione?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Questo nome di vocabolario è già in uso." -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Conferma" +#: ckan/logic/validators.py:634 +#, 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/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Annulla" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Il vocabolario del tag non è stato trovato." -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Segui" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Il tag %s non fa parte del vocabolario %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Non seguire più" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Nome tag assente" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Carica" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Il tag %s fa già parte del vocabolario %s" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Link" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Per favore inserisci una URL valida" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Rimuovi" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "il ruolo non esiste." -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Immagine" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "" +"I dataset non associati a un'organizzazione non possono essere privati." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Non è una lista" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "File" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Non è una stringa" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Carica un file dal computer" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Questo elemento genitore creerebbe un loop nella gerarchia" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" e \"filter_values\" dovrebbero avere stessa lunghezza" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Riordina risorse" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" è obbligatorio quando \"filter_values\" è riempito" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Salva ordine" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" è obbligatorio quando \"filter_fields\" è riempito" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Salvataggio in corso..." +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Esiste un campo di schema con lo stesso nome" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Carica un file" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Si è verificato un errore" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Creare l'oggetto %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Risorsa caricata" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Creare una relazione per il pacchetto: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Impossibile caricare il file" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Crea oggetto membro %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Impossibile autenticare il caricamento" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Prova a create una organizzazione come gruppo" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Impossibile accedere ai dati per il file caricato" +#: ckan/logic/action/create.py:893 +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/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Stai caricando un file. Sei sicuro che vuoi abbandonare questa pagina e " -"interrompere il caricamento?" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "È necessario indicare un voto (parametro \"rating\")." -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Riordina vista di risorsa" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Il voto deve essere un numero intero." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Modifica" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Il voto deve essere compreso tra %i e %i." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Mostra più" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Nascondi" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Devi essere autenticato per poter seguire gli utenti" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Errore %(error_code)s" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Non puoi seguire te stesso" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Informazioni {0}" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Stai già seguendo {0}" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Devi essere autenticato per seguire un dataset." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "CKAN Association" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "L'utente {username} non esiste." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Devi essere autenticato per seguire un gruppo." + +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -"Fatto con CKAN" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Impostazioni amministratore" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Eliminare il pacchetto: %s" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Vedi profilo" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Eliminare %s" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:318 #, 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)" +msgid "REST API: Delete Member: %s" +msgstr "REST API: Rimuovi Membro: %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Pannello" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id assente dai dati" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Modifica impostazioni" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Impossibile trovare il vocabolario \"%s\"" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Impostazioni" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Impossibile trovare il tag \"%s\"" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Esci" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Devi essere autenticato per smettere di seguire un oggetto." -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Accedi" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Non stai seguendo {0}." -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Iscriviti" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Risorsa non trovata." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Dataset" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Non specificare se si usa il parametro \"query\"" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Ricerca Datasets" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Devono essere coppie :" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Cerca" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Campo \"{field}\" non riconosciuto in resource_search." -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Salta al contenuto" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Pacchetto non trovato." -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Caricane meno" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Aggiorna l'oggetto %s" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Caricane di più" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Aggiornare la relazione del pacchetto: %s %s %s" -#: 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/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus non trovato." -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Amministrazione" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organizzazione non trovata." -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Amministratori di sistema" +#: 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/templates/admin/base.html:9 -msgid "Config" -msgstr "Configurazione" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "L'utente %s non è autorizzato a modificare questi gruppi" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Cestino" +#: 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/templates/admin/config.html:16 -#: 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/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Nessun id di dataset fornito, verifica di autorizzazione impossibile." -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Azzera" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Nessun pacchetto trovato per questa risorsa, impossibile controllare " +"l'autorizzazione." -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Aggiorna configurazione" +#: 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/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "Opzioni di configurazione CKAN" +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:119 #, 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.

" +msgid "User %s not authorized to create groups" +msgstr "L'utente %s non è autorizzato a creare gruppi" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Conferma il Reset" +#: 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/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Amministra CKAN" +#: 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/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/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Non autorizzato alla creazione di utenti" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Purifica" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Gruppo non trovato." -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" -"

Purifica i dataset cancellati in maniera definitiva ed " -"irreversibile.

" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "È necessaria una chiave API valida per creare un pacchetto" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "È necessaria una chiave API valida per creare un pacchetto" -#: ckan/templates/ajax_snippets/api_info.html:23 -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." +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "L'utente %s non è autorizzato ad aggiungere membri" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

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

" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "L'utente %s non è autorizzato a modificare il gruppo %s" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Endpoints" +#: 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/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." msgstr "" -"L'interfaccia Data API può essere consultata attraverso le azioni seguenti " -"tra quelle a disposizione in CKAN API." +"Vista di risorsa non trovata, impossibile verificare l'autorizzazione." -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Crea" +#: 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/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Aggiorna / Inserisci" +#: 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/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Query" +#: 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/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Query (via SQL)" +#: 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Querying" +#: 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/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Esempio di query (primi 5 risultati)" +#: 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Esempio di query (risultati che includono 'jones')" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Non autorizzato" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Esempio di query (via SQL statement)" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "L'utente %s non è autorizzato a leggere questi pacchetti" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Esempio: Javascript" +#: 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/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." +#: 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/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Esempio: Python" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "L'utente %s non è autorizzato a leggere il gruppo %s" -#: 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/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Devi essere autenticato per accedere al tuo cruscotto" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Clicca qui per maggiori informazioni." +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "L'utente %s non è autorizzato a modificare il pacchetto %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Scarica la risorsa" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "L'utente %s non è autorizzato a modificare la risorsa %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Il tuo browser non supporta gli iframes." +#: ckan/logic/auth/update.py:100 +#, 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/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Nessuna anteprima disponibile" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "L'utente %s non è autorizzato a modificare l'organizzazione %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Maggiori dettagli..." +#: ckan/logic/auth/update.py:145 +#, 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/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:162 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Nessun handler definito per il data type: %(type)s." +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/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Standard" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "E' necessario loggati per modificare l'utente" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Standard Input" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "L'utente %s non è autorizzato a modificare l'utente %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Medio" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "L'utente {0} non è autorizzato ad aggiornare l'utente {1}" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Larghezza media di input" +#: ckan/logic/auth/update.py:217 +#, 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/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Pieno" +#: ckan/logic/auth/update.py:226 +#, 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/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Larghezza massima di input" +#: ckan/logic/auth/update.py:240 +#, 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/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Grande" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "È necessaria una chiave API valida per modificare il pacchetto" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Input grande" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "È necessaria una chiave API valida per modificare il gruppo" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Anteposto" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Licenza non specificata" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Input anteposto" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Campo libero (vuoto)" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Campo libero" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Area testo" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribuzione" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Seleziona" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribuzione - Condividi allo stesso modo" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Flusso di attività" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: 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/model/license.py:301 +msgid "Other (Open)" +msgstr "Altro (di tipo Open)" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Aggiungi un gruppo" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Altro (Public Domain)" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Modulo gruppo" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Altro (con Attribuzione)" -#: 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/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: 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/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non Commerciale (Qualsiasi tipo)" -#: 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/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Altro (Non Commerciale)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Gestisci" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Altro (non Open)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Modifica gruppo" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "dipende da %s" -#: 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/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "è una dipendenza di %s" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Sostenitori" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "deriva da %s" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Cronologia" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "ha una derivazione %s" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Aggiungi un gruppo" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "collegamenti a %s" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Cerca gruppi..." +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "è linkato da %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Nome Crescente" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "è discendente di %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Nome Decrescente" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "è antenato di %s" -#: 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/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "è parente di %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Come crearne uno?" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Non ci sono dati da caricare via API per questa risorsa " -#: 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/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Lettura dei dati attraverso le API fallita" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Aggiungi Membro" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Inizia a scrivere..." -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Utente già esistente" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Elementi non trovati" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Se desideri aggiungere un utente esistente, cerca il suo nome utente qui " -"sotto." +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "o" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Ci sono modifiche non salvate per questa form" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Nuovo utente" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Confermare azione" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Se desideri invitare un nuovo utente, inserisci il suo indirizzo email." +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Sei certo di voler confermare questa azione?" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Ruolo" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Conferma" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Sei sicuro di voler cancellare questo membro?" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Elimina" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Non seguire più" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Salva" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Segui" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Cosa sono i ruoli?" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Link" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

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

" -"

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

" +#: ckan/public/base/javascript/modules/image-upload.js:61 +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/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/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Carica" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Aggiorna Gruppo" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Rimuovi" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Crea Gruppo" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Carica un file dal computer" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Rilevanza" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Ultima modifica" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "File" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Popolare" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Salva ordine" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Cerca dataset..." +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Salvataggio in corso..." -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Dataset nel gruppo: {group}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Carica un file" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Cronologia delle Revisioni Recenti" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Si è verificato un errore" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Nome" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Impossibile caricare il file" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Mio Gruppo" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Impossibile autenticare il caricamento" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "mio-gruppo" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Risorsa caricata" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Descrizione" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Impossibile accedere ai dati per il file caricato" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Alcune informazioni sul mio gruppo..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +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/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Sei sicuro di voler cancellare questo Gruppo?" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Aggiungi Filtro" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Salva Gruppo" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} Dataset" -msgstr[1] "{num} Dataset" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Modifica" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Dataset" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Mostra più" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Visualizza {name}" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Nascondi" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Elimina il dataset da questo gruppo" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Errore %(error_code)s" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Cosa sono i Gruppi?" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Informazioni {0}" -#: ckan/templates/group/snippets/helper.html:8 +#: 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 "" -" 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. " +"Powered by CKAN" 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." +"Fatto con CKAN" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Confronta »" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Impostazioni amministratore" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Eliminato" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Vedi profilo" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "leggi di più" +#: ckan/templates/header.html:26 +#, 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/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Revisione" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Pannello" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Timestamp" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Modifica impostazioni" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Autore" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Impostazioni" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Messaggio di log" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Esci" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Benvenuti" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Accedi" -#: 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/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Iscriviti" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Benvenuto su CKAN" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Dataset" -#: 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/header.html:116 +msgid "Search Datasets" +msgstr "Ricerca Datasets" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Questa è una sezione in evidenza" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Cerca" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "Per es. ambiente" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Salta al contenuto" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Cerca i dati" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Caricane meno" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Tag popolari" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Caricane di più" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} statistiche" +#: 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/home/snippets/stats.html:11 -msgid "dataset" -msgstr "dataset" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Amministrazione" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "dataset" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Amministratori di sistema" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organizzazioni" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Configurazione" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "gruppi" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Cestino" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/admin/config.html:16 +#: 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:16 +msgid "Reset" +msgstr "Azzera" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Aggiorna configurazione" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "Opzioni di configurazione CKAN" + +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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 "" -"Puoi utilizzare la sintassi Markdown qui" +"

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/macros/form.html:265 -msgid "This field is required" -msgstr "Questo è un campo richiesto" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Conferma il Reset" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Personalizzato" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Amministra CKAN" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Il form contiene dati non validi" +#: 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/macros/form.html:395 -msgid "Required field" -msgstr "Campo richiesto" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Purifica" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "" +"

Purifica i dataset cancellati in maniera definitiva ed " +"irreversibile.

" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL dell'immagine" +#: 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/macros/form.html:424 -msgid "Clear Upload" -msgstr "Cancella caricamento" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Clicca qui per maggiori informazioni." -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Modulo organizzazione" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Scarica la risorsa" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Modifica dataset" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Nessuna anteprima disponibile" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Aggiungi dataset" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Maggiori dettagli..." -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "trovati per \"{query}\"" +#: 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/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Spiacente, nessun dataset trovato per \"{query}\"" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Rendi pubblico" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standard Input" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Rendi privato" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medio" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Bozza" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Larghezza media di input" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Privato" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Pieno" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Questa organizzazione non ha alcun dataset associato" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Larghezza massima di input" -#: 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/development/snippets/form.html:8 +msgid "Large" +msgstr "Grande" -#: 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/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Input grande" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Aggiungi Organizzazione" +#: 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/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "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:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "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:7 +msgid "Add a Group" +msgstr "Aggiungi un gruppo" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Modulo gruppo" + +#: 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/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/organization/index.html:20 -msgid "Search organizations..." -msgstr "Cerca organizzazioni..." +#: 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/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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Gestisci" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nome utente" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Modifica gruppo" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "Indirizzo email" +#: ckan/templates/group/edit_base.html:23 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/organization/member_new.html:62 -msgid "Update Member" -msgstr "Aggiorna membro" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Cronologia" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Aggiungi un gruppo" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Crea una Organizzazione" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Cerca gruppi..." -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Aggiorna una Organizzazione" +#: 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/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Crea una Organizzazione" +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Come crearne uno?" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Aggiungi un dataset" +#: 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/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Dataset nell'organizzazione: {group}" +#: 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/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Cosa sono le organizzazioni?" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Aggiungi Membro" -#: 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/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Utente già esistente" -#: 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. " +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"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" +"Se desideri aggiungere un utente esistente, cerca il suo nome utente qui " +"sotto." -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "mia-organizzazione" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "o" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Qualche informazioni sulla mia organizzazione..." +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Nuovo utente" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -"Sei sicuro che vuoi eliminare questa Organizzazione? Saranno eliminati tutti" -" i dataset pubblici e privati associati a questa organizzazione." +"Se desideri invitare un nuovo utente, inserisci il suo indirizzo email." -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Salva Organizzazione" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Ruolo" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Mostra {organization_name}" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Crea un dataset" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Elimina" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Cosa sono i dataset?" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Cosa sono i ruoli?" -#: ckan/templates/package/base_form_page.html:25 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" 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/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:16 -msgid "View dataset" -msgstr "Visualizza dataset" +"

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

" +"

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

" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Modifica i metadati" +#: 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/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/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Aggiorna Gruppo" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Anteprima" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Crea Gruppo" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Aggiorna" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Cerca dataset..." -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Associa questo gruppo con questo dataset" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Dataset nel gruppo: {group}" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Aggiungi al gruppo" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Cronologia delle Revisioni Recenti" -#: 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/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Nome" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Aggiorna dataset" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Mio Gruppo" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Aggiungi dati al dataset" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "mio-gruppo" -#: 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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Alcune informazioni sul mio gruppo..." -#: 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/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Sei sicuro di voler cancellare questo Gruppo?" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Nuova risorsa" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Salva Gruppo" -#: 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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Visualizza {name}" -#: 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/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Elimina il dataset da questo gruppo" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Aggiungi" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Cosa sono i Gruppi?" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/group/snippets/helper.html:8 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +" 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 "" -"Questa è una revisione precedente del dataset, come modificato in data " -"%(timestamp)s. Potrebbe differire in modo significativo dalla revisione attuale." +"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/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Carica nel DataStore" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Confronta »" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Errore nel caricamento:" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Eliminato" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Errore:" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "leggi di più" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Revisione" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Stato" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Timestamp" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Ultimo aggiornamento" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Autore" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Mai" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Messaggio di log" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Registro dei caricamenti" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Benvenuti" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Dettagli" +#: 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/package/resource_data.html:81 -msgid "End of log" -msgstr "Fine del log" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Benvenuto su CKAN" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Tutte le risorse" +#: 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/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Visualizza risorsa" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Questa è una sezione in evidenza" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Modifica risorsa" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Per es. ambiente" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Cerca i dati" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Viste" +#: 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/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API Endpoint" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "dataset" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Vai alla risorsa" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "dataset" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Download" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizzazioni" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "gruppi" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Dal riassunto del dataset" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Sorgente: %(dataset)s" +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Puoi utilizzare la sintassi Markdown qui" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Non è stata ancora creata alcuna vista per questa risorsa." +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Questo è un campo richiesto" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Non vedi le viste che ti aspettavi?" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Personalizzato" -#: ckan/templates/package/resource_read.html:121 -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/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Il form contiene dati non validi" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "Nessuna tra le viste create è adatta per questa risorsa" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Campo richiesto" -#: ckan/templates/package/resource_read.html:124 -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/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"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/macros/form.html:411 +msgid "Image URL" +msgstr "URL dell'immagine" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Informazioni supplementari" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Cancella caricamento" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Campo" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Modulo organizzazione" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Valore" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Modifica dataset" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "sconosciuto" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Aggiungi dataset" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Creato" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "trovati per \"{query}\"" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Formato" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Spiacente, nessun dataset trovato per \"{query}\"" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licenza" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Rendi pubblico" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Nuova vista" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Rendi privato" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Questa risorsra non ha alcuna vista" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Bozza" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Aggiungi nuova risorsa" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Privato" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

Questo dataset non possiede dati, perché non aggiungerne?

" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Questa organizzazione non ha alcun dataset associato" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: 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/package/search.html:53 -msgid "API Docs" -msgstr "Documentazione API" +#: 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/package/search.html:55 -msgid "full {format} dump" -msgstr "dump {format} completo" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Aggiungi Organizzazione" -#: 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/organization/index.html:20 +msgid "Search organizations..." +msgstr "Cerca organizzazioni..." -#: 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/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/package/view_edit_base.html:9 -msgid "All views" -msgstr "Tutte le viste" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nome utente" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "Mostra vista" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Indirizzo email" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Mostra anteprima" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Aggiorna membro" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Informazioni addizionali" +#: ckan/templates/organization/member_new.html:81 +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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Origine" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Crea una Organizzazione" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Versione" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Aggiorna una Organizzazione" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Stato" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Crea una Organizzazione" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Ultimo aggiornamento" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Aggiungi un dataset" -#: 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/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Dataset nell'organizzazione: {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "Crea una nuova organizzazione" +#: 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/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Data API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "La mia Organizzazione" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Titolo" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "mia-organizzazione" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "per es. Un titolo descrittivo" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Qualche informazioni sulla mia organizzazione..." -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "per es. mio-dataset" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Sei sicuro che vuoi eliminare questa Organizzazione? Saranno eliminati tutti" +" i dataset pubblici e privati associati a questa organizzazione." -#: 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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Salva Organizzazione" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "eg. economia, salute mentale, governo" +#: 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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"Le definizioni delle licenze e ulteriori informazioni sono disponibili su opendefinition.org" +"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/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organizzazione" +#: 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/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Nessuna organizzazione" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Visibilità" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Visualizza dataset" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Pubblico" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Modifica i metadati" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Attivo" +#: 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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Anteprima" -#: 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/edit_view.html:21 +msgid "Update" +msgstr "Aggiorna" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Prossimo: Aggiungi Dati" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Associa questo gruppo con questo dataset" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Aggiungi al gruppo" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Aggiorna dataset" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Mittente" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Aggiungi dati al dataset" -#: 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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Aggiungi Nuova Risorsa" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "E-mail del manutentore" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Aggiorna Risorsa" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Aggiungi" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" -msgstr "Dati" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "" +"Questa è una revisione precedente del dataset, come modificato in data " +"%(timestamp)s. Potrebbe differire in modo significativo dalla revisione attuale." -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "http://example.com/external-data.csv" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Tutte le risorse" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "per es. Prezzo dell'Oro a Gennaio 2011" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Visualizza risorsa" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Qualche nota utile sui dati" +#: 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/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "eg. CSV, XML o JSON" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Viste" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "Sarà determinato automaticamente. Lascia vuoto se lo desideri" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API Endpoint" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "eg. 05-06-2012" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Vai alla risorsa" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Grandezza del File" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Download" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "eg. 1024" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME Type" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Dal riassunto del dataset" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "eg. application/json" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Sorgente: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Sei sicuro di voler eliminare questa risorsa?" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "Non è stata ancora creata alcuna vista per questa risorsa." -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Precedente" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Non vedi le viste che ti aspettavi?" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Salva & aggiungi altro" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Finito" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Cosa è una risorsa?" +#: ckan/templates/package/resource_read.html:121 +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/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:122 +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 "" -"Una risorsa può essere qualsiasi file o link a file che contenga dati utili." +"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/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Esplora" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Informazioni supplementari" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Altre informazioni" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Campo" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Incorpora" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valore" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "Questa vista di risorsa non è al momento disponibile." +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Incorpora vista di risorsa" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "sconosciuto" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -"Puoi fare copia ed incolla del codice da incorporare in un CMS o programma " -"blog che supporta HTML grezzo" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Larghezza:" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Creato" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Altezza:" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Formato" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Codice" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licenza" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Anteprima della risorsa" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nuova vista" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Data e Risorse" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Questa risorsra non ha alcuna vista" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Questo dataset non ha dati" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Aggiungi nuova risorsa" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format -msgid "Read dataset as of %s" -msgstr "Leggi il dataset come il %s" - -#: 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" +msgid "" +"

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

" +msgstr "" +"

Questo dataset non possiede dati, perché non aggiungerne?

" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Aggiungi Filtro" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Rimuovi Filtro" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Documentazione API" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filtri" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "dump {format} completo" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Cos'è una vista?" +#: 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/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: 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 "" -"Una vista è una rappresentazione dei dati attribuita nei confronti di una " -"risorsa" +"E' possibile inoltre accedere al registro usando le %(api_link)s (vedi " +"%(api_doc_link)s). " -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Differenze" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Tutte le viste" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Differenze tra le versioni" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Mostra vista" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Differenza" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Mostra anteprima" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Nessuna differenza" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Informazioni addizionali" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Cronologia delle modifiche" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Origine" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Revisioni" +#: 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/revision/read.html:30 -msgid "Undelete" -msgstr "Ripristina" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versione" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Modifiche" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Stato" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Tag del dataset" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Ultimo aggiornamento" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entità" +#: 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/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Nuovo elemento di attività" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Crea una nuova organizzazione" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Incorpora il visualizzatore dei dati" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Incorpora questa visualizzazione copiandola nella tua pagina web:" +#: 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/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Scegli larghezza e altezza in pixel:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titolo" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Larghezza:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "per es. Un titolo descrittivo" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Altezza:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "per es. mio-dataset" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Stato Datapusher: {status}." +#: 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/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Trackback URL" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "eg. economia, salute mentale, governo" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Mostra altro {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Le definizioni delle licenze e ulteriori informazioni sono disponibili su opendefinition.org" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Mostra solo {facet_type} popolari" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizzazione" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Non ci sono {facet_type} che corrispondono a questa ricerca" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Nessuna organizzazione" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Home" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Visibilità" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Linguaggio" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Pubblico" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Vai" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Attivo" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "Nessuna licenza indicata" +#: 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/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Questo dataset è conforme alla Open Definition." +#: 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/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Non c'è una descrizione per questa organizzazione" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Prossimo: Aggiungi Dati" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Questo dataset non ha una descrizione" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Invia" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Ordina per" +#: ckan/templates/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/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Risultato del Filtro" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Mittente" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Per favore effettua un'altra ricerca.

" +#: 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/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "E-mail del manutentore" -#: 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/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Aggiorna Risorsa" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "Nessun dataset trovato per \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Dati" + +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" -#: 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/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "per es. Prezzo dell'Oro a Gennaio 2011" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Nessun dataset trovato" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Qualche nota utile sui dati" -#: 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/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "eg. CSV, XML o JSON" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Nessun gruppo trovato per \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Sarà determinato automaticamente. Lascia vuoto se lo desideri" -#: 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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "eg. 05-06-2012" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Nessun gruppo trovato" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Grandezza del File" -#: 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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "eg. 1024" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "Nessuna organizzazione trovata per \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME Type" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "eg. application/json" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Nessuna organizzazione trovata" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Sei sicuro di voler eliminare questa risorsa?" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Sociale" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Precedente" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Sottoscrivi" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Salva & aggiungi altro" -#: 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:82 -msgid "Email" -msgstr "E-mail" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Finito" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Cosa è una risorsa?" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Modifiche" +#: 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/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Cerca tag" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Esplora" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "News feed" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Altre informazioni" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "I miei dataset" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Incorpora" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Le mie organizzazioni" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "Questa vista di risorsa non è al momento disponibile." -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "I miei gruppi" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Incorpora vista di risorsa" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Attività da elementi che seguo" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Puoi fare copia ed incolla del codice da incorporare in un CMS o programma " +"blog che supporta HTML grezzo" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Non hai creato alcun dataset." +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Larghezza:" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Vuoi crearne uno?" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Altezza:" -#: 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/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Codice" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Non sei membro di alcuna organizzazione" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Anteprima della risorsa" -#: 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/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Data e Risorse" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Informazioni sull'Account" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Questo dataset non ha dati" -#: 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/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Leggi il dataset come il %s" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Modifica dettagli" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Crea dataset" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Nome completo" +#: 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/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "eg. Mario Rossi" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "per es. Mia Vista" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "eg. mario@esempio.it" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "per es. Dettagli per la mia vista" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Alcune informazioni su te stesso" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Rimuovi Filtro" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Sottoscrivi alle notificazioni email" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Cos'è una vista?" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Modifica password" +#: 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/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "Password amministratore" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Differenze" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Password" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Differenze tra le versioni" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Conferma Password" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Differenza" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Sei sicuro di voler cancellare questo utente?" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Nessuna differenza" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "Sei sicuro di voler generare di nuovo la chiave API?" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Cronologia delle modifiche" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Rigenera Chiave API" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Revisioni" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Aggiorna Profile" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Ripristina" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Tutti gli utenti" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Modifiche" -#: 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/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Tag del dataset" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Necessiti di un Account?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entità" -#: 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/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Nuovo elemento di attività" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Crea un Account" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Incorpora il visualizzatore dei dati" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Password dimenticata?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Incorpora questa visualizzazione copiandola nella tua pagina web:" -#: 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/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Scegli larghezza e altezza in pixel:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Hai dimenticato la password?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Larghezza:" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Scollegato" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Altezza:" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Ora ti sei disconnesso." +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Stato Datapusher: {status}." -#: 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/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Esci" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Mostra altro {facet_type}" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Ricordami" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Mostra solo {facet_type} popolari" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Hai già eseguito l'accesso" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Non ci sono {facet_type} che corrispondono a questa ricerca" -#: ckan/templates/user/logout_first.html:24 -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/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Home" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Disconnettiti adesso" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Linguaggio" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Registrazione" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Vai" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Registra un Account" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Nessuna licenza indicata" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Perché iscriversi?" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Questo dataset è conforme alla Open Definition." -#: 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/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Non c'è una descrizione per questa organizzazione" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "Nome utente" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Questo dataset non ha una descrizione" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Nome completo" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Invia" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Crea un Account" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Ordina per" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Reimposta la tua password" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Risultato del Filtro" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Azzera la password" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Per favore effettua un'altra ricerca.

" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Cambia la password" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Come funziona?" +#: 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/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "Inserisci una nuova password e aggiorneremo il tuo account" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Nessun dataset trovato per \"{query}\"" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "L'utente non ha creato alcun dataset." +#: 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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Non hai inserito una tua biografia." +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Nessun dataset trovato" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Questo utente non ha una biografia." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Nessun gruppo trovato per \"{query}\"" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Ciò significa che puoi vederlo solo tu" +#: 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/user/read_base.html:87 -msgid "Member Since" -msgstr "Membro dal" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Nessuna organizzazione trovata per \"{query}\"" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "Chiave API" +#: 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/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Azzera la tua password" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Nessuna organizzazione trovata" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Azzeramento password" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Sociale" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Richiedi azzeramento" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Sottoscrivi" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Inserisci il tuo username e ti manderemo una e-mail con un link per inserire" -" la nuova password." +#: 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:82 +msgid "Email" +msgstr "E-mail" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Attività da:" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Lista di ricerca..." +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Modifiche" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Non stai seguendo nessun elemento" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Cerca tag" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Nessun sostenitore" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "News feed" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Cerca Utenti" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "I miei dataset" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Completato" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Le mie organizzazioni" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Sospeso" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "I miei gruppi" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Invio in corso" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Attività da elementi che seguo" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Non ancora caricato" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Non hai creato alcun dataset." -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Risorsa DataStore non trovata" +#: 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:16 +msgid "Create one now?" +msgstr "Vuoi crearne uno?" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" -"Dato non valido (per esempio: un valore numerico fuori intervallo od " -"inserito in un campo di testo)." +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Non sei membro di alcun gruppo" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "La risorsa \"{0}\" non è stata trovata." +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Non sei membro di alcuna organizzazione" -#: 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}" +#: 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" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Dataset per pagina" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informazioni sull'Account" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Configurazione di test" +#: 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." -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Campo Libero in Crescente" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Modifica dettagli" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Campo Libero in Decrescente" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Nome completo" -#: 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" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "eg. Mario Rossi" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "testo personalizzato" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "eg. mario@esempio.it" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Codice nazione" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Alcune informazioni su te stesso" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "testo di risorsa personalizzata" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Sottoscrivi alle notificazioni email" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "This is an untranslated string" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Modifica password" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Questo gruppo non ha descrizioni" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "Password amministratore" -#: ckanext/example_theme/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/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Password" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "URL dell'immagine" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Conferma Password" -#: 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)" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Sei sicuro di voler cancellare questo utente?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Esploratore Dati" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Sei sicuro di voler generare di nuovo la chiave API?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Tabella" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Rigenera Chiave API" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Grafo" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Aggiorna Profile" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Mappa" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Tutti gli utenti" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "Errore nel caricamento della vista" +#: 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" -#: 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" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "es: 0" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Crea un Account" -#: 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" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Password dimenticata?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "es: 100" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Tipo di Grafo" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Hai dimenticato la password?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Gruppo (Asse 1)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Scollegato" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Serie (Asse 2)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Ora ti sei disconnesso." -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Tipo del campo" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Hai già eseguito l'accesso come {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Campo latitudine" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Esci" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Campo longitudine" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Ricordami" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "Campo GeoJSON" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Hai già eseguito l'accesso" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Ingrandimento automatico alle funzioni" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." +msgstr "Devi scollegarti per poterti collegare con un altro account." -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Raggruppamento di marcatori" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Disconnettiti adesso" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Numero totale di dataset" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registrazione" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Data" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registra un Account" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Dataset totali" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Perché iscriversi?" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Revisioni del dataset per settimana" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Crea dei dataset, gruppi e altre cose interessanti" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Tutte le revisioni del dataset" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "Nome utente" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Nuovi dataset" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nome completo" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Dataset più votati" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Crea un Account" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Voto medio" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Reimposta la tua password" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Numero di voti" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Azzera la password" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Nessun voto" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Cambia la password" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Dataset più modificati" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Come funziona?" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Numero di modifiche" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Inserisci una nuova password e aggiorneremo il tuo account" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Nessun dataset modificato" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "L'utente non ha creato alcun dataset." -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Gruppi più numerosi" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Non hai inserito una tua biografia." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Numero di dataset" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Questo utente non ha una biografia." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Nessun gruppo" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Migliori tag" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Ciò significa che puoi vederlo solo tu" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Nome del Tag" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Membro dal" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Numero di dataset" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "Chiave API" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "L'utente con più dataset" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Azzera la tua password" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Menu statistiche" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Azzeramento password" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Numero totale di dataset" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Richiedi azzeramento" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Testo" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "" +"Inserisci il tuo username e ti manderemo una e-mail con un link per inserire" +" la nuova password." -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" -msgstr "Si è verificato un errore: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Attività da:" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Sito web" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Lista di ricerca..." -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "URL della pagina" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Non stai seguendo nessun elemento" -#: 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/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" diff --git a/ckan/i18n/ja/LC_MESSAGES/ckan.mo b/ckan/i18n/ja/LC_MESSAGES/ckan.mo index e78bcf89b47..9320016e21c 100644 Binary files a/ckan/i18n/ja/LC_MESSAGES/ckan.mo and b/ckan/i18n/ja/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/ja/LC_MESSAGES/ckan.po b/ckan/i18n/ja/LC_MESSAGES/ckan.po index 48d44963ca4..039d7e6eb37 100644 --- a/ckan/i18n/ja/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ja/LC_MESSAGES/ckan.po @@ -1,4490 +1,4584 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Azusa Akiyama , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "承認機能が見つかりません: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "完了" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "管理者" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "保留中" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "編集者" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "投稿中" -#: ckan/authz.py:199 -msgid "Member" -msgstr "メンバー" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "エラー" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "管理するためにはシステム管理者である必要があります" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "まだアップロードされていない" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "サイトのタイトル" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "リソースが見つかりません" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "スタイル" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "このページの表示は許可されていません" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "サイトのタグライン" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "データストアへのアップロード" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "サイトのタグロゴ" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "アップロードエラー: " -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "エラー:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "About ページのテキスト" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "エラートレースバック" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "紹介テキスト" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "状態" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "ホームページ上のテキスト" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "最終更新" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "カスタム CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "決して" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "カスタマイズ可能なCSS がページヘッダに挿入されました" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "アップロードログ" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "ホームページ" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "詳細" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "ログの終わり" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "データストア" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "フォーマット:%sの1つである必要があります" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "データストアリソースが見つかりません" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" -msgstr "パッケージ %s を削除できません。関連するリビジョン %s が削除されていないパッケージ %s を含んでいます。" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "不正なデータです (例: 数値が範囲外かテキストフィールドに入力された)" -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "リビジョン %sを削除時の問題: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "リソース \"{0}\" がみつかりませんでした" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "削除完了" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "ユーザ {0} には リソース {1} の更新権限がありません" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "未実装のアクション" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "このページの表示は許可されていません" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "パワフルなクエリサポートがあるweb APIを通してリソースデータにアクセス" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "アクセスできません" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

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

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "見つかりません" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "エンドポイント" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "不正なリクエスト" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "Data APIはCKAN action APIの次のようなアクションを通してアクセスすることができます。" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "不明のアクション名: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "作成" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON エラー: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "更新 / 挿入" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "不正なリクエストデータ: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "クエリ" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "このタイプのエンティティは一覧化できません: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "クエリ (SQL使用)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "このタイプのエンティティは読み込めません: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "クエリ" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "このエンティティのタイプは作成できません: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "クエリ例 (最初の5件)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "検索インデックスにパッケージを追加できません" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "クエリ例 ('jones'を含む結果)" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "このタイプのエンティティは更新できません: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "クエリ例 (SQL文使用)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "検索インデックスを更新できません" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "例: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "このタイプのエンティティは削除できません: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "jQueryを使用したdata APIへの単純なajax (JSONP) リクエスト" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "リビジョンが指定されていません" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "例: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "以下のリビジョンIDはありません: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "フィールド{num}" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "検索用語がありません('since_id=UUID' あるいは 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "ラベル" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "パラメータを読み込めません: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "説明" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "不正な検索オプション: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "保存" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "不明の登録: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "データディクショナリ" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "不正なqjson値: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "列" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "要求パラメータはJSON形式の辞書でなければなりません。" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "タイプ" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "グループが見つかりません" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "ロード中..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "組織が見つかりませんでした" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "データAPI" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "不正なグループ型" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "テーブル" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "組織" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "レスポンシブ表示" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "グループ" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "列を表示" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "タグ" - -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "フォーマット" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "列を非表示/表示" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "ライセンス" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "ページ毎のデータセット" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "バルク更新を実行するための権限がありません" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "テストコンフィグ" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "グループの作成が許可されていません" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "関連性" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "ユーザ %r には %s の編集権限がありません" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "一貫性保持エラー" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "ユーザ %r には %s 承認の編集権限がありません" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "最終更新日" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "グループ %s の削除が許可されていません" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "カスタムフィールド昇順" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "組織が削除されました。" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "カスタムフィールド降順" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "グループが削除されました。" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "人気" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s はすでに削除されています" +#: 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 "カスタムテキスト" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "グループ %s へのメンバーの追加は許可されていません" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "カスタムテキスト" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "グループ %s のメンバーの削除は許可されていません" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "国コード" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "グループメンバーが削除されました。" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "カスタムリソーステキスト" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "比較対象となる2つのリビジョンを選択してください。" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "これは翻訳されていない文字列です" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "CKAN グループのリビジョンヒストリー" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "CKANグループへの最近の変更: " +#: 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/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "ログメッセージ " +#: 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 データセット" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -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/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "フォローしていない{0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "フォロワー" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "フォロワー %s の表示は許可されていません" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "リソース" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "このサイトは現在オフラインです。データベースが起動していません。" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "画像" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "プロフィールを更新してメールアドレスを追加してください。 " +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "画像URL" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "パスワードをリセットする必要があるときには,%sはあたなのメールアドレスを使用します。" +#: 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)" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "不正な検索クエリ: {error_message}" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "データエクスプローラー" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "パラメータ \"{parameter_name}\"は整数ではありません" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "グラフ" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "データセットが見つかりません" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "マップ" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "無効なリビジョン形式: %r" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "エラーローディングビュー" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" -"{format} formatでの {package_type} データセットの閲覧はサポートされていません (テンプレート {file} " -"が見つかりません)。" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "ビューを読み込めません" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "%sは読み込みが許可されていないパッケージです" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "データストアでエラーが発生しています" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "CKANデータセットのリビジョン履歴" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "データプロキシでエラーが発生しています" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "CKANデータセットの最近の変更: " +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "グリッド" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "パッケージの作成が許可されていません" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "フィルター" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "このリソースの編集は許可されていません" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "列のオフセット" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "リソースが見つかりません" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "例: 0" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "このリソースの更新は許可されていません" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "列の数" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "データセット {id} は見つかりませんでした" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "例: 100" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "少なくとも一件以上のリソースを追加しなければなりません" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "グラフ型" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "エラー" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "グループ (軸 1)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "リソースの作成が許可されていません" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "シリーズ (軸 2)" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "このパッケージへのリソース作成は許可されていません。" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "フィールドタイプ" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "検索インデックスにパッケージを追加できません" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "緯度フィールド" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "検索インデックスを更新できません" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "経度フィールド" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "データセットはすでに削除されています" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSONフィールド" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "パッケージ %s の削除が許可されていません" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "地物へのオートズーム" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "リソースはすでに削除されています" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "クラスターマーカー" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "リソース %s の削除が許可されていません" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "データセット数" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "リソースビューが見つかりませんでした。" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "日付" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "リソースデータがありません" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "総データセット数" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "利用できるダウンロードはありません" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "週毎のデータセットのリビジョン" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "データセット %s の読み込みが許可されていません" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "すべてのデータセットリビジョン" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "リソース %s の読み込みが許可されていません" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "新規データセット" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "このリソースの編集は許可されていません" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "最も評価の高いデータセット" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "ビューが見つかりません" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "評価平均" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "ビュータイプが見つかりません" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "評価数" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "問題のあるリソースビューデータ" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "評価なし" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "リソースビューが提供されていません" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "もっとも編集されたデータセット" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "プレビューが定義されていません" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "データセット" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "CKANリポジトリのリビジョン履歴" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "編集回数" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "CKANリポジトリへの最近の変更" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "編集されたデータセットはありません" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "影響があったデータセット:%s\n" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "最大グループ" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "リビジョンが更新されました" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "グループ" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "その他" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "データセット数" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "タグが見つかりません" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "グループがありません" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "ユーザが見つかりません" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "トップタグ" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "ユーザとして登録する権限がありません" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "タグの名前" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "ユーザの作成権限がありません" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "データセット数" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "\"{user_id}\"にはユーザ削除権限がありません" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "最もデータセットを作成しているユーザ" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "ユーザが指定されていません" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "ユーザ" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "ユーザ %s の編集権限がありません" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "統計メニュー" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "プロフィールが更新されました" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "データセット数" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "ユーザ %s の作成権限がありません" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "テキスト" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Captchaが無効です。再度試してください。" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "ウェブサイト" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "ユーザ \"%s\"は今登録されましたが、あたなはまだ\"%s\"としてログインしています。" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "ウェブページURL" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "ユーザの編集権限がありません" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "例: http://example.com (空白の場合はリソースURL)" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "ユーザ %s には %s の編集権限がありません" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "ブラウザが iframe をサポートしていません" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "入力されたパスワードが間違っていました" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "承認機能が見つかりません: %s" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "古いパスワード" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "管理者" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "間違っているパスワード" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "編集者" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "ログイン失敗。ユーザ名かパスワードが違います。" +#: ckan/authz.py:202 +msgid "Member" +msgstr "メンバー" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "パスワードリセットを要求する権限がありません" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "管理するためにはシステム管理者である必要があります" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" は複数ユーザと一致しました" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "サイトのタイトル" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "%sというユーザーは見つかりません" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "スタイル" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "リセットコードをメールアドレス宛に送付しました。" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "サイトのタグライン" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "リセットリンクを送れませんでした: %s" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "サイトのタグロゴ" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "パスワードをリセットする権限がありません" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "リセットキーが無効です。再度試してください。" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "About ページのテキスト" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "パスワードがリセットされました。" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "紹介テキスト" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "パスワードは4文字以上である必要があります。" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "ホームページ上のテキスト" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "入力したパスワードが間違っています。" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "カスタム CSS" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "パスワードを発行してください" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "カスタマイズ可能なCSS がページヘッダに挿入されました" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "フォロー中のアイテムはありません" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "ホームページ" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} 見つかりません" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "パッケージ %s を削除できません。関連するリビジョン %s が削除されていないパッケージ %s を含んでいます。" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "すべて" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "リビジョン %sを削除時の問題: %s" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "値がありません" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "削除完了" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "外部サイトへのリダイレクトは許可されていません" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "未実装のアクション" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} がデータセット {dataset} にタグ {tag} を追加しました" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "アクセスできません" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} がグループ {group} を更新しました" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "見つかりません" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} が組織 {organization} を更新しました" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "不正なリクエスト" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} がデータセット {dataset} を更新しました" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "不明のアクション名: %s" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} がデータセット {dataset} のエクストラ {extra} を変更しました" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON エラー: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} がデータセット {dataset} のリソース {resource} を更新しました" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "不正なリクエストデータ: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} がプロフィールを更新しました" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "このタイプのエンティティは一覧化できません: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} がグループ {group} を削除しました" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "このタイプのエンティティは読み込めません: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} が組織 {organization} を削除しました" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "このエンティティのタイプは作成できません: %s %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} がデータセット {dataset} を削除しました" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "検索インデックスにパッケージを追加できません" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} がデータセット {dataset}からエクストラ {extra} を削除しました" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "このタイプのエンティティは更新できません: %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} がデータセット {dataset} からリソース {resource} を削除しました" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "検索インデックスを更新できません" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} がグループ {group} を作成しました" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "このタイプのエンティティは削除できません: %s %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} が組織 {organization} を作成しました" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "リビジョンが指定されていません" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} がデータセット {dataset} を作成しました" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "以下のリビジョンIDはありません: %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} がデータセット {dataset} に エクストラ {extra} を追加しました" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "検索用語がありません('since_id=UUID' あるいは 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} がデータセット {dataset} にリソース {resource} を追加しました" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "パラメータを読み込めません: %r" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} がサインアップしました" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "不正な検索オプション: %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} がデータセット {dataset} からタグ {tag} を削除しました" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "不明の登録: %s" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} が {dataset} のフォローを開始しました" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "不正なqjson値: %r" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} が {user} のフォローを開始しました" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "要求パラメータはJSON形式の辞書でなければなりません。" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} が {group} のフォローを開始しました" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "グループが見つかりません" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "表示" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +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/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "不正なグループ型" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "1月" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "組織" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "2月" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "グループ" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "3月" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "タグ" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "4月" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "フォーマット" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "5月" - -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "6月" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "ライセンス" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "7月" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "ユーザ %r には %s の編集権限がありません" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "8月" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "バルク更新を実行するための権限がありません" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "9月" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "グループの作成が許可されていません" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "10月" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "一貫性保持エラー" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "11月" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "ユーザ %r には %s 承認の編集権限がありません" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "12月" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "グループ %s の削除が許可されていません" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "たった今" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "組織が削除されました。" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} 分前" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "グループが削除されました。" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} 時間前" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s はすでに削除されています" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} 日前" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "ユーザ %r は %s の編集メンバではありません" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} 月前" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "グループ %s へのメンバーの追加は許可されていません" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "{years} 年以上前" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "グループ %s のメンバーの削除は許可されていません" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "グループメンバーが削除されました。" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{year} / {month} / {day}," +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "比較対象となる2つのリビジョンを選択してください。" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "CKAN グループのリビジョンヒストリー" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "CKANグループへの最近の変更: " -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "ログメッセージ " -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "フォロー中{0}" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "フォローしていない{0}" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "フォロワー %s の表示は許可されていません" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "このサイトは現在オフラインです。データベースが起動していません。" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "プロフィールを更新してメールアドレスを追加してください。 " -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "パスワードをリセットする必要があるときには,%sはあたなのメールアドレスを使用します。" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "不正な検索クエリ: {error_message}" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "パラメータ \"{parameter_name}\"は整数ではありません" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "データセットが見つかりません" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "無効なリビジョン形式: %r" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "\"{package_type}\"タイプのデータセット表示はサポートしていません({file_!r})." -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "gravatar.comでアバターが更新されました" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "%sは読み込みが許可されていないパッケージです" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "不明" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "CKANデータセットのリビジョン履歴" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "名無しのリソース" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "CKANデータセットの最近の変更: " -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "新しいデータセットが作成されました。" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "パッケージの作成が許可されていません" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "リソースが編集されました。" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "このリソースの編集は許可されていません" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "設定が編集されました。" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "このリソースの更新は許可されていません" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "閲覧数 {number}" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "データセット {id} は見つかりませんでした" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "最近の閲覧数 {number}" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "少なくとも一件以上のリソースを追加しなければなりません" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "リソースの作成が許可されていません" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "利用可能なメールアドレスがありません!" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "このパッケージへのリソース作成は許可されていません。" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "組織" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "検索インデックスにパッケージを追加できません" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "グループ" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "検索インデックスを更新できません" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "不明な値" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "データセットはすでに削除されています" -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "入力フィールド %(name)s は期待されていません。" +msgid "Unauthorized to delete package %s" +msgstr "パッケージ %s の削除が許可されていません" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "整数値を入力してください" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "リソースはすでに削除されています" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "リソース" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "リソース %s の削除が許可されていません" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "無効なパッケージリソース" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "リソースビューが見つかりませんでした。" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "エキストラ" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "リソースデータがありません" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "タグ \"%s\" が見つかりませんでした" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "利用できるダウンロードはありません" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "ユーザ" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "データセット %s の読み込みが許可されていません" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "データセット" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "リソース %s の読み込みが許可されていません" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "グループ" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "このリソースの編集は許可されていません" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "正しいJOSN形式としてペーストできません" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "ビューが見つかりません" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "組織が必要です" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "ビュータイプが見つかりません" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "組織がありません" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "問題のあるリソースビューデータ" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "組織にデータセットを追加できません" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "リソースビューが提供されていません" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "無効な整数値" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "プレビューが定義されていません" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "自然数を入力してください" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "CKANリポジトリのリビジョン履歴" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "正の整数値を入力してください" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "CKANリポジトリへの最近の変更" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "データフォーマットが違います" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "影響があったデータセット:%s\n" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "log_messageではリンクは許されていません。" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "リビジョンが更新されました" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "既に同名のデータセットIDが登録されています" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "その他" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "リソース" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "タグが見つかりません" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "グループ名かIDが存在しません。" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "ユーザとして登録する権限がありません" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "アクティビティ型" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "ユーザの作成権限がありません" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "名称は文字列である必要があります" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "\"{user_id}\"にはユーザ削除権限がありません" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "その名前は利用できません" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "ユーザが指定されていません" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Must be at least %s characters long" -msgstr " %s 文字以上必要です" +msgid "Unauthorized to edit user %s" +msgstr "ユーザ %s の編集権限がありません" + +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "ユーザが見つかりません" + +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "プロフィールが更新されました" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "名前は最大 %i 文字以内でなければいけません" +msgid "Unauthorized to create user %s" +msgstr "ユーザ %s の作成権限がありません" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Captchaが無効です。再度試してください。" -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "小文字のアルファベット(ascii)と、asciiに含まれる文字列: -_ のみです。" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "ユーザ \"%s\"は今登録されましたが、あたなはまだ\"%s\"としてログインしています。" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "その URL はすでに使用されています。" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "ユーザの編集権限がありません" -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "名前 \"%s\" の文字数は最小文字数 %s 文字に達していません" +msgid "User %s not authorized to edit %s" +msgstr "ユーザ %s には %s の編集権限がありません" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "名前 \"%s\" の文字数は最大文字数 %s 文字を越えています" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "入力されたパスワードが間違っていました" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "バージョンは最大 %i 文字以内でなければいけません" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "古いパスワード" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "キー \"%s\" の重複" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "間違っているパスワード" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "既に同名のグループが登録されています" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "ログイン失敗。ユーザ名かパスワードが違います。" -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "タグ \"%s\" の文字数は最小文字数 %s 文字に達していません" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "パスワードリセットを要求する権限がありません" -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "タグ \"%s\" の文字数は最大文字数 %i 文字を超えています" +msgid "\"%s\" matched several users" +msgstr "\"%s\" は複数ユーザと一致しました" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "タグ \"%s\" は英数文字あるいは、以下の記号 -_ のいづれかである必要があります。" +msgid "No such user: %s" +msgstr "%sというユーザーは見つかりません" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "タグ \"%s\" で大文字を使用することはできません" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "リセットコードをメールアドレス宛に送付しました。" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "ユーザ名は文字列である必要があります" +#: ckan/controllers/user.py:503 +#, python-format +msgid "Could not send reset link: %s" +msgstr "リセットリンクを送れませんでした: %s" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "このログイン名は使用できません。" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "パスワードをリセットする権限がありません" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "パスワードとして同じ文字列を入力してください" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "リセットキーが無効です。再度試してください。" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "パスワードは文字列である必要があります" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "パスワードがリセットされました。" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "パスワードは4文字以上である必要があります" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "パスワードは4文字以上である必要があります。" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "入力したパスワードが一致しません" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "入力したパスワードが間違っています。" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "SPAMを含む可能性のある投稿はできません。説明文からリンクを除外してください。" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "パスワードを発行してください" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "名前は %s 文字以上必要です" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "フォロー中のアイテムはありません" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "そのボキャブラリー名はすでに使用されています。" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} 見つかりません" -#: ckan/logic/validators.py:633 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "キーの値を %s から %s へ変更できません。このキーは編集できません" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "すべて" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "ボキャブラリーがみつかりませんでした。" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "値がありません" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "タグ %s はボキャブラリー %s に属していません" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "外部サイトへのリダイレクトは許可されていません" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "そのようなタグはありません" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} にタグ {tag} を追加しました" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "タグ %s はすでにボキャブラリー %s に属しています" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} がグループ {group} を更新しました" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "正しいURL を入力してください" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} が組織 {organization} を更新しました" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "ロールがありません" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} を更新しました" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "組織なしのデータセットはプライベートにできません" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} のエクストラ {extra} を変更しました" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "リストではありません" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} のリソース {resource} を更新しました" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "文字列ではありません" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} がプロフィールを更新しました" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "この親は階層構造でループを作ります" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} がグループ {group} を削除しました" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\"と\"filter_values\"は同じ長さにすべきです" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} が組織 {organization} を削除しました" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" is required when \"filter_values\" is filled" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} を削除しました" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_fields\"が入力されている場合、\"filter_values\"は必須です" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} がデータセット {dataset}からエクストラ {extra} を削除しました" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "同じ名前のスキーマフィールドがあります" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} からリソース {resource} を削除しました" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: オブジェクト作成: %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} がグループ {group} を作成しました" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: パッケージ間リレーションを作成: %s %s %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} が組織 {organization} を作成しました" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: メンバーオブジェクト作成: %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} を作成しました" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "組織をグループとして作成します" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} に エクストラ {extra} を追加しました" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "あなたはパッケージidか名前 (パラメータ\"package\")を提供しなければなりません" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} にリソース {resource} を追加しました" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "あなたはレーティング (パラメータ\"rating\")を提供しなければなりません" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} がサインアップしました" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "レーティングは整数値である必要があります。" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} からタグ {tag} を削除しました" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "レーティングは %i から %i の間の値を入力してください。" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} が {dataset} のフォローを開始しました" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "招待メールの送信でエラーが発生し、ユーザを作成できませんでした。: {0}" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} が {user} のフォローを開始しました" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "ユーザをフォローするにはログインが必要です" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} が {group} のフォローを開始しました" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "自分自身はフォローできません" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "表示" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "すでにフォロー中 {0}" +#: 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/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "データセットをフォローするにはログインが必要です" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "1月" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "ユーザ {username} が存在しません" +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "2月" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "グループをフォローするにはログインが必要です" +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "3月" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "削除ユーザ: {0}" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "4月" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: パッケージ削除: %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "5月" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: %s を削除" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "6月" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Delete Member: %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "7月" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "そのidはデータ内にありません" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "8月" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "ボキャブラリー \"%s\" はありません" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "9月" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "タグ \"%s\" はありません" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "10月" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "フォローを解除するにはログインが必要です" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "11月" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "フォローしていない {0}" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "12月" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "リソースが見つかりませんでした。" +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "たった今" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "\"クエリー\"パラメータ使用時には指定しないでください" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} 分前" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr ": のペアでなければなりません" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} 時間前" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr " \"{field}\" フィールドが resource_search 内にありません。" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} 日前" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "パッケージが見つかりませんでした。" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} 月前" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: オブジェクト更新: %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "{years} 年以上前" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: パッケージ間リレーションの更新: %s %s %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "タスクステータスが見つかりませんでした。" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{year} / {month} / {day}," -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "組織が見つかりませんでした" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: 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/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "ユーザ %s にはグループの編集権限がありません" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "ユーザ %s にはこの組織へのデータセットの追加権限がありません" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "データセットidが提供されていないので認証を確認できません。" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "このリソース用のパッケージが見つからないため、認証をチェックできません。" +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "ユーザ %s にはデータセット %s 上のリソース作成権限がありません" +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "ユーザ %s にはパッケージの編集権限がありません" +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "ユーザ %s にはグループ作成権限がありません" +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "ユーザ %s には組織の作成権限がありません" +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" -msgstr "User {user} はAPIでのユーザ作成権限がありません。" +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "ユーザの作成権限がありません" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "グループがみつかりませんでした。" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "パッケージを作成するには有効なAPIキーが必要です" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "グループを作成するには有効なAPIキーが必要です" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "gravatar.comでアバターが更新されました" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "ユーザ %s にはメンバーの追加権限がありません" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "不明" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "ユーザ %s にはグループ %s の編集権限がありません" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "名無しのリソース" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "ユーザ %s にはリソース %s の削除権限がありません" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "新しいデータセットが作成されました。" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "リソースビューが見つからないので、認証を確認できません。" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "リソースが編集されました。" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "ユーザ %s には関係 %s の削除権限がありません" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "設定が編集されました。" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "ユーザ %s にはグループの削除権限がありません" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "閲覧数 {number}" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "ユーザ %s にはグループ %s の削除権限がありません" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "最近の閲覧数 {number}" -#: ckan/logic/auth/delete.py:103 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organizations" -msgstr "ユーザ %s には組織の削除権限がありません" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "ユーザ %s には組織 %s の削除権限がありません" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "利用可能なメールアドレスがありません!" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "ユーザ %s にはタスクステータスの削除権限がありません" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "組織" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "許可されていません" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "グループ" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "ユーザ %s にはこれらのパッケージの閲覧権限がありません" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "不明な値" -#: ckan/logic/auth/get.py:130 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read package %s" -msgstr "ユーザ %s にはパッケージ %s の閲覧権限がありません" +msgid "The input field %(name)s was not expected." +msgstr "入力フィールド %(name)s は期待されていません。" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "ユーザ %s にはリソース %s の閲覧権限がありません" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "整数値を入力してください" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "ユーザ %s には グループ %s の閲覧権限がありません" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "Unicode文字列である必要があります" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "ダッシュボードにアクセスするにはログインが必要です" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "無効なパッケージリソース" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "ユーザ %s にはパッケージ %s の編集権限がありません" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "エキストラ" -#: ckan/logic/auth/update.py:71 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "ユーザ %s にはリソース %s の編集権限がありません" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "タグ \"%s\" が見つかりませんでした" -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "ユーザ %s にはパッケージ %s の状態を変更する権限がありません" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "正しいJOSN形式としてペーストできません" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "ユーザ %s には組織 %s の編集権限がありません" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "組織が必要です" -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "ユーザ %s にはグループ %s の状態を変更する権限がありません" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "組織がありません" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "ユーザ %s にはグループ %s に対する権限の編集権限がありません" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "組織にデータセットを追加できません" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "ユーザを編集するためにはログインする必要があります" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "無効な整数値" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "ユーザ %s にはユーザ %s の編集権限がありません" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "自然数を入力してください" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "ユーザ {0} には リソース {1} の更新権限がありません" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "正の整数値を入力してください" -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "ユーザ %s にはリビジョンの状態を変更する権限がありません" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "データフォーマットが違います" -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "ユーザ %s にはtask_status テーブルの更新権限がありません" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "log_messageではリンクは許されていません。" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "ユーザ %s にはterm_translation テーブルの更新権限がありません" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "既に同名のデータセットIDが登録されています" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "パッケージを編集するには有効なAPIキーが必要です" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "リソース" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "グループを編集するには有効なAPIキーが必要です" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "グループ名かIDが存在しません。" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "ライセンスが指定されていません" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "アクティビティ型" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "名称は文字列である必要があります" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "その名前は利用できません" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr " %s 文字以上必要です" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "クリエイティブ・コモンズ CC0" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "名前は最大 %i 文字以内でなければいけません" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "クリエイティブ・コモンズ 表示" - -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "クリエイティブ・コモンズ 表示 継承" - -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" - -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "その他 (オープンライセンス)" - -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "その他 (パブリックドメイン)" - -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "その他 (表示)" - -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" - -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "クリエイティブ・コモンズ 非商用" - -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "その他 (非商用)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "小文字のアルファベット(ascii)と、asciiに含まれる文字列: -_ のみです。" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "その他 (非オープンライセンス)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "その URL はすでに使用されています。" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "%s に依存" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "名前 \"%s\" の文字数は最小文字数 %s 文字に達していません" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "%s に被依存" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "名前 \"%s\" の文字数は最大文字数 %s 文字を越えています" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "%s から派生" +msgid "Version must be a maximum of %i characters long" +msgstr "バージョンは最大 %i 文字以内でなければいけません" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "派生に %s があります" +msgid "Duplicate key \"%s\"" +msgstr "キー \"%s\" の重複" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "%s にリンクしています" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "既に同名のグループが登録されています" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "%s からリンクされています" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "タグ \"%s\" の文字数は最小文字数 %s 文字に達していません" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "%s の子です" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "タグ \"%s\" の文字数は最大文字数 %i 文字を超えています" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "%s の親です" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "タグ \"%s\" は英数文字あるいは、以下の記号 -_ のいづれかである必要があります。" -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "%s の兄弟です" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "ロード中..." +msgid "Tag \"%s\" must not be uppercase" +msgstr "タグ \"%s\" で大文字を使用することはできません" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "このリソースのデータを読み込むためのAPIがありません" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "ユーザ名は文字列である必要があります" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "データAPIの情報の読み込みに失敗しました" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "このログイン名は使用できません。" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "見つかりません" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "パスワードとして同じ文字列を入力してください" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "入力開始..." +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "パスワードは文字列である必要があります" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "1文字以上入力してください" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "パスワードは4文字以上である必要があります" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "保存されていない変更があります" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "入力したパスワードが一致しません" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "アクションを確認してください" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "SPAMを含む可能性のある投稿はできません。説明文からリンクを除外してください。" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "このアクションを実行してよろしいですか?" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "名前は %s 文字以上必要です" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "確認" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "そのボキャブラリー名はすでに使用されています。" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "キャンセル" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "キーの値を %s から %s へ変更できません。このキーは編集できません" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "フォロー" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "ボキャブラリーがみつかりませんでした。" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "フォロー解除" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "タグ %s はボキャブラリー %s に属していません" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "アップロード" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "そのようなタグはありません" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "リンク" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "タグ %s はすでにボキャブラリー %s に属しています" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "削除" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "正しいURL を入力してください" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "画像" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "ロールがありません" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "組織なしのデータセットはプライベートにできません" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "ファイル" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "リストではありません" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "コンピュータ上のファイルをアップロード" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "文字列ではありません" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "Web上のURLへリンク(APIへのリンク可)" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "この親は階層構造でループを作ります" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "リソースを再整列" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\"と\"filter_values\"は同じ長さにすべきです" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "並び順を保存" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" is required when \"filter_values\" is filled" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "保存中..." +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_fields\"が入力されている場合、\"filter_values\"は必須です" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "ファイルをアップロード" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "同じ名前のスキーマフィールドがあります" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "エラーが発生しました" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "Email {email} が正しい形式ではありません" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "リソースがアップロードされました" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: オブジェクト作成: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "ファイルをアップロードできません" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: パッケージ間リレーションを作成: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "アップロードを許可できません" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: メンバーオブジェクト作成: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "アップロードしたファイルからデータを取得できません" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "組織をグループとして作成します" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "ファイルをアップロードしています。ナビゲートを離れてこのアップロードを終了しても良いですか?" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "あなたはパッケージidか名前 (パラメータ\"package\")を提供しなければなりません" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "リソースビューを再整列" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "あなたはレーティング (パラメータ\"rating\")を提供しなければなりません" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "編集" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "レーティングは整数値である必要があります。" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "もっとみる" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "レーティングは %i から %i の間の値を入力してください。" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "隠す" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "招待メールの送信でエラーが発生し、ユーザを作成できませんでした。: {0}" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "エラー %(error_code)s" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "ユーザをフォローするにはログインが必要です" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "About {0}" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "自分自身はフォローできません" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "すでにフォロー中 {0}" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "CKANアソシエーション" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "データセットをフォローするにはログインが必要です" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "ユーザ {username} が存在しません" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "システム管理者設定" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "グループをフォローするにはログインが必要です" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "プロフィールを表示" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "削除ユーザ: {0}" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:92 #, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "ダッシュボード (%(num)d 新しいアイテム)" +msgid "REST API: Delete Package: %s" +msgstr "REST API: パッケージ削除: %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "ダッシュボード" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: %s を削除" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "設定を編集" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Delete Member: %s" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "設定" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "そのidはデータ内にありません" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "ログアウト" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "ボキャブラリー \"%s\" はありません" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "ログイン" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "タグ \"%s\" はありません" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "登録" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "フォローを解除するにはログインが必要です" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "データセット" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "フォローしていない {0}" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "データセットを検索" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "リソースが見つかりませんでした。" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "検索" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "\"クエリー\"パラメータ使用時には指定しないでください" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "スキップして内容へ" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr ": のペアでなければなりません" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "より少なくロード" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr " \"{field}\" フィールドが resource_search 内にありません。" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "より多くロード" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "パッケージが見つかりませんでした。" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "このアクティビティストリームに関する活動はありません" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: オブジェクト更新: %s" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "管理" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: パッケージ間リレーションの更新: %s %s %s" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "システム管理者" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "タスクステータスが見つかりませんでした。" -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "コンフィグ" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "組織が見つかりませんでした" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -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/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "コンフィグを初期化してよろしいですか?" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "ユーザ %s にはグループの編集権限がありません" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "初期化" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "ユーザ %s にはこの組織へのデータセットの追加権限がありません" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "設定を更新" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "データセットidが提供されていないので認証を確認できません。" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKANコンフィグオプション" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "このリソース用のパッケージが見つからないため、認証をチェックできません。" -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:76 #, 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 "初期化を実行" +msgid "User %s not authorized to create resources on dataset %s" +msgstr "ユーザ %s にはデータセット %s 上のリソース作成権限がありません" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "CKAN 管理者" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "ユーザ %s にはパッケージの編集権限がありません" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:119 #, 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ガイドを参照してください。

" +msgid "User %s not authorized to create groups" +msgstr "ユーザ %s にはグループ作成権限がありません" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "除去" +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "ユーザ %s には組織の作成権限がありません" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "

削除されたデータセットを完全に除去します。元に戻すことはできません。

" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "User {user} はAPIでのユーザ作成権限がありません。" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "ユーザの作成権限がありません" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "パワフルなクエリサポートがあるweb APIを通してリソースデータにアクセス" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "グループがみつかりませんでした。" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

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

" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "パッケージを作成するには有効なAPIキーが必要です" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "エンドポイント" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "グループを作成するには有効なAPIキーが必要です" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "Data APIはCKAN action APIの次のようなアクションを通してアクセスすることができます。" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "ユーザ %s にはメンバーの追加権限がありません" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "作成" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "ユーザ %s にはグループ %s の編集権限がありません" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "更新 / 挿入" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "ユーザ %s にはリソース %s の削除権限がありません" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "クエリ" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "リソースビューが見つからないので、認証を確認できません。" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "クエリ (SQL使用)" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "ユーザ %s には関係 %s の削除権限がありません" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "クエリ" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "ユーザ %s にはグループの削除権限がありません" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "クエリ例 (最初の5件)" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "ユーザ %s にはグループ %s の削除権限がありません" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "クエリ例 ('jones'を含む結果)" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "ユーザ %s には組織の削除権限がありません" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "クエリ例 (SQL文使用)" +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "ユーザ %s には組織 %s の削除権限がありません" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "例: Javascript" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "ユーザ %s にはタスクステータスの削除権限がありません" -#: ckan/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) リクエスト" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "許可されていません" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "例: Python" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "ユーザ %s にはこれらのパッケージの閲覧権限がありません" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "現在、このリソースをプレビューすることはできません" +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "ユーザ %s にはパッケージ %s の閲覧権限がありません" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "詳細情報の表示" +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "ユーザ %s にはリソース %s の閲覧権限がありません" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "リソースをダウンロード" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "ユーザ %s には グループ %s の閲覧権限がありません" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "ブラウザが iframe をサポートしていません" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "ダッシュボードにアクセスするにはログインが必要です" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "プレビューがありません" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "ユーザ %s にはパッケージ %s の編集権限がありません" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "詳細情報" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "ユーザ %s にはリソース %s の編集権限がありません" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:100 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "このデータ型の処理がありません: %(type)s." +msgid "User %s not authorized to change state of package %s" +msgstr "ユーザ %s にはパッケージ %s の状態を変更する権限がありません" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "標準" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "ユーザ %s には組織 %s の編集権限がありません" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "標準入力" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "ユーザ %s にはグループ %s の状態を変更する権限がありません" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "中位" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "ユーザ %s にはグループ %s に対する権限の編集権限がありません" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "中くらいの入力幅" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "ユーザを編集するためにはログインする必要があります" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "フルサイズ" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "ユーザ %s にはユーザ %s の編集権限がありません" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "フルサイズの入力幅" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "ユーザ {0} には リソース {1} の更新権限がありません" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "大きい" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "ユーザ %s にはリビジョンの状態を変更する権限がありません" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "大きい入力" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "ユーザ %s にはtask_status テーブルの更新権限がありません" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "プリペンド" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "ユーザ %s にはterm_translation テーブルの更新権限がありません" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "インプットをプリペンド" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "パッケージを編集するには有効なAPIキーが必要です" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "カスタムフィールド(空)" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "グループを編集するには有効なAPIキーが必要です" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "カスタムフィールド" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "ライセンスが指定されていません" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "マークダウン書式" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "テキスト領域" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "選択" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "アクティビティストリーム" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "クリエイティブ・コモンズ CC0" -#: 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/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "クリエイティブ・コモンズ 表示" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "グループを追加" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "クリエイティブ・コモンズ 表示 継承" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "グループフォーム" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: 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/model/license.py:301 +msgid "Other (Open)" +msgstr "その他 (オープンライセンス)" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "グループ - {name} を削除してもよろしいですか?" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +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 "メンバー - {name} を削除してもよろしいですか?" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "管理" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "グループを編集" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +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/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "その他 (非商用)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "フォロワー" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "その他 (非オープンライセンス)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "履歴" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "%s に依存" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "グループを追加" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "%s に被依存" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "グループを検索..." +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "%s から派生" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "名前で昇順" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "派生に %s があります" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "名前で降順" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "%s にリンクしています" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "このサイトに所属しているグループがありません" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "%s からリンクされています" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "作成方法" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "%s の子です" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "全てのメンバーに戻ります" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "%s の親です" -#: 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/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "%s の兄弟です" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "メンバーの追加" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "このリソースのデータを読み込むためのAPIがありません" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "既存ユーザ" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "データAPIの情報の読み込みに失敗しました" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "既存ユーザを加えたい場合は、以下でユーザ名を検索して下さい。" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "入力開始..." -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "または" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "見つかりません" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "新規ユーザ" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "もし新規ユーザを招待したい場合は、そのメールアドレスを入力して下さい。" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "保存されていない変更があります" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "ロール" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "アクションを確認してください" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "このメンバーを削除してよろしいですか?" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "このアクションを実行してよろしいですか?" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "削除" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "確認" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "保存" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "ロールとは?" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "フォロー解除" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

管理者: グループ情報の編集や組織のメンバーの管理が可能です。

" -"

メンバー: グループへのデータセットの追加・削除が可能です。

" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +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/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "リンク" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "グループの更新" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Web上のURLへリンク(APIへのリンク可)" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "グループの作成" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "アップロード" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "関連性" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "削除" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "最終更新日" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "コンピュータ上のファイルをアップロード" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "人気" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "データセット検索..." +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "ファイル" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "グループ: {group} のデータセット" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "並び順を保存" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "最新のリビジョン履歴" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "保存中..." -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "名前" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "ファイルをアップロード" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "マイグループ" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "エラーが発生しました" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "マイグループ" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "ファイルをアップロードできません" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "説明" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "アップロードを許可できません" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "このグループに対する簡単な情報" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "リソースがアップロードされました" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "このグループを削除してもよろしいですか?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "アップロードしたファイルからデータを取得できません" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "グループの保存" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "ファイルをアップロードしています。ナビゲートを離れてこのアップロードを終了しても良いですか?" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} データセット" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "フィルター追加" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 データセット" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "フィールドを選択" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "表示 {name}" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "編集" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "このグループからデータセットを削除" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "もっとみる" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "グループ機能とは" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "隠す" -#: ckan/templates/group/snippets/helper.html:8 +#: 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 "" -" 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. " +"Powered by CKAN" msgstr "" -"あなたはデータセットの集合を作成・管理するためにCKANグループを使うことができます。これは特定のプロジェクトやチームあるいは特定のテーマのためのデータセットのカタログに成り得ますし、人々があなたの所有する公開データセットを発見し,検索するのを助ける簡単な方法として使えます。" +"Powered by CKAN" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "比較" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "システム管理者設定" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "削除済" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "プロフィールを表示" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "もっと読む" +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "ダッシュボード (%(num)d 新しいアイテム)" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "リビジョン" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "ダッシュボード" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "タイムスタンプ" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "設定を編集" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "作成者" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "設定" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "ログメッセージ" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "ログアウト" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "ようこそ" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +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/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "登録" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "CKANへようこそ" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "データセット" -#: ckan/templates/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/header.html:116 +msgid "Search Datasets" +msgstr "データセットを検索" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "これは特徴のセクションです" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "検索" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "例: 環境" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "スキップして内容へ" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "データ検索" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "より少なくロード" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "人気のあるタグ" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "より多くロード" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} 統計" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "このアクティビティストリームに関する活動はありません" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "データセット" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "管理" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "データセット" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "システム管理者" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "組織" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "コンフィグ" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "グループ" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "ごみ箱" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "コンフィグを初期化してよろしいですか?" + +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "初期化" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "設定を更新" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKANコンフィグオプション" + +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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 "" -"ここではMarkdown形式を使うことができます " +"

サイトタイトル: このCKANインスタンスのタイトルで、CKANの様々な場所で表示されます。

" +"

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

" +"

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

" +"

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

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

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

" +"

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

" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "このフィールドは必須です" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "初期化を実行" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "カスタム" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "CKAN 管理者" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -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 "" +"

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

\n" +"

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

" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "必須フィールド" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "除去" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "

削除されたデータセットを完全に除去します。元に戻すことはできません。

" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "画像URL" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "現在、このリソースをプレビューすることはできません" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "アップロードを消去" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "詳細情報の表示" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "組織フォーム" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "リソースをダウンロード" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "データセットを編集" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "プレビューがありません" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "データセットを追加" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "詳細情報" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "\"{query}\"に対して見つかりませんでした" +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "このデータ型の処理がありません: %(type)s." -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "\"{query}\" に対してデータセットが見つかりませんでした" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "標準" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "公開にする" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "標準入力" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "プライベートにする" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "中位" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "ドラフト" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "中くらいの入力幅" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "プライベート" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "フルサイズ" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "この組織のデータセットはありません" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "フルサイズの入力幅" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "組織 - {name} を削除してもよろしいですか?" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +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/development/snippets/form.html:8 +msgid "Large Input" +msgstr "大きい入力" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "組織を追加" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "プリペンド" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "組織を検索..." +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "インプットをプリペンド" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "このサイトに所属している組織がありません" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "カスタムフィールド(空)" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "ユーザ名" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "カスタムフィールド" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "Emailアドレス" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "マークダウン書式" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "メンバーの更新" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "テキスト領域" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

管理者: " -"データセットの追加/削除や組織メンバーの管理が可能です。

編集者:データセットの追加や編集が可能ですが、組織メンバーの管理はできません。

メンバー:" -" 組織のプライベートなデータセットを閲覧できますが、新しいデータセットを追加することはできません。

" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "選択" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "組織の作成" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "アクティビティストリーム" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -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/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "組織の作成" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "グループを追加" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "データセットを追加" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "グループフォーム" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "組織: {group} のデータセット" +#: 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/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "組織について" +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "グループ - {name} を削除してもよろしいですか?" -#: 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/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/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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "管理" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "私の組織" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "グループを編集" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "私の組織" +#: ckan/templates/group/edit_base.html:23 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" +msgstr "メンバー" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "私の組織についての簡単な情報" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "履歴" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "この組織を削除しても良いですか?この操作によってこの組織が持つパブリックとプライベートのデータセット全てが削除されます。" +#: ckan/templates/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:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "メンバーの追加" + +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "既存ユーザ" + +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "既存ユーザを加えたい場合は、以下でユーザ名を検索して下さい。" + +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "または" + +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "新規ユーザ" + +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "もし新規ユーザを招待したい場合は、そのメールアドレスを入力して下さい。" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "組織の保存" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "ロール" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "{organization_name} を表示" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "このメンバーを削除してよろしいですか?" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "データセットの作成" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "削除" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "データセットとは?" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "ロールとは?" -#: ckan/templates/package/base_form_page.html:25 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" msgstr "" -"CKANのデータセットはデータリソース (例: ファイル) " -"の集合です。データリソースはその説明とその他の情報と固定のURLを持ちます。データセットはユーザがデータを検索するときに目にするものです。" - -#: 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/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "グループの作成" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "データセットの表示" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "グループの更新" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "メタデータの編集" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +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/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "データセット検索..." -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "プレビュー" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "グループ: {group} のデータセット" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "更新" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "最新のリビジョン履歴" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "このデータセットにグループを関連付ける" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "名前" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "グループに追加" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "マイグループ" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "このデータセットに関連するグループはありません" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "マイグループ" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "データセットの更新" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "このグループに対する簡単な情報" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "データセットにデータを追加" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "このグループを削除してもよろしいですか?" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "新しいリソースの追加" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "表示 {name}" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "新規リソース" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +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/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "グループ機能とは" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/group/snippets/helper.html:8 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +" 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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "追加" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "比較" -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" -"これはこのデータセットの古いリビジョンです。%(timestamp)sに編集されました。現在のリビジョンとはかなり異なるかもしれません。" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "削除済" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "データストアへのアップロード" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "もっと読む" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "アップロードエラー: " +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "リビジョン" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "エラー:" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "タイムスタンプ" + +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "作成者" + +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "ログメッセージ" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "ようこそ" + +#: ckan/templates/home/snippets/about_text.html:1 +msgid "" +"

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

" +"

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

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

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

" +msgstr "" +"

CKANは世界をリードするオープンソースのデータポータルプラットホームです。

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/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "エラートレースバック" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "CKANへようこそ" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -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あるいはサイト全般についての良い紹介文です。我々はまだここへ行くためのコピーがありませんが、すぐに行くでしょう。" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "最終更新" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "これは特徴のセクションです" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "決して" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "例: 環境" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "アップロードログ" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "データ検索" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "詳細" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "人気のあるタグ" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "ログの終わり" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} 統計" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "全てのリソース" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "データセット" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "リソースの表示" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "データセット" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "リソースの編集" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "組織" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "データストア" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "グループ" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "ビュー" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "サイトロゴ" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "APIエンドポイント" +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"ここではMarkdown形式を使うことができます " -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "リソースへ行く" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "このフィールドは必須です" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "ダウンロード" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "カスタム" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "不正な値があります:" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "データセットの概要より" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "必須フィールド" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "Source: %(dataset)s" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "このリソースのために作成されたビューはまだありません" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "画像URL" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "期待しているビューが表示されていませんか?" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "アップロードを消去" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "期待通りのビューが表示されていなかもしれない理由です: " +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "組織フォーム" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "このリソースに合うビューが作成されていません" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "データセットを編集" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "サイト管理者が関連ビューのプラグインを有効にしていないかもしれません" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "データセットを追加" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"ビューがデータストアを要求するなら、データストアプラグインが有効でないか、データがデータストアに入っていないか、データストアによるデータ処理がまだ終わっていないかもしれません" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "\"{query}\"に対して見つかりませんでした" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "追加情報" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "\"{query}\" に対してデータセットが見つかりませんでした" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "フィールド" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "公開にする" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "値" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "プライベートにする" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "unknown" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "ドラフト" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "作成日" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "プライベート" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "データ形式" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "この組織のデータセットはありません" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "ライセンス" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "組織 - {name} を削除してもよろしいですか?" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -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/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "このリソースにはビューがありません" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "組織を追加" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "新しいリソースの追加" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "組織を検索..." -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

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

" +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "このサイトに所属している組織がありません" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "ユーザ名" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "APIドキュメント" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Emailアドレス" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "完全な {format} ダンプ" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "メンバーの更新" -#: ckan/templates/package/search.html:56 -#, python-format +#: ckan/templates/organization/member_new.html:81 msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " +"

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 "" -" %(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/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} メンバ" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "ビューを閲覧" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "組織の作成" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "プレビューを閲覧" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "組織の更新" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "追加情報" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "組織の作成" -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "ソース" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "データセットを追加" -#: ckan/templates/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/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "組織: {group} のデータセット" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "バージョン" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "組織について" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -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/package/snippets/additional_info.html:62 -msgid "Last Updated" -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/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." -msgstr "データセットを作成する前に、組織を作成する必要があります。" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "私の組織" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "新しい組織を作る" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-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/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "私の組織についての簡単な情報" -#: ckan/templates/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/organization_form.html:60 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." -msgstr "操作を続ける前に、組織の作成をシステム管理者に依頼してください。" - -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "データAPI" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "タイトル" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "この組織を削除しても良いですか?この操作によってこの組織が持つパブリックとプライベートのデータセット全てが削除されます。" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "eg. A descriptive title" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "組織の保存" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "eg. my-dataset" +#: 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/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/base.html:22 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "データセットの作成" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "例:経済,政府" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "データセットとは?" -#: ckan/templates/package/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base_form_page.html:25 msgid "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"ライセンス定義や追加情報はopendefinition.orgにあります。" - -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "組織" - -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "組織なし" - -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "公開・非公開" +"CKANのデータセットはデータリソース (例: ファイル) " +"の集合です。データリソースはその説明とその他の情報と固定のURLを持ちます。データセットはユーザがデータを検索するときに目にするものです。" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "パブリック" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "データセット - {name} を削除してもよろしいですか?" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "アクティブ" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "リソース - {name} を削除してもよろしいですか?" -#: 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/edit_base.html:16 +msgid "View dataset" +msgstr "データセットの表示" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "このデータセットを削除してよろしいですか?" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "メタデータの編集" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Next: データの追加" +#: 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/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "プレビュー" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +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 "Joe Bloggs" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "このデータセットにグループを関連付ける" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "作成者のemail" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +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/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "このデータセットに関連するグループはありません" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "メンテナーのemail" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" +msgstr "データセットの更新" -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "リソースの更新" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "データセットにデータを追加" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" -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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "http://example.com/external-data.csv" +#: 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/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "eg. January 2011 Gold Prices" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "新規リソース" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -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/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "eg. CSV, XML or JSON" +#: 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/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "これは自動で補完されています。空欄のままでも良いです。" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "追加" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "eg. 2012-06-05" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "" +"これはこのデータセットの古いリビジョンです。%(timestamp)sに編集されました。現在のリビジョンとはかなり異なるかもしれません。" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "ファイルサイズ" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "全てのリソース" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "eg. 1024" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "リソースの表示" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME Type" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "リソースの編集" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "eg. application/json" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "ビュー" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "このリソースを削除してもよろしいですか?" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "APIエンドポイント" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Previous" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "リソースへ行く" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "保存して他を追加" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "ダウンロード" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "完了" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "リソースとは?" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +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/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Source: %(dataset)s" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "探索" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "このリソースのために作成されたビューはまだありません" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "より多くの情報" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "期待しているビューが表示されていませんか?" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "埋めこみ" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "期待通りのビューが表示されていなかもしれない理由です: " -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "現在、このリソースビューは表示できません" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" +msgstr "このリソースに合うビューが作成されていません" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "埋め込まれたリソースビュー" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "サイト管理者が関連ビューのプラグインを有効にしていないかもしれません" -#: ckan/templates/package/snippets/resource_view.html:66 +#: ckan/templates/package/resource_read.html:122 msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "生のHTMLをサポートするCMSやブログソフトウェアにコピー&ペーストでコードを埋め込むことができます" +"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/snippets/resource_view.html:69 -msgid "Width" -msgstr "幅" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "追加情報" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "高さ" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "フィールド" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "コード" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "値" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "リソースプレビュー" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "最終更新日" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "データとリソース" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "unknown" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "このデータセットにはデータがありません" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "メタデータ最終更新日時" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "%s の時点でデータセットを読みなさい" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "作成日" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "データセットの作成" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +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/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "ライセンス" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "例: 私のビュー" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "新規ビュー" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "例: 私のビューについての情報" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "このリソースにはビューがありません" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -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:26 +#, 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/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "フィルター削除" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "完全な {format} ダンプ" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -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 "" +" %(api_link)s (%(api_doc_link)s参照) を使うことでもこのレジストリにアクセスすることも、または " +"%(dump_link)sをダウンロードすることもできます。" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -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 "API Keyを使ってこのレジストリーにもアクセス可能です %(api_link)s (see %(api_doc_link)s). " -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "ビューはリソースに対して保持されたデータの表現です" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "全てのビュー" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "差分" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "ビューを閲覧" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "リビジョン差異" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "プレビューを閲覧" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "差分" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "追加情報" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "差分はありません" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "ソース" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "リビジョン履歴" +#: ckan/templates/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/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "リビジョン" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "バージョン" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "削除取り消し" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "状態" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "変更" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "最終更新" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -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/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "エンティティ" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "新しい組織を作る" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -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/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "あなたのウェブページにこれをコピーすることで、このビューを埋め込んで下さい" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "タイトル" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "幅と高さをピクセル数で指定する:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "eg. A descriptive title" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "横幅:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "eg. my-dataset" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "縦幅:" +#: 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/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Datapusher状態: {status}。" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "例:経済,政府" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "トラックバック URL" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"ライセンス定義や追加情報はopendefinition.orgにあります。" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "{facet_type}をもっと見る" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "組織" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "人気のある {facet_type} のみを表示" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "組織なし" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "この検索にマッチする {facet_type} はありません" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "公開・非公開" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "ホーム" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "パブリック" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "言語" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "アクティブ" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Go" +#: 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/snippets/license.html:14 -msgid "No License Provided" -msgstr "ライセンスが提示されていません" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "このデータセットを削除してよろしいですか?" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "このデータセットはオープンデフィニションを満たしています。" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Next: データの追加" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "この組織には説明がありません" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "このデータセットには説明がありません" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -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 "Joe Bloggs" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "並び順" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "作成者のemail" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -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/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

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

" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "メンテナーのemail" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "

検索でエラーが発生しました。もう一度試してください。

" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +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/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "データ" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "\"{query}\" に対してデータセットが見つかりません" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "{number} 件のデータセットが見つかりました" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "eg. January 2011 Gold Prices" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "データセットが見つかりません" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +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/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "eg. CSV, XML or JSON" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "\"{query}\" に対してグループが見つかりません" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "これは自動で補完されています。空欄のままでも良いです。" -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "{number} 件のグループが見つかりました" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "eg. 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "グループが見つかりません" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "eg. 1024" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "\"{query}\" に対して組織が見つかりません" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME Type" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "{number} 件の組織が見つかりました" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "eg. application/json" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "組織が見つかりません" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "このリソースを削除してもよろしいですか?" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "ソーシャル" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Previous" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "購読" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +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:82 -msgid "Email" -msgstr "Email" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "完了" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "リソースとは?" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -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/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "タグを検索" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "探索" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "ニュースフィード" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "より多くの情報" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "私のデータセット" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "埋めこみ" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "私の組織" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "現在、このリソースビューは表示できません" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "私のグループ" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "埋め込まれたリソースビュー" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "フォロー中のアイテムのアクティビティ" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "生のHTMLをサポートするCMSやブログソフトウェアにコピー&ペーストでコードを埋め込むことができます" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "データセットが作成されていません" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "幅" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "作成しますか?" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "高さ" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "あなたはどのグループのメンバーでもありません" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "コード" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "あなたはどの組織のメンバーでもありません" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +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/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "データとリソース" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "アカウント情報" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +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/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "%s の時点でデータセットを読みなさい" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "詳細の変更" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "データセットの作成" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -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/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "eg. Joe Bloggs" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "例: 私のビュー" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "eg. joe@example.com" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "例: 私のビューについての情報" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "あなたについての簡単な情報" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "フィルター削除" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "購読内容をメールに通知" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "ビューは何ですか?" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -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/revision/diff.html:6 +msgid "Differences" +msgstr "差分" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "システム管理者 パスワード" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "リビジョン差異" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "パスワード" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "差分" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "パスワードの確認" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "差分はありません" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "このユーザを削除してもよろしいですか?" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "リビジョン履歴" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "APIキーを本当に再生成しますか?" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "リビジョン" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "APIキーを再生成" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "削除取り消し" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "プロフィールを更新" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "変更" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "すべてのユーザ" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +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/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "エンティティ" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "アカウントが必要ですか?" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "新しいアクティビティアイテム" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "サインアップしましょう!数分で完了します" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "データビューワの埋めこみ" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "アカウントの作成" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "あなたのウェブページにこれをコピーすることで、このビューを埋め込んで下さい" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "パスワードを忘れましたか?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "幅と高さをピクセル数で指定する:" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "問題ありません。パスワード修復フォームでリセットして下さい。" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "横幅:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "パスワードを忘れましたか?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "縦幅:" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "ログアウトしました" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher状態: {status}。" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "ログアウトしました" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "トラックバック URL" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "{user} としてログイン済み" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "{facet_type}をもっと見る" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "ログアウト" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "人気のある {facet_type} のみを表示" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "保存:" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "この検索にマッチする {facet_type} はありません" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "ログイン済み" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "ホーム" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "他のアカウントでログインするには一度ログアウトする必要があります" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "言語" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "ログアウト" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Go" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "登録" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "ライセンスが提示されていません" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "アカウントの登録" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "このデータセットはオープンデフィニションを満たしています。" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "新規登録しませんか?" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "この組織には説明がありません" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "データセット、グループ等を作成しましょう" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "このデータセットには説明がありません" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "ユーザ名" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "投稿" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "フルネーム" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "並び順" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "アカウントの作成" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "フィルタ結果" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "パスワードのリセット" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

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

" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "パスワードのリセット" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "

検索でエラーが発生しました。もう一度試してください。

" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -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/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "これはどう動くのでしょうか?" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "\"{query}\" に対してデータセットが見つかりません" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "単純に新しいパスワードを入力してください。そうすればあなたのアカウントを更新します。" +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} 件のデータセットが見つかりました" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "データセットを作成していません" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "データセットが見つかりません" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "このユーザにはバイオグラフィがありません" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "\"{query}\" に対してグループが見つかりません" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: 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/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -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/user/read_base.html:87 -msgid "Member Since" -msgstr "ユーザ登録日" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "\"{query}\" に対して組織が見つかりません" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "APIキー" +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} 件の組織が見つかりました" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "パスワードをリセットしてください" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "組織が見つかりません" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "パスワードリセット" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "ソーシャル" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "初期化を申請" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "購読" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "ユーザ名をそのボックスに入力すれば、新しいパスワードを入力するためのリンクをメールで送ります。" +#: ckan/templates/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:82 +msgid "Email" +msgstr "Email" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "アクティビティ元" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "リスト内を検索" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "編集" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "まだ誰もフォローしていません" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "タグを検索" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "まだフォローされていません" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "ニュースフィード" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "ユーザを検索" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "私のデータセット" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "完了" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "私の組織" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "保留中" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "私のグループ" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "投稿中" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "フォロー中のアイテムのアクティビティ" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "まだアップロードされていない" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "データセットが作成されていません" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -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:16 +msgid "Create one now?" +msgstr "作成しますか?" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "不正なデータです (例: 数値が範囲外かテキストフィールドに入力された)" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "あなたはどのグループのメンバーでもありません" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "リソース \"{0}\" がみつかりませんでした" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "あなたはどの組織のメンバーでもありません" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "ユーザ {0} には リソース {1} の更新権限がありません" +#: 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 "ユーザ" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "ページ毎のデータセット" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "アカウント情報" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -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ユーザにあなたが何者で、何をしているのかを知らせることができます" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "カスタムフィールド昇順" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "詳細の変更" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "カスタムフィールド降順" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +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 "カスタムテキスト" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "eg. Joe Bloggs" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "カスタムテキスト" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "eg. joe@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "国コード" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "あなたについての簡単な情報" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "カスタムリソーステキスト" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "購読内容をメールに通知" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "これは翻訳されていない文字列です" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "パスワードの変更" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "このグループには説明がありません" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "システム管理者 パスワード" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "CKANのデータプレビューツールには多くの有用な機能があります。" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "パスワード" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "画像URL" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +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 (空白の場合はリソースURL)" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "このユーザを削除してもよろしいですか?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "データエクスプローラー" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "APIキーを本当に再生成しますか?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "テーブル" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "APIキーを再生成" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "グラフ" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "プロフィールを更新" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "マップ" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "すべてのユーザ" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -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 "ログイン" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -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 "サインアップしましょう!数分で完了します" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "例: 0" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "アカウントの作成" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "列の数" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "パスワードを忘れましたか?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "例: 100" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "問題ありません。パスワード修復フォームでリセットして下さい。" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "グラフ型" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "パスワードを忘れましたか?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "グループ (軸 1)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "ログアウトしました" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "シリーズ (軸 2)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "ログアウトしました" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "フィールドタイプ" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "{user} としてログイン済み" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "緯度フィールド" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "ログアウト" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "経度フィールド" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "保存:" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "GeoJSONフィールド" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "ログイン済み" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "地物へのオートズーム" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." +msgstr "他のアカウントでログインするには一度ログアウトする必要があります" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "クラスターマーカー" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "ログアウト" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "データセット数" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "登録" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "日付" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "アカウントの登録" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "総データセット数" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "新規登録しませんか?" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "週毎のデータセットのリビジョン" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "データセット、グループ等を作成しましょう" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "すべてのデータセットリビジョン" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "ユーザ名" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "新規データセット" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "フルネーム" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "最も評価の高いデータセット" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "アカウントの作成" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "評価平均" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "パスワードのリセット" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "評価数" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "パスワードのリセット" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "評価なし" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "パスワードの変更" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "もっとも編集されたデータセット" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "これはどう動くのでしょうか?" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "編集回数" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "単純に新しいパスワードを入力してください。そうすればあなたのアカウントを更新します。" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "編集されたデータセットはありません" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "データセットを作成していません" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "最大グループ" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "まだバイオグラフィを提供していません" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "データセット数" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "このユーザにはバイオグラフィがありません" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "グループがありません" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "トップタグ" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "あなただけがこれを見ることができます" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "タグの名前" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "ユーザ登録日" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "データセット数" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "APIキー" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "最もデータセットを作成しているユーザ" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "パスワードをリセットしてください" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "統計メニュー" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "パスワードリセット" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "データセット数" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "初期化を申請" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "テキスト" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "ユーザ名をそのボックスに入力すれば、新しいパスワードを入力するためのリンクをメールで送ります。" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" -msgstr "エラー発生: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "アクティビティ元" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "ウェブサイト" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "リスト内を検索" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "ウェブページURL" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "まだ誰もフォローしていません" -#: 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/user/snippets/followers.html:9 +msgid "No followers" +msgstr "まだフォローされていません" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "ユーザを検索" diff --git a/ckan/i18n/km/LC_MESSAGES/ckan.mo b/ckan/i18n/km/LC_MESSAGES/ckan.mo index e7fb8a9e21c..7e52ce2ef4a 100644 Binary files a/ckan/i18n/km/LC_MESSAGES/ckan.mo and b/ckan/i18n/km/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/km/LC_MESSAGES/ckan.po b/ckan/i18n/km/LC_MESSAGES/ckan.po index 7267e4c337e..2bcebe581b4 100644 --- a/ckan/i18n/km/LC_MESSAGES/ckan.po +++ b/ckan/i18n/km/LC_MESSAGES/ckan.po @@ -1,4443 +1,4539 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "ពុំមានមុខងារអនុញ្ញាត៖ %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "អ្នកអភិបាល" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "ពណ្ណាធីការ" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "" -#: ckan/authz.py:199 -msgid "Member" -msgstr "សមាជិក" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "កំហុស" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "ចាំបាច់ត្រូវតែជាអ្នកគ្រប់គ្រងប្រព័ន្ធដើម្បីធ្វើការគ្រប់គ្រង" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "ចំណងជើងតំបន់បណ្តាញ" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "រកមិនឃើញ ធនធាន" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr " រចនាបថ" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "ពសិទ្ធិដើម្បីមើលទំព័រនេះ" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "ស្លាកបន្ទាត់របស់គេហទំព័រ" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "ស្លាករូបសំគាល់របស់គេហទំព័រ" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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 "អំពី" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "អត្ថបទ អំពីទំព័រ" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "អត្ថបទ ផ្ដើមសេចក្ដីណែនាំ" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "អត្ថបទលើគេហទំព័រ" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "កែរសំរួល CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "CSS ដែលកែរសំរួលត្រូវបានបញ្ចូលទៅក្នុងបឋមកថាទំព័រ​" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "គេហទំព័រដើម" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" -#: ckan/controllers/admin.py:160 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" msgstr "" -#: ckan/controllers/admin.py:182 +#: ckanext/datastore/controller.py:46 #, python-format -msgid "Problem purging revision %s: %s" +msgid "format: must be one of %s" msgstr "" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "សម្អាតទាំងស្រុង" +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "សកម្មភាពមិនត្រូវបានអនុវត្ត។" +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "ពសិទ្ធិដើម្បីមើលទំព័រនេះ" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "រកមិនឃើញ ធនធាន \"{0}\" ។" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "ការចូលត្រូវបានបដិសេធ" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "ពុំអាចរកបាន" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "ការស្នើរសុំមិនត្រូវលក្ខខណ្ឌ" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" msgstr "" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "កំហុស​ JSON៖ %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "ទិន្នន័យដែលបានស្នើរសុំមិនត្រូវលក្ខខណ្ឌ៖​ %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "បង្កើត" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" msgstr "" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" msgstr "" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" msgstr "" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" msgstr "" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" msgstr "" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "មិនអាចធ្វើបច្ចុប្បន្នភាពលិបិក្រមស្វែងរកទេ" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" msgstr "" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "មិនមានការកែប្រែណាមួយត្រូវបាន​បញ្ជាក់" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "មិនមានការកែប្រែណាមួយមានលេខសម្គាល់នេះ៖ %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." msgstr "" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "បញ្ជីមិនស្គាល់៖ %s" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr " ក្រុមរកមិនឃើញ" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "ប្រភេទក្រុមមិនត្រឹមត្រូវ" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "អង្គភាព" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "ក្រុម" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "ស្លាក" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "ទ្រង់ទ្រាយ" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "អាជ្ញាប័ណ្ណ" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" msgstr "" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "ពុំត្រូវបានអនុញ្ញាតអោយបង្កើតក្រុម" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "អ្នកប្រើ %r មិនត្រូវបានអនុញ្ញាតក្នុងការកែសម្រួល %s ទេ" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "កំហុសឆ្គងនៃភាពត្រឹមត្រូវ" - -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "អ្នកប្រើ %r មិនត្រូវបានអនុញ្ញាតក្នុងការកែសម្រួលទៅលើការអនុញ្ញាត %s ទេ" - -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "ពុំត្រូវបានអនុញ្ញាតអោយលុបក្រុម %s" - -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "អង្គការត្រូវបានលុប។" - -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "ក្រុមត្រូវបានលុបចោល" - -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "ពុំត្រូវបានអនុញ្ញាតអោយបន្ថែមសមាជិកក្រុម %s" - -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "ពុំត្រូវបានអនុញ្ញាតអោយលុបសមាជិកក្រុម %s" - -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "សមាជិកក្រុមត្រូវបានលុបចោល" - -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "ជ្រើសការកែប្រែពីរមុនពេលធ្វើការប្រៀបធៀប។" - -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "ប្រវត្តិនៃការកែប្រែក្រុមរបស់ CKAN" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "ការផ្លាស់ប្តូរថ្មីដើម្បីក្រុម CKAN៖" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "សារកំណត់ហេតុ៖" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" msgstr "" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" msgstr "" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" +#: 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 "" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" msgstr "" -"បណ្តាញនេះគឺស្ថិតនៅក្រៅបណ្តាញក្នុងពេលបច្ចុប្បន្ន។ " -"មូលដ្ឋានទិន្នន័យមិនត្រូវបានធ្វើការចាប់ផ្ដើម។" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" msgstr "" -"សូមធ្វើបច្ចុប្បន្នភាពអំពីពត៍មានផ្ទាល់ខ្លួនរបស់អ្នក " -"​ហើយនឹងបំពេញអាស័យដ្ឋានអ៊ីម៉ែលរបស់អ្នក។" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" msgstr "" -"%s ប្រើអ៊ីម៉ែលរបស់អ្នកប្រសិនបើអ្នកត្រូវការកំណត់ពាក្យសម្ងាត់របស់អ្នកឡើងវិញ។" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" msgstr "" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" +#: 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/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -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/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "ទ្រង់ទ្រាយនៃការកែប្រែមិនត្រឹមត្រូវ៖ %r" +#: 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 "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: 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/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "ប្រវត្តិនៃការកែប្រែបណ្តុំទិន្នន័យរបស់ CKAN" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "ធនធាន" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "ការផ្លាស់ប្តូរថ្មីលើ បណ្តុំទិន្នន័យ CKAN៖" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "រូបភាព" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួលធនធាននេះ" - -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "រកមិនឃើញ ធនធាន" - -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើបច្ចុប្បន្នភាពទិន្នន័យទេ" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" msgstr "" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "កំហុស" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" msgstr "" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" msgstr "" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" msgstr "" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "បណ្តុំទិន្នន័យត្រូវបានលុបចោល" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" msgstr "" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "ធនធានត្រូវបានលុបចោល" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" msgstr "" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" msgstr "" -#: ckan/controllers/package.py:1167 -msgid "No download is available" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" msgstr "" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" msgstr "" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" msgstr "" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" msgstr "" -#: ckan/controllers/package.py:1495 -msgid "View not found" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" msgstr "" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" msgstr "" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" msgstr "" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" msgstr "" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" msgstr "" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" msgstr "" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" msgstr "" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" msgstr "" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "ការកែប្រែបានធ្វើបច្ចុប្បន្នភាព" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "ការកែប្រែបណ្តុំទិន្នន័យក្នុងមួយសប្តាហ៍" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "ផ្សេងៗទៀត" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "ការកែប្រែសំណុំទិន្នន័យទាំងអស់" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "រកមិនឃើញ ស្លាក" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "រកមិនឃើញអ្នកប្រើប្រាស់" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការចុះឈ្មោះជា អ្នកប្រើ" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "ពុំត្រូវបានអនុញ្ញាតអោយបង្កើតអ្នកប្រើប្រាស់" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "ពុំត្រូវបានអនុញ្ញាតដើម្បីលុបអ្នកប្រើប្រាស់ដែលមានលេខសំគាល់ \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "មិនមានអ្នកប្រើប្រាស់ណាមួយត្រូវបាន​បញ្ជាក់" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួលព័ត៍មានអ្នកប្រើប្រាស់​ %s" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "សំនំុទិន្នន័យ" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "ជិវប្រវត្តិត្រូវបានធ្វើបច្ចុប្បន្នភាព" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "ពុំត្រូវបានអនុញ្ញាតអោយបង្កើតអ្បង្កើតអ្នកប្រើ %s" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "ការបញ្ចូលមិនត្រឹមត្រូវ។ សូមព្យាយាមម្តងទៀត។" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "ក្រុម" + +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" msgstr "" -"អ្នកប្រើ \"%s\" ឥឡូវនេះបានចុះឈ្មោះហើយ ប៉ុន្តែអ្នកនៅតែត្រូវបានកត់ត្រាចូលជា " -"\"%s\" ពីមុនមក" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួលព័ត៍មានអ្នកប្រើប្រាស់" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "អ្នកប្រើ %s មិនត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួល %s ទេ" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" msgstr "" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" msgstr "" -#: ckan/controllers/user.py:386 -msgid "incorrect password" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" msgstr "" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "កត់ត្រា​ចូលបានបរាជ័យ។ ឈ្មោះអ្នកប្រើឬពាក្យសម្ងាត់មិនត្រឹមត្រូវ។" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "អ្នកប្រើប្រាស់" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "ពុំត្រូវបានអនុញ្ញាតក្នុងការស្នើសុំការកំណត់ពាក្យសម្ងាត់ឡើងវិញទេ។" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" ផ្គូផ្គងត្រូវ អ្នកប្រើប្រាស់ជាច្រើន" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "មិនមានអ្នកប្រើប្រាស់នេះទេ៖ %s" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "សូមពិនិត្យមើលប្រអប់សំបុត្ររបស់អ្នកសម្រាប់កូដកំណត់។" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" msgstr "" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "ពុំត្រូវបានអនុញ្ញាតក្នុងការកំណត់ពាក្យសម្ងាត់ឡើងវិញទេ។" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." msgstr "" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "ពាក្យសម្ងាត់របស់លោកអ្នកត្រូវកំណត់ឡើងវិញ។" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "ពុំមានមុខងារអនុញ្ញាត៖ %s" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "ពាក្យសម្ងាត់របស់អ្នកត្រូវតែ៤តួអក្សរ ឬលើសពីនេះ។" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "អ្នកអភិបាល" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "ពាក្យសម្ងាត់ដែលអ្នកបានបញ្ចូលមិនត្រូវគ្នា។" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "ពណ្ណាធីការ" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "អ្នកត្រូវតែផ្ដល់ពាក្យសម្ងាត់" +#: ckan/authz.py:202 +msgid "Member" +msgstr "សមាជិក" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "រកមិនឃើញ វត្ថុដែលតាមដាន" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "ចាំបាច់ត្រូវតែជាអ្នកគ្រប់គ្រងប្រព័ន្ធដើម្បីធ្វើការគ្រប់គ្រង" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "រកមិនឃើញ {0} " +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "ចំណងជើងតំបន់បណ្តាញ" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "គ្រប់យ៉ាង" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr " រចនាបថ" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "តំលៃដែលមិនឃើញ" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "ស្លាកបន្ទាត់របស់គេហទំព័រ" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "ស្លាករូបសំគាល់របស់គេហទំព័រ" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "អត្ថបទ អំពីទំព័រ" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "អត្ថបទ ផ្ដើមសេចក្ដីណែនាំ" + +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "អត្ថបទលើគេហទំព័រ" + +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "កែរសំរួល CSS" + +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "CSS ដែលកែរសំរួលត្រូវបានបញ្ចូលទៅក្នុងបឋមកថាទំព័រ​" + +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "គេហទំព័រដើម" + +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" msgstr "" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" msgstr "" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "សម្អាតទាំងស្រុង" + +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "សកម្មភាពមិនត្រូវបានអនុវត្ត។" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "ការចូលត្រូវបានបដិសេធ" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "ពុំអាចរកបាន" + +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "ការស្នើរសុំមិនត្រូវលក្ខខណ្ឌ" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" msgstr "" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "កំហុស​ JSON៖ %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "ទិន្នន័យដែលបានស្នើរសុំមិនត្រូវលក្ខខណ្ឌ៖​ %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" msgstr "" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" msgstr "" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" msgstr "" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" msgstr "" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" msgstr "" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "មិនអាចធ្វើបច្ចុប្បន្នភាពលិបិក្រមស្វែងរកទេ" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" msgstr "" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "មិនមានការកែប្រែណាមួយត្រូវបាន​បញ្ជាក់" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "មិនមានការកែប្រែណាមួយមានលេខសម្គាល់នេះ៖ %s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" msgstr "" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" msgstr "" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "បញ្ជីមិនស្គាល់៖ %s" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" msgstr "" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." 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/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr " ក្រុមរកមិនឃើញ" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "មករា" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "កុម្ភៈ" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "ប្រភេទក្រុមមិនត្រឹមត្រូវ" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "មិនា" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "អង្គភាព" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "មេសា" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "ក្រុម" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "ឧសភា" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "ស្លាក" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "មិថុនា" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "ទ្រង់ទ្រាយ" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "កក្កដា" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "អាជ្ញាប័ណ្ណ" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "សីហា" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "អ្នកប្រើ %r មិនត្រូវបានអនុញ្ញាតក្នុងការកែសម្រួល %s ទេ" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "កញ្ញា" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "តុលា" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយបង្កើតក្រុម" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "វិច្ឆិកា" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "កំហុសឆ្គងនៃភាពត្រឹមត្រូវ" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "ធ្នូ" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "អ្នកប្រើ %r មិនត្រូវបានអនុញ្ញាតក្នុងការកែសម្រួលទៅលើការអនុញ្ញាត %s ទេ" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "ពេលឥឡូវនេះ" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយលុបក្រុម %s" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "អង្គការត្រូវបានលុប។" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "ក្រុមត្រូវបានលុបចោល" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} កន្លងទៅ" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយបន្ថែមសមាជិកក្រុម %s" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយលុបសមាជិកក្រុម %s" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "សមាជិកក្រុមត្រូវបានលុបចោល" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "ជ្រើសការកែប្រែពីរមុនពេលធ្វើការប្រៀបធៀប។" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "ប្រវត្តិនៃការកែប្រែក្រុមរបស់ CKAN" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "ការផ្លាស់ប្តូរថ្មីដើម្បីក្រុម CKAN៖" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "សារកំណត់ហេតុ៖" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" msgstr "" -#: ckan/lib/formatters.py:189 -msgid "{n}" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" msgstr "" -#: ckan/lib/formatters.py:191 -msgid "{k}k" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/lib/formatters.py:193 -msgid "{m}M" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." msgstr "" +"បណ្តាញនេះគឺស្ថិតនៅក្រៅបណ្តាញក្នុងពេលបច្ចុប្បន្ន។ " +"មូលដ្ឋានទិន្នន័យមិនត្រូវបានធ្វើការចាប់ផ្ដើម។" -#: ckan/lib/formatters.py:195 -msgid "{g}G" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " msgstr "" +"សូមធ្វើបច្ចុប្បន្នភាពអំពីពត៍មានផ្ទាល់ខ្លួនរបស់អ្នក " +"​ហើយនឹងបំពេញអាស័យដ្ឋានអ៊ីម៉ែលរបស់អ្នក។" -#: ckan/lib/formatters.py:197 -msgid "{t}T" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." msgstr "" +"%s ប្រើអ៊ីម៉ែលរបស់អ្នកប្រសិនបើអ្នកត្រូវការកំណត់ពាក្យសម្ងាត់របស់អ្នកឡើងវិញ។" -#: ckan/lib/formatters.py:199 -msgid "{p}P" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" msgstr "" -#: ckan/lib/formatters.py:201 -msgid "{e}E" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "រកមិនឃើញបណ្តុំទិន្នន័យ" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "ទ្រង់ទ្រាយនៃការកែប្រែមិនត្រឹមត្រូវ៖ %r" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" msgstr "" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "ធនធានដែលគ្មានឈ្មោះ" - -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "បានបង្កើតបណ្តុំទិន្នន័យថ្មី" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "ប្រវត្តិនៃការកែប្រែបណ្តុំទិន្នន័យរបស់ CKAN" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "ធនធានដែលបានកែ" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "ការផ្លាស់ប្តូរថ្មីលើ បណ្តុំទិន្នន័យ CKAN៖" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "ការកំណត់ទុកដែលបានកែ" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួលធនធាននេះ" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើបច្ចុប្បន្នភាពទិន្នន័យទេ" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." msgstr "" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" msgstr "" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" msgstr "" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "តំលៃដែលមិនឃើញ" - -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." msgstr "" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "សូមបញ្ចូលតំលៃជាចំនួនគត់" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "ធនធាន" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "បណ្តុំទិន្នន័យត្រូវបានលុបចោល" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "ធនធានត្រូវបានលុបចោល" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1052 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" +msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "អ្នកប្រើប្រាស់" - -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "សំនំុទិន្នន័យ" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "ក្រុម" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "មិនអាចផ្តល់អោយជា JSON បានការ" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" msgstr "" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" msgstr "" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "ចំនួនគត់មិនត្រឹមត្រូវ" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" msgstr "" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "ត្រូវតែជាចំនួនគត់វិជ្ជមាន" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "ទ្រង់ទ្រាយកាលបរិច្ឆេទមិនត្រឹមត្រូវ" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." msgstr "" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" msgstr "" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "ធនធាន" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" msgstr "" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "ប្រភេទសកម្មភាព" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "ការកែប្រែបានធ្វើបច្ចុប្បន្នភាព" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "ឈ្មោះត្រូវតែជាអក្សរ" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "ផ្សេងៗទៀត" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "ឈ្មោះនោះមិនត្រូវបានប្រើប្រាស់" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "រកមិនឃើញ ស្លាក" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការចុះឈ្មោះជា អ្នកប្រើ" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយបង្កើតអ្នកប្រើប្រាស់" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "ពុំត្រូវបានអនុញ្ញាតដើម្បីលុបអ្នកប្រើប្រាស់ដែលមានលេខសំគាល់ \"{user_id}\"." -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "អាស័យដ្ឋាន URL នោះស្ថិតក្នុងការប្រើប្រាស់រួចហើយ" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "មិនមានអ្នកប្រើប្រាស់ណាមួយត្រូវបាន​បញ្ជាក់" -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "" +msgid "Unauthorized to edit user %s" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួលព័ត៍មានអ្នកប្រើប្រាស់​ %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "រកមិនឃើញអ្នកប្រើប្រាស់" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "ជិវប្រវត្តិត្រូវបានធ្វើបច្ចុប្បន្នភាព" -#: ckan/logic/validators.py:393 +#: ckan/controllers/user.py:245 #, python-format -msgid "Duplicate key \"%s\"" -msgstr "" +msgid "Unauthorized to create user %s" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយបង្កើតអ្បង្កើតអ្នកប្រើ %s" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "ឈ្មោះក្រុមមានរួចហើយនៅក្នុងមូលដ្ឋានទិន្នន័យ" +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "ការបញ្ចូលមិនត្រឹមត្រូវ។ សូមព្យាយាមម្តងទៀត។" -#: ckan/logic/validators.py:415 +#: ckan/controllers/user.py:265 #, python-format -msgid "Tag \"%s\" length is less than minimum %s" +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" +"អ្នកប្រើ \"%s\" ឥឡូវនេះបានចុះឈ្មោះហើយ ប៉ុន្តែអ្នកនៅតែត្រូវបានកត់ត្រាចូលជា " +"\"%s\" ពីមុនមក" -#: ckan/logic/validators.py:419 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួលព័ត៍មានអ្នកប្រើប្រាស់" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:320 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" +msgid "User %s not authorized to edit %s" +msgstr "អ្នកប្រើ %s មិនត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួល %s ទេ" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" msgstr "" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "ឈ្មោះអ្នកប្រើប្រាស់ត្រូវតែជាអក្សរ" - -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "កំណត់ត្រា​ឈ្មោះចូលនោះមិនមានទេ។" - -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "សូមបញ្ចូលពាក្យសម្ងាត់ទាំងពីរ" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "ពាក្យសម្ងាត់ត្រូវតែជាខ្សែអក្សរ" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "ពាក្យសម្ងាត់របស់អ្នកត្រូវតែ៤តួអក្សរ ឬលើសពីនេះ។" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "កត់ត្រា​ចូលបានបរាជ័យ។ ឈ្មោះអ្នកប្រើឬពាក្យសម្ងាត់មិនត្រឹមត្រូវ។" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "ពាក្យសម្ងាត់ដែលអ្នកបានបញ្ចូលមិនត្រូវគ្នា។" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "ពុំត្រូវបានអនុញ្ញាតក្នុងការស្នើសុំការកំណត់ពាក្យសម្ងាត់ឡើងវិញទេ។" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "" +#: ckan/controllers/user.py:490 +#, python-format +msgid "\"%s\" matched several users" +msgstr "\"%s\" ផ្គូផ្គងត្រូវ អ្នកប្រើប្រាស់ជាច្រើន" -#: ckan/logic/validators.py:619 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Name must be at least %s characters long" -msgstr "" +msgid "No such user: %s" +msgstr "មិនមានអ្នកប្រើប្រាស់នេះទេ៖ %s" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "ឈ្មោះវាក្យស័ព្ទនោះស្ថិតក្នុងការប្រើប្រាស់រួចហើយ" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "សូមពិនិត្យមើលប្រអប់សំបុត្ររបស់អ្នកសម្រាប់កូដកំណត់។" -#: ckan/logic/validators.py:633 +#: ckan/controllers/user.py:503 #, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" +msgid "Could not send reset link: %s" msgstr "" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "វាក្យស័ព្ទនៃស្លាកពាក្យរកមិនឃើញ" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "ពុំត្រូវបានអនុញ្ញាតក្នុងការកំណត់ពាក្យសម្ងាត់ឡើងវិញទេ។" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." msgstr "" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "គ្មានឈ្មោះស្លាកពាក្យ" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "ពាក្យសម្ងាត់របស់លោកអ្នកត្រូវកំណត់ឡើងវិញ។" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "ពាក្យសម្ងាត់របស់អ្នកត្រូវតែ៤តួអក្សរ ឬលើសពីនេះ។" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "សូមផ្តល់អាស័យដ្ឋាន URL បានការ" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "ពាក្យសម្ងាត់ដែលអ្នកបានបញ្ចូលមិនត្រូវគ្នា។" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "តួនាទីមិនមាន" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "អ្នកត្រូវតែផ្ដល់ពាក្យសម្ងាត់" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "រកមិនឃើញ វត្ថុដែលតាមដាន" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "មិនមែនជាបញ្ជី" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "រកមិនឃើញ {0} " -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "មិនមែនជាអក្សរ" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "គ្រប់យ៉ាង" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "តំលៃដែលមិនឃើញ" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." msgstr "" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" msgstr "" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" msgstr "" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" msgstr "" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" msgstr "" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" msgstr "" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" msgstr "" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "ការវាយតំលៃត្រូវតែជា" - -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" msgstr "" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" msgstr "" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" msgstr "" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" msgstr "" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" msgstr "" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" msgstr "" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" msgstr "" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" msgstr "" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" msgstr "" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -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/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "មករា" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "" +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "កុម្ភៈ" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "រកមិនឃើញ ធនធាន។" +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "មិនា" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "មេសា" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "ឧសភា" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "មិថុនា" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "កក្កដា" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "សីហា" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "កញ្ញា" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "តុលា" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "រកមិនឃើញ អង្គការ។" +#: ckan/lib/formatters.py:59 +msgid "November" +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/lib/formatters.py:63 +msgid "December" +msgstr "ធ្នូ" + +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "ពេលឥឡូវនេះ" + +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} កន្លងទៅ" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" msgstr "" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" msgstr "" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" msgstr "" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" 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/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" msgstr "" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" +#: ckan/lib/formatters.py:187 +msgid "{n}" msgstr "" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" +#: ckan/lib/formatters.py:189 +msgid "{k}k" msgstr "" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" +#: ckan/lib/formatters.py:191 +msgid "{m}M" msgstr "" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" +#: ckan/lib/formatters.py:193 +msgid "{g}G" msgstr "" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." +#: ckan/lib/formatters.py:195 +msgid "{t}T" msgstr "" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" +#: ckan/lib/formatters.py:197 +msgid "{p}P" msgstr "" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" +#: ckan/lib/formatters.py:199 +msgid "{e}E" msgstr "" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" msgstr "" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" msgstr "" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" msgstr "" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "ពុំត្រូវបានអនុញ្ញាត" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "ធនធានដែលគ្មានឈ្មោះ" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "បានបង្កើតបណ្តុំទិន្នន័យថ្មី" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "ធនធានដែលបានកែ" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "ការកំណត់ទុកដែលបានកែ" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" -#: ckan/logic/auth/update.py:39 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to edit package %s" +msgid "%s <%s>" msgstr "" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" msgstr "" -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" msgstr "" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" msgstr "" -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "តំលៃដែលមិនឃើញ" -#: ckan/logic/auth/update.py:162 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to edit permissions of group %s" +msgid "The input field %(name)s was not expected." msgstr "" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "សូមបញ្ចូលតំលៃជាចំនួនគត់" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" msgstr "" -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "អ្នកប្រើ %s មិនត្រូវបានអនុញ្ញាតឱ្យផ្លាស់ប្តូរស្ថានភាពនៃការកែប្រែ" - -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" msgstr "" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to update term_translation table" +msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "មិនអាចផ្តល់អោយជា JSON បានការ" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" msgstr "" -#: ckan/model/license.py:222 -msgid "License not specified" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" msgstr "" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "ចំនួនគត់មិនត្រឹមត្រូវ" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" msgstr "" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "ត្រូវតែជាចំនួនគត់វិជ្ជមាន" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "ទ្រង់ទ្រាយកាលបរិច្ឆេទមិនត្រឹមត្រូវ" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." msgstr "" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" msgstr "" -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "ធនធាន" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." msgstr "" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "ប្រភេទសកម្មភាព" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "ឈ្មោះត្រូវតែជាអក្សរ" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "ឈ្មោះនោះមិនត្រូវបានប្រើប្រាស់" + +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" msgstr "" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" msgstr "" -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "depends on %s" -msgstr "" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "អាស័យដ្ឋាន URL នោះស្ថិតក្នុងការប្រើប្រាស់រួចហើយ" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "is a dependency of %s" +msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:370 #, python-format -msgid "derives from %s" +msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "has derivation %s" +msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:394 #, python-format -msgid "links to %s" +msgid "Duplicate key \"%s\"" msgstr "" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "ឈ្មោះក្រុមមានរួចហើយនៅក្នុងមូលដ្ឋានទិន្នន័យ" + +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" +msgid "Tag \"%s\" length is less than minimum %s" msgstr "" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" +msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" +msgid "Tag \"%s\" must not be uppercase" msgstr "" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "ឈ្មោះអ្នកប្រើប្រាស់ត្រូវតែជាអក្សរ" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "កំណត់ត្រា​ឈ្មោះចូលនោះមិនមានទេ។" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "សូមបញ្ចូលពាក្យសម្ងាត់ទាំងពីរ" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "ពាក្យសម្ងាត់ត្រូវតែជាខ្សែអក្សរ" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "ពាក្យសម្ងាត់របស់អ្នកត្រូវតែ៤តួអក្សរ ឬលើសពីនេះ។" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "ពាក្យសម្ងាត់ដែលអ្នកបានបញ្ចូលមិនត្រូវគ្នា។" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "ឈ្មោះវាក្យស័ព្ទនោះស្ថិតក្នុងការប្រើប្រាស់រួចហើយ" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "វាក្យស័ព្ទនៃស្លាកពាក្យរកមិនឃើញ" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "គ្មានឈ្មោះស្លាកពាក្យ" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "សូមផ្តល់អាស័យដ្ឋាន URL បានការ" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "តួនាទីមិនមាន" + +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "រូបភាព" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "មិនមែនជាបញ្ជី" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "មិនមែនជាអក្សរ" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "ការវាយតំលៃត្រូវតែជា" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." msgstr "" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" msgstr "" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" msgstr "" -#: ckan/templates/footer.html:9 -msgid "About {0}" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/templates/footer.html:15 -msgid "CKAN API" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." msgstr "" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." msgstr "" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" msgstr "" -#: ckan/templates/header.html:19 -msgid "View profile" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" msgstr "" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:318 #, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" - -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" +msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "កែការកំណត់ទុក" - -#: ckan/templates/header.html:37 -msgid "Settings" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" msgstr "" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "ចុះឈ្មោះ" - -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "បណ្តុំទិន្នន័យ" - -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "ស្វែងរកបណ្តុំទិន្នន័យ" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." msgstr "" -#: ckan/templates/page.html:6 -msgid "Skip to content" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "រកមិនឃើញ ធនធាន។" + +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." msgstr "" -#: ckan/templates/admin/base.html:3 -msgid "Administration" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" msgstr "" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" msgstr "" -#: ckan/templates/admin/base.html:9 -msgid "Config" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." msgstr "" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" +#: ckan/logic/action/update.py:1059 +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/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" msgstr "" -#: ckan/templates/admin/config.html:17 -msgid "Reset" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" msgstr "" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." msgstr "" -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:76 #, 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.

" +msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" msgstr "" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" msgstr "" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:129 #, 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

" +msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "ពុំបានអនុញ្ញាតអោយបង្កើតអ្នកប្រើប្រាស់" + +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "រកមិនឃើញ ក្រុម។" + +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "បង្កើត" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "ពុំត្រូវបានអនុញ្ញាត" + +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "ព័ត៌មានលម្អិតបន្ថែម..." +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "" + +#: ckan/logic/auth/update.py:198 #, python-format -msgid "No handler defined for data type: %(type)s." +msgid "User %s not authorized to edit user %s" msgstr "" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "បទដ្ឋាន" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "អ្នកប្រើ %s មិនត្រូវបានអនុញ្ញាតឱ្យផ្លាស់ប្តូរស្ថានភាពនៃការកែប្រែ" + +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" msgstr "" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" msgstr "" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" msgstr "" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" msgstr "" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" +#: ckan/model/license.py:222 +msgid "License not specified" msgstr "" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" msgstr "" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" msgstr "" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" msgstr "" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" msgstr "" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" +#: ckan/model/license.py:301 +msgid "Other (Open)" msgstr "" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" msgstr "" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" 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" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "បន្ថែមក្រុម" - -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" msgstr "" -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:16 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -msgid "Confirm Delete" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" msgstr "" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" 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}?" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" msgstr "" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "កែប្រែក្រុម" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +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/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" msgstr "" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" msgstr "" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "បន្ថែមក្រុម" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" msgstr "" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" msgstr "" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" msgstr "" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" 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/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "បន្ថែមសមាជិក" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" msgstr "" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" msgstr "" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" msgstr "" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "តួនាទី" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" msgstr "" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "លុបចោល" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" -#: ckan/templates/group/member_new.html:61 -msgid "Save" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" msgstr "" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" msgstr "" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" msgstr "" -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" msgstr "" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" msgstr "" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" msgstr "" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." msgstr "" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" msgstr "" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" msgstr "" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" msgstr "" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" msgstr "" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "ប្រវត្តិនៃការកែប្រែដែលថ្មី" - -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" msgstr "" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" msgstr "" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" msgstr "" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" msgstr "" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" msgstr "" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" +#: ckan/templates/footer.html:9 +msgid "About {0}" msgstr "" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" +#: ckan/templates/footer.html:15 +msgid "CKAN API" msgstr "" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" msgstr "" -#: ckan/templates/group/snippets/helper.html:8 +#: ckan/templates/footer.html:24 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. " +"Powered by CKAN" msgstr "" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" msgstr "" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" +#: ckan/templates/header.html:19 +msgid "View profile" msgstr "" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" + +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "ការកែប្រែ" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "កែការកំណត់ទុក" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" +#: ckan/templates/header.html:37 +msgid "Settings" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" msgstr "" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +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/

" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "បណ្តុំទិន្នន័យ" + +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "ស្វែងរកបណ្តុំទិន្នន័យ" + +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" msgstr "" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" +#: ckan/templates/page.html:6 +msgid "Skip to content" 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 " +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" msgstr "" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" msgstr "" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" msgstr "" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" +#: ckan/templates/admin/base.html:3 +msgid "Administration" msgstr "" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" msgstr "" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" +#: ckan/templates/admin/base.html:9 +msgid "Config" msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "" + +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" +#: ckan/templates/admin/config.html:16 +msgid "Reset" msgstr "" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" +#: ckan/templates/admin/config.html:17 +msgid "Update Config" msgstr "" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" msgstr "" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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/macros/form.html:265 -msgid "This field is required" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" msgstr "" -#: ckan/templates/macros/form.html:265 -msgid "Custom" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" msgstr "" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" +#: 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/macros/form.html:395 -msgid "Required field" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" msgstr "" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" msgstr "" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." msgstr "" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." msgstr "" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" msgstr "" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." msgstr "" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "ព័ត៌មានលម្អិតបន្ថែម..." -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." msgstr "" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "បទដ្ឋាន" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" msgstr "" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" msgstr "" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" msgstr "" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" msgstr "" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" msgstr "" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" msgstr "" -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" msgstr "" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" msgstr "" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" msgstr "" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" msgstr "" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "ឈ្មោះអ្នកប្រើប្រាស់" - -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" msgstr "" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" msgstr "" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" msgstr "" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" msgstr "" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" msgstr "" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" +#: 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/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "បន្ថែមក្រុម" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" msgstr "" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" +#: 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/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" 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).

" +#: 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/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. " +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "កែប្រែក្រុម" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "" +#: ckan/templates/group/edit_base.html:23 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" +msgstr "សមាជិក" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "បន្ថែមក្រុម" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." msgstr "" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" msgstr "" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" 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/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/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "បន្ថែមសមាជិក" + +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" msgstr "" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" msgstr "" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" 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" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "មើលជាមុន" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "តួនាទី" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "លុបចោល" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" msgstr "" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" +#: ckan/templates/group/member_new.html:80 +msgid "" +"

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

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

" msgstr "" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update 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/package/new_resource.html:5 -msgid "Add data to the dataset" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" msgstr "" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" msgstr "" -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." msgstr "" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" 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/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +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. " +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" msgstr "" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "បន្ថែម" - -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" msgstr "" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" msgstr "" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." msgstr "" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" msgstr "" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" msgstr "" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" msgstr "" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" msgstr "" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" msgstr "" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" +#: 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/package/resource_data.html:74 -msgid "Details" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" msgstr "" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" msgstr "" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" msgstr "" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "ការកែប្រែ" + +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" msgstr "" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" msgstr "" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" msgstr "" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" +#: ckan/templates/home/index.html:4 +msgid "Welcome" msgstr "" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" +#: 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/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" msgstr "" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" +#: 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/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" msgstr "" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" msgstr "" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" msgstr "" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" msgstr "" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" msgstr "" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" msgstr "" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" msgstr "" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" msgstr "" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" msgstr "" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" msgstr "" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" msgstr "" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" msgstr "" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" +#: ckan/templates/macros/form.html:265 +msgid "Custom" msgstr "" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" msgstr "" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" +#: ckan/templates/macros/form.html:395 +msgid "Required field" msgstr "" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "អាជ្ញាប័ណ្ឌ" - -#: ckan/templates/package/resource_views.html:10 -msgid "New view" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" msgstr "" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" msgstr "" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" msgstr "" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" msgstr "" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/templates/package/search.html:53 -msgid "API Docs" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" msgstr "" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" 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. " +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" 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). " +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" msgstr "" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" msgstr "" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" msgstr "" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" 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" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" +#: 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/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "ឈ្មោះអ្នកប្រើប្រាស់" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/member_new.html:81 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +"

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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:41 -msgid "" -" License definitions and additional information can be found at opendefinition.org " +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" +#: 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/package/snippets/package_basic_fields.html:74 -msgid "No organization" +#: 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/package/snippets/package_basic_fields.html:89 -msgid "Visibility" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." msgstr "" -#: ckan/templates/package/snippets/package_form.html:28 +#: ckan/templates/organization/snippets/organization_form.html:60 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." +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." msgstr "" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" msgstr "" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" +#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" 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" +#: 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/snippets/package_metadata_fields.html:16 -msgid "Author Email" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" 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" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" msgstr "" -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: 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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "មើលជាមុន" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" +#: 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/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" +#: 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/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" +#: 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/snippets/resource_form.html:72 -msgid "Previous" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "បន្ថែម" + +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" msgstr "" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit 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." +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." msgstr "" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "ទិន្នន័យ និងធនធាន" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" +#: ckan/templates/package/resource_read.html:122 +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/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" msgstr "" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" msgstr "" -#: ckan/templates/package/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/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" msgstr "" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "អាជ្ញាប័ណ្ឌ" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" msgstr "" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" msgstr "" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" msgstr "" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr " ភាពខុសគ្នានៃការកែប្រែ" +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, python-format +msgid "" +"

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

" +msgstr "" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" msgstr "" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" msgstr "" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "ប្រវត្តិនៃការកែប្រែ" +#: ckan/templates/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/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -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/revision/read.html:30 -msgid "Undelete" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" msgstr "" -#: ckan/templates/revision/read.html:64 -msgid "Changes" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" msgstr "" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" msgstr "" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" msgstr "" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" +#: 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/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" +#: 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/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" msgstr "" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." msgstr "" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" +#: 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/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" msgstr "" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" msgstr "" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "ទំព័រដើម" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "ភាសា" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "ទៅ" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" msgstr "" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" msgstr "" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" msgstr "" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" msgstr "" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" msgstr "" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" +#: 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/snippets/search_form.html:80 -msgid "

Please try another search.

" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" msgstr "" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" 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/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" msgstr "" -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[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/snippets/search_result_text.html:18 -msgid "No datasets found" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" 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/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/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" msgstr "" -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" 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/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" msgstr "" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" msgstr "" -#: ckan/templates/snippets/social.html:5 -msgid "Social" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" msgstr "" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" 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:82 -msgid "Email" -msgstr "អ៉ីម៉ែល" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" msgstr "" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" msgstr "" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" msgstr "" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" msgstr "" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" msgstr "" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" msgstr "" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" msgstr "" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" msgstr "" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." +#: 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/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" msgstr "" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" 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" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." msgstr "" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" msgstr "" -#: ckan/templates/user/edit.html:19 +#: ckan/templates/package/snippets/resource_view.html:66 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" msgstr "" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" 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" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" msgstr "" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" msgstr "" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" msgstr "" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "ទិន្នន័យ និងធនធាន" + +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" msgstr "" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "លាស់ប្តូរពាក្យសម្ងាត់" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" msgstr "" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "ពាក្យសម្ងាត់" +#: ckan/templates/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/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "បញ្ជាក់ពាក្យសម្ងាត់" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" msgstr "" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" msgstr "" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" msgstr "" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" 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/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr " ភាពខុសគ្នានៃការកែប្រែ" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" msgstr "" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" msgstr "" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "ប្រវត្តិនៃការកែប្រែ" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "ភ្លេចពាក្យសម្ងាត់របស់អ្នក?" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "ការកែប្រែ" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." +#: ckan/templates/revision/read.html:30 +msgid "Undelete" 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" +#: ckan/templates/revision/read.html:64 +msgid "Changes" msgstr "" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" msgstr "" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "ចងចាំខ្ញំុ" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" msgstr "" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" msgstr "" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" msgstr "" -#: ckan/templates/user/new.html:6 -msgid "Registration" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" msgstr "" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "ចុះឈ្មោះសំរាប់គណនីមួយ" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." msgstr "" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" msgstr "" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" msgstr "" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" msgstr "" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" msgstr "" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "កំណត់ពាក្យសម្ងាត់របស់អ្នកជាថ្មីម្តងទៀត" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "ទំព័រដើម" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "កំណត់ពាក្យសម្ងាត់ជាថ្មីម្តងទៀត" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "ភាសា" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "ធ្វើបច្ចុប្បន្នភាពពាក្យសម្ងាត់" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "ទៅ" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" msgstr "" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." msgstr "" -"គ្រាន់តែបញ្ចូលពាក្យសម្ងាត់ថ្មី ហើយយើងនឹងធ្វើបច្ចុប្បន្នភាពគណនីរបស់អ្នក" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" msgstr "" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" msgstr "" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" msgstr "" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" msgstr "" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" msgstr "" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" msgstr "" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" msgstr "" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -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/user/request_reset.html:6 -msgid "Password reset" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" msgstr "" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" msgstr "" -"សូមបញ្ចូលឈ្មោះអ្នកប្រើរបស់អ្នកចូលទៅក្នុងប្រអប់នេះ ហើយយើងនឹងផ្ញើកអ៊ីមែលទៅអ្នក" -" ដោយុមានតំណភ្ជាប់ដើម្បីបញ្ចូលពាក្យសម្ងាត់ជាថ្មី។" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" +#: 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/user/snippets/followee_dropdown.html:23 -msgid "Search list..." +#: 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/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" +#: 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/user/snippets/followers.html:9 -msgid "No followers" +#: 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/user/snippets/user_search.html:5 -msgid "Search Users" +#: ckan/templates/snippets/social.html:5 +msgid "Social" msgstr "" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" msgstr "" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" +#: 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:82 +msgid "Email" +msgstr "អ៉ីម៉ែល" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" msgstr "" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" msgstr "" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" msgstr "" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" msgstr "" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" msgstr "" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "រកមិនឃើញ ធនធាន \"{0}\" ។" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" +#: 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:16 +msgid "Create one now?" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." 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" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" +#: 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 "" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" +#: ckan/templates/user/edit.html:19 +msgid "" +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" +#: 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 "" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" msgstr "" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "លាស់ប្តូរពាក្យសម្ងាត់" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "ពាក្យសម្ងាត់" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "បញ្ជាក់ពាក្យសម្ងាត់" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -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 "កត់ត្រា​ចូល" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" +#: 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 "" +"គ្មានបញ្ហាទេ, " +"សូមប្រើប្រាស់ទម្រង់បែបបទទាញយកពាក្យសម្ងាត់របស់យើងដើម្បីកំណត់ឡើងវិញ។" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" +#: 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 "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "ចងចាំខ្ញំុ" + +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "ការកែប្រែបណ្តុំទិន្នន័យក្នុងមួយសប្តាហ៍" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "ការកែប្រែសំណុំទិន្នន័យទាំងអស់" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "ចុះឈ្មោះសំរាប់គណនីមួយ" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "កំណត់ពាក្យសម្ងាត់របស់អ្នកជាថ្មីម្តងទៀត" + +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "កំណត់ពាក្យសម្ងាត់ជាថ្មីម្តងទៀត" + +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "ធ្វើបច្ចុប្បន្នភាពពាក្យសម្ងាត់" + +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" msgstr "" +"គ្រាន់តែបញ្ចូលពាក្យសម្ងាត់ថ្មី ហើយយើងនឹងធ្វើបច្ចុប្បន្នភាពគណនីរបស់អ្នក" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" +#: 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:6 +msgid "Password reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"សូមបញ្ចូលឈ្មោះអ្នកប្រើរបស់អ្នកចូលទៅក្នុងប្រអប់នេះ ហើយយើងនឹងផ្ញើកអ៊ីមែលទៅអ្នក" +" ដោយុមានតំណភ្ជាប់ដើម្បីបញ្ចូលពាក្យសម្ងាត់ជាថ្មី។" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" msgstr "" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" msgstr "" diff --git a/ckan/i18n/ko_KR/LC_MESSAGES/ckan.mo b/ckan/i18n/ko_KR/LC_MESSAGES/ckan.mo index e3db441b652..6bdc580afd5 100644 Binary files a/ckan/i18n/ko_KR/LC_MESSAGES/ckan.mo and b/ckan/i18n/ko_KR/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po b/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po index 14f6e93ba18..c4ff08c1e32 100644 --- a/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po @@ -1,4502 +1,4597 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Yeongtaek Hong , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: ko_KR\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "권한 기능을 찾을 수 없습니다: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "완료" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "관리" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "처리중" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "편집자" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "제출 중" -#: ckan/authz.py:199 -msgid "Member" -msgstr "멤버" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "오류" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "관리를 위해 시스템 관리자 권한이 필요합니다" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "업로드되지 않음" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "사이트 제목" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "리소스를 찾을 수 없음 " -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "스타일" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "이 페이지를 보기 위한 권한 없음" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "사이트 태그 라인" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "데이터스토어에 업로드" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "사이트 태그 로고" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "업로드 에러:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "오류:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "About 페이지 텍스트" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "오류 추적:" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "인트로 텍스트" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "상태" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "홈페이지에 관한 텍스트" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "마지막 업데이트" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "사용자 정의 CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "전혀 없음" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "페이지 헤더에 삽입된 설정을 변경할 수 있는 css" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "업로드 로그" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "홈페이지" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +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를 제거할 수 없음" +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "로그의 끝" -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "수정안 %s의 제거 문제: %s" +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "데이터스토어" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "제거 완료" +#: ckanext/datastore/controller.py:46 +#, python-format +msgid "format: must be one of %s" +msgstr "형식은 다음 중 하나여야 합니다. %s" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "작업이 실행되지 않음." +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "데이터스토어 리소스를 찾을 수 없음" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "이 페이지를 보기 위한 권한 없음" +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "데이터가 유효하지 않습니다 (예를 들어, 수치값이 범위를 벗어나거나 텍스트 필드에 입력되었습니다). " -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "접근이 거부됨" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "리소스 \"{0}\"를 찾을 수 없음." -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "찾을 수 없음" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "사용자 {0}는 리소스 {1}를 업데이트할 수 있는 권한이 없습니다" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "잘못된 요청" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN 데이터 API" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "작업명을 알 수 없음: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "강력한 질의 지원을 하는 웹 API를 통해 리소스 데이터 접근" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON 오류: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

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

" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "잘못된 요청 데이터: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "엔드포인트" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "이 형식의 개체를 목록화할 수 없음: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "데이터 API는 CKAN 액션 API의 다음 액션들을 통해 접근할 수 있습니다." -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "이 형식의 개체를 읽을 수 없음: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "생성하기" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "이 형식의 새로운 개체를 생성할 수 없음: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "업데이트 / 추가" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "패키지를 검색 인덱스에 추가할 수 없음 " +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "질의" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "이 형식의 개체를 업데이트할 수 없음: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "질의 (via SQL)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "검색 인덱스를 업데이트 할 수 없음 " +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "질의하기" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "이 형식의 개체를 삭제할 수 없음: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "질의 예제 (첫 5개 결과)" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "명시된 수정안 없음" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "질의 예제 ('jones'을 포함하는 결과)" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "아이디의 수정안이 없음: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "질의 예제 (via SQL 문)" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "검색어 분실 ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "예: Javascript" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "매개변수를 읽을 수 없음: %r" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "jQuery를 이용한 데이터 API에 간단한 ajax (JSONP) 요청." -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "잘못된 검색 옵션: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "예: Python" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "알 수 없는 레지스터: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "필드 {num}." -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "형식에 맞지 않는 qjson 값: %r" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "라벨" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "요청 매개변수는 디렉토리로 인코딩된 json 형식입니다." - -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "그룹을 찾을 수 없음 " +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "설명" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "기관을 찾을 수 없음" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "저장하기" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "정확하지 않은 그룹 형식" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "데이터 사전" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "조직" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "컬럼" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "그룹" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "타입" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "태그 " +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "로딩중…" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "포맷" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "데이터 API" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "라이선스" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "표" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "대량 업데이트를 위한 권한이 없음" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "반응형 화면" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "그룹을 생성하기 위해 인증되지 않음 " +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "컬럼 보이기" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "사용자 %r이 %s를 편집할 권한 없음 " +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "컬럼 보이기/숨기기" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "무결성 오류" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "페이지당 데이터셋" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "사용자 %r은 %s 권한을 편집할 수 있는 권한이 없습니다. " +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "테스트 conf" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "그룹 %s를 삭제하기 위한 권한 없음 " +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "관련성" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "조직이 삭제되었습니다." +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "그룹이 삭제 되었습니다." +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s가 삭제되었습니다." +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "마지막으로 수정됨" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "그룹 %s의 멤버를 추가하기 위한 권한 없음" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "커스텀 필드 오름차순" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "그룹 %s의 멤버를 삭제하기 위한 권한 없음" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "커스텀 필드 내림차순" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "그룹의 멤버가 삭제 되었습니다." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "인기있는" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -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 "사용자 정의 텍스트" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "CKAN 그룹 수정 이력 " +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "사용자 정의 텍스트" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "CKAN 그룹의 최근 변경내:" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "국가 코드" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "로그 메시지: " +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "커스텀 리소스 텍스트" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "{0}을 팔로잉중입니다." +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "번역되지 않은 문자열입니다" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "이미 {0}을 팔로잉하지 않고 있습니다." +#: 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/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "팔로워 %s를 보기 위한 권한 없음" +#: 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/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "이 사이트는 현재 오프라인입니다. 데이터베이스가 초기화되지 않았습니다. " +#: 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 데이터셋" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -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의 데이터 미리보기 도구는 강력한 기능을 갖고 있습니다." -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "패스워드의 재설정이 필요한 경우, %s는 이메일 주소를 사용합니다." +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "팔로워" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "리소스" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "매개변수 \"{parameter_name}\"는 정수값이 아닙니다." +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "이미지" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "데이터셋을 찾을 수 없음 " +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "이미지 url" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "유효하지 않은 수 형식: %r" +#: 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이 공백일 경우)" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" -"{format} 형식의 {package_type} 데이터셋 보기는 지원하지 않습니다 (템플릿 파일 {file}을 찾을 수 없습니다)." +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "데이터 탐색기" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "패키지 %s를 읽기 위한 권한 없음" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "그래프" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "CKAN 데이터셋 수정 이력" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "지도" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "CKAN 데이터셋의 최근 변경내용: " +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "오류 로딩 뷰" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "패키지를 생성하기 위한 권한 없음" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "뷰를 로드할 수 없음" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "리소스 를 편집하기 위한 권한 없음 " +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "데이터스토어에서 오류를 반환함" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "리소스를 찾을 수 없음 " +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "데이터프록시에서 오류를 반환하였습니다." -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "데이터셋을 갱신하기 위한 권한 없음" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "그리드" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "데이터셋 {id}는 찾을 수 없습니다." +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "필터" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "최소한 1개 이상의 데이터 리소스를 추가해야 함" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "행 오프셋" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "오류" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "예: 0" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "리소스를 생성하기 위한 권한 없음" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "행의 수" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "이 패키지를 위한 리소스를 생성하는데 권한이 없음 " +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "예: 100" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "패키지에 검색 인덱스를 추가할 수 없음" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "그래프 형식" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "검색 인덱스를 업데이트할 수 없음." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "그룹 (축 1)" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "데이터셋이 삭제 되었습니다." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "시리즈 (축 2)" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "패키지 %s의 삭제 권한 없음" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "필드 형식" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "리소스가 삭제 되었습니다." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "위도 필드" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "리소스 %s를 삭제하기 위한 권한 없음 " +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "경도 필드" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "리소스 보기를 찾을 수 없음" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON 필드" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "리소스 데이터를 찾을 수 없음" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Auto zoom to features" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "다운로드를 사용할 수 없음" - -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "데이터셋 %s를 읽기 위한 권한 없음" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "클러스터 제작자" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "리소스 %s를 읽기 위한 권한 없음 " +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "전체 데이터셋 수" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "리소스를 편집하기 위한 권한이 없음" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "날짜" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "보기를 찾을 수 없음" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "전체 데이터셋" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "뷰 형식을 찾을 수 없음" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "주별 데이터셋 개정" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "잘못된 리소스 뷰 데이터" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "모든 데이터셋 수정 이력" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "리소스 뷰가 제공되지 않음" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "새로운 데이터셋" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "미리보기가 정의되지 않았습니다." +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "상위 평점의 데이터셋" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "CKAN 리퍼지토리 수정 이력" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "평균 평점" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "CKAN 리퍼지토리의 최근 변경내용. " +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "평가 수" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "데이터셋이 영향을 받음: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "평가 없음" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "수정안이 업데이트됨" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "가장 많이 편집된 데이터셋" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "기타 " +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "데이터셋" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "태그를 찾을 수 없음" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "편집 횟수" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "사용자를 찾을 수 없음 " +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "편집된 데이터셋이 없음" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "사용자로 등록하기 위한 권한 없음" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "가장 큰 그룹" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "사용자를 생성하기 위한 권한 없음" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "그룹" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "id \"{user_id}\"를 갖는 사용자를 삭제할 권한이 없음." +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "데이터셋의 수" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "명시된 사용자 없음" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "그룹이 없음" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "사용자 %s를 편집하기 위한 권한 없음" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "상위 태그" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "프로파일 업데이트됨" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "태그 이름" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "사용자 %s를 생성하기 위한 권한 없음" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "데이터셋의 수" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "잘못된 Captcha. 다시 시도해주세요." +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "가장 많은 데이터셋을 생성한 사용자" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "사용자 \"%s\" 로 지긂 등록되었지만, 이전에 사용하던 \"%s\" 로 로그인되어 있습니다." +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "사용자" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "사용자를 편집하는 권한 없음." +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "통계 메뉴" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "사용자 %s는 %s를 편집하기 위한 권한 없음" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "전체 데이터셋 개수" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "입력된 비밀번호가 정확하지 않습니다" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "텍스트" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "오래된 비밀번호" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "웹사이트" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "잘못된 비밀번호" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "웹 페이지 url" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "로그인 실패. 잘못된 사용자명 또는 패스워드입니다." +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "예, http://example.com (입력하지 않을 경우 리소스 URL을 사용)" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "비밀번호 초기화를 요청할 권한이 없음." +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "브라우저가 iframes를 지원하지 않습니다." -#: ckan/controllers/user.py:490 +#: ckan/authz.py:182 #, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\"는 몇 명의 사용자와 일치합니다" +msgid "Authorization function not found: %s" +msgstr "권한 기능을 찾을 수 없습니다: %s" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "사용자 없음: %s " +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "관리자" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "재설정 코드를 위해 메일함을 확인하세요. " +#: ckan/authz.py:198 +msgid "Editor" +msgstr "편집자" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "재설정 링크를 보낼 수 없음: %s" +#: ckan/authz.py:202 +msgid "Member" +msgstr "멤버" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "비밀번호 초기화할 권한 없음." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "관리를 위해 시스템 관리자 권한이 필요합니다" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "유효하지 않은 재설정 키. 다시 시도하세요. " +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "사이트 제목" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "패스워드가 재설정되었습니다." +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "스타일" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "패스워드는 반드시 4 글자 또는 이상으로 설정하세요." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "사이트 태그 라인" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "입력한 패스워드가 일치하지 않습니다." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "사이트 태그 로고" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "비밀번호를 입력하여야 합니다." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:636 -msgid "Follow item not found" -msgstr "Follow 항목을 찾을 수 없음" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "소개 페이지 텍스트" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0}를 찾을 수 없음 " +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "인트로 텍스트" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "모든 것" - -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "누락된 값" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "홈페이지에 관한 텍스트" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "외부 사이트에 리디렉션하는 것이 허용되지 않습니다." +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "사용자 정의 CSS" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor}가 데이터셋 {dataset}에 태그 {tag}를 추가함" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "페이지 헤더에 삽입된 설정을 변경할 수 있는 css" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor}가 그룹 {group}을 갱신함" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "홈페이지" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor}가 조직 {organization}를 갱신함" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "관련된 개정 %s이 삭제되지 않은 패키지 %s를 포함하여 패키지 %s를 제거할 수 없음" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor}가 데이터셋 {dataset}을 업데이트함" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "수정안 %s의 제거 문제: %s" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor}가 데이터셋 {dataset}의 추가 {extra}를 변경함" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "제거 완료" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor}가 데이터셋 {dataset}의 리소스 {resource}를 갱신함" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "작업이 실행되지 않음." -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor}가 프로파일을 업데이트함" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "접근이 거부됨" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor}가 그룹 {group}를 삭제함" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "찾을 수 없음" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor}가 조직 {organization}을 삭제함" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "잘못된 요청" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor}가 데이터셋 {dataset}를 삭제함" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "작업명을 알 수 없음: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor}가 데이터셋 {dataset}에서 추가 {extra}를 삭제함" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON 오류: %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor}가 데이터셋 {dataset}에서 리소스 {resource}을 삭제함" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "잘못된 요청 데이터: %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor}가 그룹 {group}을 생성함" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "이 형식의 개체를 목록화할 수 없음: %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor}가 조직 {organization}을 생성함" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "이 형식의 개체를 읽을 수 없음: %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor}가 데이터셋{dataset}을 생성함" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "이 형식의 새로운 개체를 생성할 수 없음: %s %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor}가 데이터셋{dataset}에 추가 {extra}를 추가함" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "패키지를 검색 인덱스에 추가할 수 없음 " -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor}가 데이터셋 {dataset}에 리소스 {resource}를 추가함" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "이 형식의 개체를 업데이트할 수 없음: %s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor}가 등록함" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "검색 인덱스를 업데이트 할 수 없음 " -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor}가 데이터셋 {dataset}에서 태그 {tag}를 제거함" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "이 형식의 개체를 삭제할 수 없음: %s %s" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor}가 {dataset}를 팔로잉함" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "명시된 수정안 없음" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor}가 {user}를 팔로잉함" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "아이디의 수정안이 없음: %s" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor}가 {group}를 팔로잉함" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "검색어를 찾을 수 없습니다 ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "보기" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "매개변수를 읽을 수 없음: %r" -#: ckan/lib/email_notifications.py:103 -msgid "{n} new activity from {site_title}" -msgid_plural "{n} new activities from {site_title}" -msgstr[0] "" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "잘못된 검색 옵션: %s" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "1월" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "알 수 없는 레지스터: %s" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "2월" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "형식에 맞지 않는 qjson 값: %r" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "3월" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "요청 매개변수는 json으로 인코딩된 dictionary 형식이어야 합니다." + +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "그룹을 찾을 수 없음" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "4월" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "기관을 찾을 수 없음" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "5월" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "정확하지 않은 그룹 형식" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "6월" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "조직" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "7월" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "그룹" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "8월" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "태그" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "9월" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "포맷" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "10월" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "라이선스" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "11월" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "사용자 %r이 %s를 편집할 권한 없음 " -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "12월" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "대량 업데이트를 위한 권한이 없음" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "바로 지금" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "그룹을 생성할 생성할 권한이 없음" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} 분 이전" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "무결성 오류" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} 시간 이전" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "사용자 %r은 %s 권한을 편집할 수 있는 권한이 없습니다. " -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} 일 이전" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "그룹 %s를 삭제하기 위한 권한 없음 " -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} 개월 전" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "조직이 삭제 되었습니다." -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "{years} 년전" - -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "그룹이 삭제 되었습니다." -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s가 삭제되었습니다." -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} 바이트" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "사용자 %r 에게 %s 그룹 멤버를 수정할 권한 없음 " -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "그룹 %s의 멤버를 추가하기 위한 권한 없음" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "그룹 %s의 멤버를 삭제하기 위한 권한 없음" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "그룹의 멤버가 삭제 되었습니다." -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "비교를 위해 두 개의 수정안을 선택하세요." -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "CKAN 그룹 수정 이력 " -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "CKAN 그룹의 최근 변경:" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "로그 메시지: " -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "{0}을 팔로잉 중입니다" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "이제 더 이상 {0}을 팔로잉 하지 않습니다" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "팔로워 %s를 보기 위한 권한 없음" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "이 사이트는 현재 오프라인입니다. 데이터베이스가 초기화되지 않았습니다. " -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "프로파일을 편집하고 이메일 주소를 추가하세요. " -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "패스워드의 재설정이 필요한 경우, %s는 이메일 주소를 사용합니다." -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "gravatar.com에 아바타를 업데이트해 주세요" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "검색 질의어가 잘못되었습니다: {error_message}" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "알 수 없음" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "매개변수 \"{parameter_name}\"는 정수값이 아닙니다." -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "이름이 없는 리소스" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "데이터셋을 찾을 수 없음 " -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "새로운 데이터셋이 생성됨" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "유효하지 않은 수정본 형식: %r" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "리소스가 편집됨" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "\"{package_type}\" 형식의 데이터셋은 ({file_!r})로 조회할 수 없습니다." -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "설정이 편집됨" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "패키지 %s를 읽기 위한 권한 없음" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} 뷰" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "CKAN 데이터셋 수정 이력" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} 최근 뷰" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "CKAN 데이터셋의 최근 변경:" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "패키지를 생성하기 위한 권한 없음" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "사용가능한 수신자의 이메일 주소가 없음!" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "리소스 를 편집하기 위한 권한 없음 " -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "기관" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "데이터셋을 갱신하기 위한 권한 없음" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "그룹" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "{id} 데이터셋을 찾을 수 없습니다." -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "누락된 값" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "최소한 1개 이상의 데이터 리소스를 추가해야 합니다" -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "입력 필드 %(name)s은 예상되지 않았습니다." +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "리소스를 생성하기 위한 권한 없음" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "정수값을 입력하세요" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "이 패키지를 위한 리소스를 생성하는데 권한이 없음 " -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "리소스" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "패키지에 검색 인덱스를 추가할 수 없음." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "패키지 리소스가 유효하지 않음" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "검색 인덱스를 업데이트할 수 없음." -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "여분의 것" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "데이터셋이 삭제 되었습니다." -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "태그 어휘 \"%s\" 가 존재하지 않습니다 " +msgid "Unauthorized to delete package %s" +msgstr "패키지 %s의 삭제 권한 없음" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "사용자" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "리소스가 삭제 되었습니다." -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "데이터셋" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "리소스 %s를 삭제하기 위한 권한 없음 " -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "그룹" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "리소스 보기를 찾을 수 없음" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "유효한 JSON으로 파싱할 수 없음" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "리소스 데이터를 찾을 수 없음" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "다운로드를 사용할 수 없음" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "조직이 존재하지 않습니다." +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "데이터셋 %s를 읽기 위한 권한 없음" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "이 조직에 데이터셋을 추가할 수 없습니다." +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "리소스 %s를 읽기 위한 권한 없음 " -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "유효하지 않은 정수값" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "리소스를 편집하기 위한 권한이 없음" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "자연수만 허용" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "뷰를 찾을 수 없음" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "양수만 허용" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "뷰 형식을 찾을 수 없음" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "데이터 형식이 맞지 않음" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "잘못된 리소스 뷰 데이터" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "로그 메시지에 허용된 링크가 없음" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "리소스 뷰가 제공되지 않음" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "데이터셋이 이미 존재합니다" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "미리보기가 정의되지 않았습니다." -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "리소스" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "CKAN 리퍼지토리 수정 이력" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "해당 그룹명 또는 ID가 존재하지 않습니다." +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "CKAN 리퍼지토리의 최근 변경내용." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Activity 형식" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "데이터셋이 영향을 받음: %s.\n" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "이름은 문자열입니다" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "수정안이 업데이트됨" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "해당 이름은 사용할 수 없습니다" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "기타 " -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "적어도 %s 문자 길이입니다" - -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "이름은 최대 %i 글자입니다" - -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "완전한 소문자 알파벳 (ascii) 문자와 기호입니다: -_" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "태그를 찾을 수 없음" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "해당 URL은 이미 사용되고 있습니다." +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "사용자로 등록하기 위한 권한 없음" -#: ckan/logic/validators.py:365 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "이름 \"%s\" 길이는 최소 %s 이하입니다. " +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "사용자를 생성하기 위한 권한 없음" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "이름 \"%s\" 길이는 최대 %s 이상입니다" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "id \"{user_id}\"를 갖는 사용자를 삭제할 권한이 없음." -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "버전은 최대 %i 글자 이상입니다" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "명시된 사용자 없음" -#: ckan/logic/validators.py:393 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Duplicate key \"%s\"" -msgstr "중복 키 \"%s\"" +msgid "Unauthorized to edit user %s" +msgstr "사용자 %s를 편집하기 위한 권한 없음" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "그룹 이름이 이미 데이터베이스에 있습니다" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "사용자를 찾을 수 없음 " -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "태그 \"%s\" 길이는 최소 %s보다 작아야 합니다. " +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "프로파일 업데이트됨" -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:245 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "태그 \"%s\" 길이는 최대 %i 입니다 " +msgid "Unauthorized to create user %s" +msgstr "사용자 %s를 생성하기 위한 권한 없음" -#: ckan/logic/validators.py:427 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "태그 \"%s\"는 알파벳 글자 또는 -_ 기호를 사용해야 합니다." +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "잘못된 Captcha. 다시 시도해주세요." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:265 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "태그 \"%s\"는 대문자를 허용하지 않습니다 " +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "사용자 \"%s\" 로 지금 등록되었지만, 이전에 사용하던 \"%s\" 로 로그인되어 있습니다." -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "사용자 이름은 반드시 문자열이어야 합니다" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "사용자를 편집하기 위한 권한 없음." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "해당 로그인명은 이용할 수 없습니다." +#: ckan/controllers/user.py:320 +#, python-format +msgid "User %s not authorized to edit %s" +msgstr "사용자 %s는 %s를 편집하기 위한 권한 없음" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "양쪽에 비밀번호를 입력하세요 " +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "입력한 비밀번호가 정확하지 않습니다" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "비밀번호는 반드시 문자열이어야 합니다" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "이전 비밀번호" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "비밀번호는 4 글자 또는 그 이상입니다 " +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "잘못된 비밀번호" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "입력된 비밀번가 일치하지 않습니다" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "로그인 실패. 잘못된 사용자명 또는 패스워드입니다." -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "스팸으로 보일 경우 편집이 허용되지 않습니다. 설명에 링크를 추가하는 것을 피하세요 " +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "비밀번호 초기화를 요청할 권한이 없음." -#: ckan/logic/validators.py:619 +#: ckan/controllers/user.py:490 #, python-format -msgid "Name must be at least %s characters long" -msgstr "이름은 적어도 %s 글자 이상입니다" - -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "해당 어휘명은 이미 사용되고 있습니다." +msgid "\"%s\" matched several users" +msgstr "\"%s\"는 몇 명의 사용자와 일치합니다" -#: ckan/logic/validators.py:633 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "%s에서 %s로 키값을 변경할 수 없습니다. 이 키는 읽기 전용입니다 " +msgid "No such user: %s" +msgstr "사용자 없음: %s " -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "태그 어휘를 찾을 수 없습니다." +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "메일함에서 재설정 코드를 확인하세요." -#: ckan/logic/validators.py:655 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "태그 %s는 어휘 %s에서 속하지 않았습니다" - -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "태그 이름이 없음" +msgid "Could not send reset link: %s" +msgstr "재설정 링크를 보낼 수 없음: %s" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "태그 %s는 이미 어휘 %s에 속해 있습니다 " +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "비밀번호 초기화할 권한 없음." -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "유효한 URL을 제공해 주세요" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "유효하지 않은 재설정 키. 다시 시도하세요." -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "역할이 존재하지 않습니다." +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "패스워드가 재설정되었습니다." -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "기관이 없는 데이터셋은 비밀로 할 수 없습니다." +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "비밀번호는 4자 이상 이어야 합니다." -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "리스트가 아님" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "입력한 패스워드가 일치하지 않습니다." -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "문자열이 아님" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "비밀번호를 입력하여야 합니다" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "이 부모 노드는 계층구조에서 루프를 생성합니다" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Follow 항목을 찾을 수 없음" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\"과 \"filter_values\"는 반드시 같은 길이여야 합니다" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0}를 찾을 수 없음 " -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\"는 \"filter_values\"이 채워졌을 때 필요합니다" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "모든 것" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\"는 \"filter_fields\"이 채워졌을 때 필요합니다" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "누락된 값" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "같은 이름을 갖는 스키마 필드가 있습니다" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "외부 사이트로 리디렉션하는 것은 허용되지 않습니다." -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: 오브젝트 %s 생성" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}에 태그 {tag}를 추가함" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: 패키지 관계성 생성: %s %s %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor}가 그룹 {group}을 갱신함" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: 멤버 오브젝트 %s 생성" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor}가 조직 {organization}를 갱신함" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "그룹으로써의 조직 생성 시도하기" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}을 업데이트함" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "패키지 id 또는 이름 (매개변수 \"package\")를 제공해야 합니다." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}의 추가 {extra}를 변경함" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "등급 (매개변수 \"rating\")을 제공해야 합니다. " +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}의 리소스 {resource}를 갱신함" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "등급은 정수값입니다." +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor}가 프로파일을 업데이트함" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "등급은 %i와 %i 사이 값입니다." +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor}가 그룹 {group}를 삭제함" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor}가 조직 {organization}을 삭제함" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "사용자를 팔로우하기 위해 로그인해야 합니다." +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}를 삭제함" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "당신 스스로 팔로우(follow)할 수 없습니다" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}에서 추가 {extra}를 삭제함" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "이미 {0}를 팔로잉하고 있습니다" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}에서 리소스 {resource}을 삭제함" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "데이터셋을 팔로우하기 위해 반드시 로그인해야 합니다" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor}가 그룹 {group}을 생성함" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "사용자 {username}는 존재하지 않습니다." +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor}가 조직 {organization}을 생성함" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "그룹을 팔로우하기 위해 로그인해야 합니다" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor}가 데이터셋{dataset}을 생성함" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor}가 데이터셋{dataset}에 추가 {extra}를 추가함" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: 패키지 삭제: %s" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}에 리소스 {resource}를 추가함" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: %s 삭제" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor}가 등록함" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: 멤버 삭제: %s" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}에서 태그 {tag}를 제거함" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "데이터에 없는 id" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor}가 {dataset}를 팔로잉함" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "어휘 \"%s\"를 찾을 수 없음" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor}가 {user}를 팔로잉함" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "태그 \"%s\"를 찾을 수 없음" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor}가 {group}를 팔로잉함" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "언팔로우하기 위해 로그인해야 합니다." +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "보기" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "{0}을 팔로잉하지 않고 있습니다." +#: 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/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "리소스를 찾을 수 없음." +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "1월" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "\"query\" 매개변수를 사용하는 경우 구체화하지 않음" +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "2월" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr ": 쌍이어야 함" +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "3월" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "필드 \"{field}\"가 resource_search에서 인식되지 않음." +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "4월" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "패키지를 찾을 수 없음" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "5월" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: 오브젝트 %s를 업데이트함" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "6월" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: 패키지 관계를 업데이트함: %s %s %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "7월" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus를 찾을 수 없음." +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "8월" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "조직이 존재하지 않습니다." +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "9월" -#: 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/lib/formatters.py:55 +msgid "October" +msgstr "10월" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "사용자 %s는 이 그룹을 편집하기 위한 권한 없음" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "11월" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "사용자 %s는 이 기관에 데이터셋을 추가하기 위한 권한이 없습니다" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "12월" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "데이터셋이 제공되지 않아, 인증 확인을 할 수 없습니다." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "바로 지금" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "이 리소스를 위한 패키지가 없으며, 인증을 확인할 수 없음" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} 분 전" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "사용자 %s는 데이터셋 %s에 리소스를 생성할 수 있는 권한이 없습니다" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} 시간 전" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "사용자 %s는 이 패키지를 편집하기 위한 권한 없음" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} 일 전" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "사용자 %s는 그룹을 편집하기 위한 권한 없음" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} 개월 전" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "사용자 %s는 기관을 생성하는 권한이 없습니다. " +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "{years} 년전" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" -msgstr "사용자 {user}는 API를 통해 사용자를 생성할 수 있는 권한이 없습니다" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "사용자를 생성할 수 있는 권한 없음" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "그룹을 찾을 수 없음." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} 바이트" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "패키지를 생성하기 위해 유효한 API 키가 필요함" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "그룹을 생성하기 위해 유효한 API 키가 필요함" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "사용자 %s는 멤버를 추가하기 위한 권한이 없음" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "사용자 %s는 그룹 %s를 편집하기 위한 권한 없음" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "사용자 %s는 리소스 %s를 삭제하기 위한 권한 없음" +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "리소스 뷰를 찾을 수 없어 인을 확인할 수 없습니다" +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "사용자 %s는 관계 %s를 삭제하기 위한 권한 없음" +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "사용자 %s는 그룹을 삭제하기 위한 권한 없음" +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "사용자 %s는 그룹 %s를 삭제하기 위한 권한 없음" +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "사용자 %s는 그룹을 삭제하기 위한 권한 없음" +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "사용자 %s는 조직 %s를 삭제하기 위한 권한 없음" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "사용자 %s는 task_status를 삭제하기 위한 권한 없음" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "권한이 없는" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "사용자 %s는 이 패키지를 읽기 위한 권한 없음" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "gravatar.com에서 아바타 업데이트 하기" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "사용자 %s는 패키지 %s를 읽기 위한 권한 없음" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "알 수 없음" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "사용자 %s는 리소스 %s를 읽기 위한 권한 없음" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "이름 없는 리소스" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "사용자 %s는 그룹 %s를 읽을 수 있는 권한이 없습니다" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "새로운 데이터셋이 생성됨." -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "대시보드에 접근하기 위해 로그인해야 합니다" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "리소스가 편집됨." -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "사용자 %s는 패키지 %s를 편집하기 위한 권한 없음" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "설정이 편집됨." -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "사용자 %s는 리소스 %s를 편집하기 위한 권한 없음" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} 뷰" -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "사용자 %s는 패키지 %s의 상태를 변경하기 위한 권한 없음" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} 최근 뷰" -#: ckan/logic/auth/update.py:128 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "사용자 %s는 조직 %s를 편집하기 위한 권한 없음" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "사용자 %s는 그룹 %s의 상태를 변경하기 위한 권한 없음" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "사용 가능한 수신자 이메일이 없습니다!" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "사용자 %s는 그룹 %s의 허가를 편집하기 위한 권한 없음" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "기관" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "사용자 편집을 위해 반드시 로그인 해야 합니다" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "그룹" + +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "누락된 값" -#: ckan/logic/auth/update.py:197 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to edit user %s" -msgstr "사용자 %s는 사용자 %s를 편집하기 위한 권한 없음" +msgid "The input field %(name)s was not expected." +msgstr "입력 필드 %(name)s은 예상되지 않았습니다." -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "사용자 {0}는 사용자 {1}을 업데이트하는 권한이 없습니다" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "정수값을 입력하세요" -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "사용자 %s는 개정 상태를 변경하기 위한 권한 없음" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "유니코드 문자열 값이어야 함" -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "사용자 %s는 task_status 테이블을 업데이트하기 위한 권한 없음" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "패키지 리소스가 유효하지 않음" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "사용자 %s는 term_translation 테이블을 업데이트하기 위한 권한 없음" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "여분의 것" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "유효한 API가 패키지를 편집하기 위해 필요함" +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "태그 어휘 \"%s\" 가 존재하지 않습니다 " -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "유효한 API 키가 그룹을 편집하기 위해 필요함 " +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "유효한 JSON으로 파싱할 수 없음" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "라이선스가 구체화되지 않음" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "조직은 입력하셔야 해요." -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "조직이 존재하지 않습니다" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "이 조직에 데이터셋을 추가할 수 없습니다." -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "유효하지 않은 정수값" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "자연수만 허용" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "양수만 허용" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "데이터 형식이 맞지 않음" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "로그 메시지에 허용된 링크가 없음" -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "기타 (Open)" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "데이터셋 id가 이미 존재합니다" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "기타 (Public Domain)" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "리소스" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "기타 (Attribution)" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "해당 그룹명 또는 ID가 존재하지 않습니다." -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Activity 형식" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "이름은 문자열 이어야 합니다" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "기타 (Non-Commercial)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "해당 이름은 사용할 수 없습니다" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "기타 (Not Open)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "적어도 %s 문자 길이입니다" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "depends on %s" -msgstr "%s에 의존적" +msgid "Name must be a maximum of %i characters long" +msgstr "이름은 최대 %i 글자입니다" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "완전한 소문자 알파벳 (ascii) 문자와 기호입니다: -_" + +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "해당 URL은 이미 사용되고 있습니다." + +#: ckan/logic/validators.py:366 #, python-format -msgid "is a dependency of %s" -msgstr "%s와 존성이 있다" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "이름 \"%s\" 길이는 최소 %s 이하입니다. " -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:370 #, python-format -msgid "derives from %s" -msgstr "%s로 부터 나온" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "이름 \"%s\" 길이는 최대 %s 이상입니다" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "has derivation %s" -msgstr "변형 %s가 있다" +msgid "Version must be a maximum of %i characters long" +msgstr "버전은 최대 %i 글자 이상입니다" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:394 #, python-format -msgid "links to %s" -msgstr "%s에 연결되어 있다" +msgid "Duplicate key \"%s\"" +msgstr "중복 키 \"%s\"" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "그룹 이름이 이미 데이터베이스에 있습니다" + +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "%s로부터 연결된다" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "태그 \"%s\" 길이가 최소 길이 %s보다 작습니다" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "%s의 자식이다" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "태그 \"%s\" 길이가 최대 길이 %i 보다 깁니다" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "%s의 부모이다" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "태그 \"%s\"는 알파벳 글자 또는 -_ 기호를 사용해야 합니다." -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "형제 %s를 갖는다 " +msgid "Tag \"%s\" must not be uppercase" +msgstr "태그 \"%s\"는 대문자를 허용하지 않습니다" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "로딩중…" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "사용자 이름은 반드시 문자열이어야 합니다" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "이 리소스를 적재할 API 데이터가 없음" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "해당 로그인명은 이용할 수 없습니다." -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "데이터 API 정보를 읽어오는데 실패했습니다" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "양쪽에 비밀번호를 입력하세요" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "일치하는 것을 찾을 수 없음" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "비밀번호는 반드시 문자열이어야 합니다" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "타이핑 시작..." +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "비밀번호는 4자 이상 이어야 합니다" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "입력값이 적습니다. 하나 이상의 character를 입력하세요." +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "입력된 비밀번호가 일치하지 않습니다" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "이 양식에 저장되지 않은 변경사항이 있습니다." +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "스팸으로 보일 경우 편집이 허용되지 않습니다. 설명에 링크를 추가하는 것을 피하세요 " -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "작업을 승인해 주세요" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "이름은 적어도 %s 글자 이상입니다" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "이 작업의 수행을 원합니까?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "해당 어휘명은 이미 사용되고 있습니다." -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "승인" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "%s에서 %s로 키값을 변경할 수 없습니다. 이 키는 읽기 전용입니다 " -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "취소" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "태그 어휘를 찾을 수 없습니다." -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Follow" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "태그 %s는 어휘 %s에서 속하지 않았습니다" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Unfollow" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "태그 이름이 없음" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "업로드" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "태그 %s는 이미 어휘 %s에 속해 있습니다 " -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "링크" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "유효한 URL을 제공해 주세요" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "제거" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "역할이 존재하지 않습니다." -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "이미지" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "기관이 없는 데이터셋은 비밀로 할 수 없습니다." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "리스트가 아님" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "파일" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "문자열이 아님" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "컴퓨터에 있는 파일을 업로드하기" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "이 부모 노드는 계층구조에서 루프를 생성합니다" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "인터넷에 있는 URL 연결 (API 연결도 가능)" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\"과 \"filter_values\"는 반드시 같은 길이여야 합니다" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "리소스 재정리" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\"는 \"filter_values\"이 채워졌을 때 필요합니다" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "순서 저장" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\"는 \"filter_fields\"이 채워졌을 때 필요합니다" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "저장 중" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "같은 이름을 갖는 스키마 필드가 있습니다" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "파일 업로드하기" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "이메일 {email} 은 형식이 유효하지 않네요" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "오류 발생" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: 오브젝트 %s 생성" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "리소스가 업로드 되었음" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: 패키지 관계성 생성: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "파일 업로드 불가" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: 멤버 오브젝트 %s 생성" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "업로드를 인증할 수 없습니다" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "그룹으로써의 조직 생성 시도하기" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "파일을 업로드하기 위한 데이터를 가져올 수 없음" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "패키지 id 또는 이름 (매개변수 \"package\")를 제공해야 합니다." -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "파일을 업로드중입니다. 탐색을 위해 업로드를 중지하겠습니까?" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "등급 (매개변수 \"rating\")을 제공해야 합니다. " -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "리소스 뷰 재정리" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "등급은 정수값입니다." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "편집" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "등급은 %i와 %i 사이 값입니다." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "더 보기" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "초대 메일 발송 중 에러가 생겨서, {0} 사용자는 생성되지 않았어요" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "숨기기" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "사용자를 팔로우하기 위해 로그인해야 합니다." -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "오류 %(error_code)s" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "당신 스스로 팔로우(follow)할 수 없습니다" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "About {0}" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "이미 {0}를 팔로잉하고 있습니다" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "데이터셋을 팔로우하기 위해 반드시 로그인해야 합니다" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "사용자 {username}는 존재하지 않습니다." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "그룹을 팔로우하기 위해 로그인해야 합니다" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "시스템 관리자 설정" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "사용자 삭제하기: {0}" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "프로파일 보기" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: 패키지 삭제: %s" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "대시보드 (%(num)d 새 항목)" +msgid "REST API: Delete %s" +msgstr "REST API: %s 삭제" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "대시보드" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: 멤버 삭제: %s" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "설정 편집" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "데이터에 없는 id" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "설정" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "어휘 \"%s\"를 찾을 수 없음" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "로그아웃" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "태그 \"%s\"를 찾을 수 없음" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "로그인" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "언팔로우하기 위해 로그인해야 합니다." -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "등록" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "{0}을 팔로잉하지 않고 있습니다." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "데이터셋" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "리소스를 찾을 수 없음." -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "데이터셋 검색" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "\"query\" 매개변수를 사용하는 경우 구체화하지 않음" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "검색" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr ": 쌍이어야 함" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "컨텐트 생략" - -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "적게 적재" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "필드 \"{field}\"가 resource_search에서 인식되지 않음." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "많이 적재" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "패키지를 찾을 수 없음" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "이 활동 흐름 내에 활동이 없음" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: 오브젝트 %s를 업데이트함" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "관리" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: 패키지 관계를 업데이트함: %s %s %s" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "시스템 관리자" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus를 찾을 수 없음." -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "구성" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "조직이 존재하지 않습니다." -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -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/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "구성을 리셋하기 원합니까?" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "사용자 %s는 이 그룹을 편집하기 위한 권한 없음" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "리셋" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "사용자 %s는 이 기관에 데이터셋을 추가하기 위한 권한이 없습니다" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "설정 업데이트" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "데이터셋이 제공되지 않아, 인증 확인을 할 수 없습니다." -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN 구성 옵션" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "이 리소스를 위한 패키지가 없으며, 인증을 확인할 수 없음" -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:76 #, 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:홈페이지에 보여줄 모듈의 미리 정의된 레이아웃을 " -"선택합니다.

" +msgid "User %s not authorized to create resources on dataset %s" +msgstr "사용자 %s는 데이터셋 %s에 리소스를 생성할 수 있는 권한이 없습니다" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "리셋 승인" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "사용자 %s는 이 패키지를 편집하기 위한 권한 없음" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "CKAN 관리" +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "사용자 %s는 그룹을 편집하기 위한 권한 없음" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:129 #, 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을 참조하세

" +msgid "User %s not authorized to create organizations" +msgstr "사용자 %s는 기관을 생성하는 권한이 없습니다. " -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "제거" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "사용자 {user}는 API를 통해 사용자를 생성할 수 있는 권한이 없습니다" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "

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

" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "사용자를 생성할 수 있는 권한 없음" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN 데이 API" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "그룹을 찾을 수 없음." -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "강력한 질의 지원을 하는 웹 API를 통해 리소스 데이터 접근" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "패키지를 생성하기 위해 유효한 API 키가 필요함" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

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

" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "그룹을 생성하기 위해 유효한 API 키가 필요함" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "엔드포인트" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "사용자 %s는 멤버를 추가하기 위한 권한이 없음" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "데이터 API는 CKAN 액션 API의 다음 액션들을 통해 접근할 수 있습니다." +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "사용자 %s는 그룹 %s를 편집하기 위한 권한 없음" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "생성하기" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "사용자 %s는 리소스 %s를 삭제하기 위한 권한 없음" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "업데이트 / 추가" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "리소스 뷰를 찾을 수 없어 인을 확인할 수 없습니다" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "질" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "사용자 %s는 관계 %s를 삭제하기 위한 권한 없음" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "질의 (via SQL)" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "사용자 %s는 그룹을 삭제하기 위한 권한 없음" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "질의하기" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "사용자 %s는 그룹 %s를 삭제하기 위한 권한 없음" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "질의 예제 (5개 결과)" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "사용자 %s는 그룹을 삭제하기 위한 권한 없음" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "질의 예제 ('jones'을 포함하는 결)" +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "사용자 %s는 조직 %s를 삭제하기 위한 권한 없음" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "질의 예제 (via SQL 문)" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "사용자 %s는 task_status를 삭제하기 위한 권한 없음" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "예: Javascript" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "권한이 없는" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "jQuery를 이용한 데이터 API에 간단한 ajax (JSONP) 요청." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "사용자 %s는 이 패키지를 읽기 위한 권한 없음" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "예: Python" +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "사용자 %s는 패키지 %s를 읽기 위한 권한 없음" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "리소스는 지금 미리보기가 불가능합니다." +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "사용자 %s는 리소스 %s를 읽기 위한 권한 없음" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "추가 정보를 위해 여기를 클릭하세요." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "사용자 %s는 그룹 %s를 읽을 수 있는 권한이 없습니다" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "리소스 다운로드" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "대시보드에 접근하기 위해 로그인해야 합니다" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "브라우저가 iframes를 지원하지 않습니다." +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "사용자 %s는 패키지 %s를 편집하기 위한 권한 없음" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "프리뷰를 지원하지 않음" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "사용자 %s는 리소스 %s를 편집하기 위한 권한 없음" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "더욱 상세한..." +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "사용자 %s는 패키지 %s의 상태를 변경하기 위한 권한 없음" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:128 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "데이터 형식을 정의한 핸들러가 없습니다: %(type)s." +msgid "User %s not authorized to edit organization %s" +msgstr "사용자 %s는 조직 %s를 편집하기 위한 권한 없음" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "표준" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "사용자 %s는 그룹 %s의 상태를 변경하기 위한 권한 없음" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "표준 입력" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "사용자 %s는 그룹 %s의 허가를 편집하기 위한 권한 없음" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "중간" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "사용자 편집을 위해 반드시 로그인 해야 합니다" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "중간 너비 입력" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "사용자 %s는 사용자 %s를 편집하기 위한 권한 없음" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "전체" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "사용자 {0}는 사용자 {1}을 업데이트하는 권한이 없습니다" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "전체 너비 입력" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "사용자 %s는 개정 상태를 변경하기 위한 권한 없음" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "대량" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "사용자 %s는 task_status 테이블을 업데이트하기 위한 권한 없음" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "대량 입력" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "사용자 %s는 term_translation 테이블을 업데이트하기 위한 권한 없음" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "첨가" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "유효한 API가 패키지를 편집하기 위해 필요함" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "입력 추가하기" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "유효한 API 키가 그룹을 편집하기 위해 필요함 " -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "사용자 정의 필드(공백)" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "라이선스가 구체화되지 않음" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "사용자 정의 필드" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Textarea" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Select" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "활동 흐름" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: 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/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "그룹 추가하기" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "그룹 폼" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "기타 (Open)" -#: 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/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "기타 (Public Domain)" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "이 그룹의 삭제를 원합니까 - {name}?" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "기타 (Attribution)" -#: 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/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "관리하기" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "그룹 편집" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "기타 (Non-Commercial)" -#: 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/model/license.py:357 +msgid "Other (Not Open)" +msgstr "기타 (Not Open)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Followers" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "%s에 의존적" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "이력" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "%s와 존성이 있다" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "그룹 추가" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "%s로 부터 나온" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "그룹 검색" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "변형 %s가 있다" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "이름 오름차순" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "%s에 연결되어 있다" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "이름 내림차순" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "%s로부터 연결된다" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "현재 이 사이트에 그룹이 없습니다." +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "%s의 자식이다" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "하나를 생성하겠습니까?" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "%s의 부모이다" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "모든 구성원으로 돌아가기" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "형제 %s를 갖는다 " -#: 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/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "이 리소스를 적재할 API 데이터가 없음" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "멤버 추가" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "데이터 API 정보를 읽어오는데 실패했습니다" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "기존 사용자" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "타이핑 시작..." -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "기존 사용자를 추가할 경우, 아래에서 사용자명을 검색하세요." +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "일치하는 것을 찾을 수 없음" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "또는" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "신규 사용자" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "이 양식에 저장되지 않은 변경사항이 있습니다." -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "신규 사용자를 초대하려면, 이메일 주소를 입력하세요." +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "작업을 승인해 주세요" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "역할" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "이 작업의 수행을 원합니까?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "이 멤버의 삭제를 원합니까?" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "승인" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "삭제" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:61 -msgid "Save" -msgstr "저장하기" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Unfollow" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "역할이란?" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Follow" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

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

" -"

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

" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +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/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "인터넷에 있는 URL 연결 (API 연결도 가능)" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "그룹 갱신" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "업로드" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "그룹 생성" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "제거" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "관련성" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "컴퓨터에 있는 파일을 업로드하기" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "마지막으로 수정됨:" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "인기있는" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "파일" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "데이터셋 검색" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "순서 저장" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "그룹의 데이터셋: {group}" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "저장 중" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "최근 수정 이력" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "파일 업로드하기" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "이름" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "오류 발생" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "내 그룹" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "파일 업로드 불가" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "내 그룹" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "업로드를 인증할 수 없습니다" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "설명" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "리소스가 업로드 되었음" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "내 그룹에 대한 일부 정보..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "파일을 업로드하기 위한 데이터를 가져올 수 없음" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "이 그룹의 삭제를 원합니까?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "파일을 업로드중입니다. 탐색을 위해 업로드를 중지하겠습니까?" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "그룹 저장" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "필터 추가" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} 데이터셋" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "필드 선택하기" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 데이터셋" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "편집" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "뷰 {name}" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "더 보기" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "이 그룹에서 데이터셋 제거" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "숨기기" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "그룹이란?" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "오류 %(error_code)s" -#: ckan/templates/group/snippets/helper.html:8 +#: 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 "" -" 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. " +"Powered by CKAN" msgstr "" -"데이터셋의 집합을 생성하고 관리하기 위해 CKAN 그룹을 사용할 수 있습니다. 그룹은 특정한 프로젝트 또는 팀을 위한 카탈로그 데이터셋일" -" 수 있고, 또는 특정한 주제입니다. 그룹을 통해 다른 사용자들은 출판된 데이터셋을 찾거나 검색할 수 있습니다. " +"Powered by CKAN" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "비교하기" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "시스템 관리자 설정" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "삭제됨" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "프로파일 보기" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "더 읽기" +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "대시보드 (%(num)d 새 항목)" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "수정" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "대시보드" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "타임스탬프" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "설정 편집" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "저자" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "설정" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "로그 메시지" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "로그아웃" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "환영합니다" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +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/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "등록" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "CKAN에 오신 것을 환영합니다" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "데이터셋" -#: ckan/templates/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/header.html:116 +msgid "Search Datasets" +msgstr "데이터셋 검색" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "주요 섹션입니다" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "검색" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "예. 환경" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "컨텐트 생략" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "데이터 검색" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "적게 적재" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "인기있는 태그" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "많이 적재" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} 통계" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "이 활동 흐름 내에 활동이 없음" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "데이터셋" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "관리" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "데이터셋을" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "시스템 관리자" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "기관" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "구성" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "그룹" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "쓰레기통" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "구성을 리셋하기 원합니까?" + +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "리셋" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "설정 업데이트" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN 구성 옵션" + +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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 "" -"Markdown formatting을 사용할 수 있습니다" +"

사이트명: 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/macros/form.html:265 -msgid "This field is required" -msgstr "이 필드는 필수입니다" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "리셋 승인" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "사용자 정의" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "CKAN 관리" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -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 "" +"

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

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

" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "필수 필드" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "제거" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "

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

" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "이미지 URL" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "리소스는 지금 미리보기가 불가능합니다." -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "업로드 취소하기" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "추가 정보를 위해 여기를 클릭하세요." -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "조직 폼" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "리소스 다운로드" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -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/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "데이터셋 추가하기" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "첨가" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "\"{query}\"로 찾음" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "입력 추가하기" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "\"{query}\"로 데이터셋을 찾지 못했습니다" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "사용자 정의 필드(공백)" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "공용으로 하기" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "사용자 정의 필드" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "비밀로 하기" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "초안" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textarea" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "개인" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Select" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "이 기관은 관련된 데이터셋이 없습니다" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "활동 흐름" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "조직의 삭제를 원합니까 - {name}?" +#: 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/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" -msgstr "조직 편집" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "그룹 추가하기" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "조직 추가" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "그룹 폼" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "기관 찾기" +#: ckan/templates/group/confirm_delete.html:3 +#: ckan/templates/group/confirm_delete.html:15 +#: ckan/templates/group/confirm_delete_member.html:3 +#: ckan/templates/group/confirm_delete_member.html:16 +#: ckan/templates/organization/confirm_delete.html:3 +#: ckan/templates/organization/confirm_delete.html:15 +#: ckan/templates/organization/confirm_delete_member.html:3 +#: ckan/templates/organization/confirm_delete_member.html:16 +#: ckan/templates/package/confirm_delete.html:3 +#: ckan/templates/package/confirm_delete.html:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "삭제 승인" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "현재 이 사이트에 조직이 없습니다." +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "이 그룹의 삭제를 원합니까 - {name}?" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "사용자명" +#: ckan/templates/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/organization/member_new.html:50 -msgid "Email address" -msgstr "이메일 주소" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "관리하기" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "멤버 업데이트" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "그룹 편집" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

관리자: 데이터셋을 추가/삭제/삭제할 수 있고, 조직 멤버를 관리할 수 있습니다.

" -"

편집자: 데이터셋을 추가/편집할 수 있지만, 조직 멤버를 관리하지 못합니다.

" -"

구성원: 조직내 데이터셋을 볼 수 있지만, 새로운 데이터셋을 추가하지 못합니다.

" +#: ckan/templates/group/edit_base.html:23 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" +msgstr "멤버" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "조직 생성" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "이력" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "조직 갱신" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "그룹 추가" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "조직 생성" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "그룹 검색" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "데이터셋 추가" +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "현재 이 사이트에 그룹이 없습니다." -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "기관의 데이터: {group}" +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "하나를 생성하겠습니까?" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "조직이란?" +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +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/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/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/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "멤버 추가" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "나의 조직" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "기존 사용자" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "나의 조직" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "기존 사용자를 추가할 경우, 아래에서 사용자명을 검색하세요." + +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "또는" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "내 조직에 대한 일부 정보..." +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "신규 사용자" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "이 기관을 삭제하시겠습니까? 이 기관에 속한 모든 공용 및 비밀 데이터셋을 삭제합니다." +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "신규 사용자를 초대하려면, 이메일 주소를 입력하세요." -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "조직 저장" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "역할" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "{organization_name} 보기" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "이 멤버의 삭제를 원합니까?" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "데이터셋 생성" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "삭제" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "데이터셋이란?" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "역할이란?" -#: ckan/templates/package/base_form_page.html:25 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" msgstr "" -"CKAN 데이터셋은 리소스에 대한 설명과 추가적인 정보를 갖고 있는 리소스의 집합으로, 고정된 URL을 갖고 있습니다. 데이터셋은 " -"데이터를 탐색할 때 사용자가 보는 결과입니다." - -#: ckan/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "데이터셋의 삭제를 원합니까 - {name}?" +"

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

" +"

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

" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "리소스의 삭제를 원합니까 - {name}?" +#: 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/package/edit_base.html:16 -msgid "View dataset" -msgstr "데이터셋 보기" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "그룹 갱신" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "메타데이터 편집" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +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/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "데이터셋 검색" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "미리보기" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "그룹의 데이터셋: {group}" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "갱신" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "최근 수정 이력" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "이 그룹과 데이터셋을 연계하기" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "이름" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "그룹에 추가하기" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "내 그룹" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "이 데이터셋과 관련된 그룹이 없습니다" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "내 그룹" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "데이터셋 갱신" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "내 그룹에 대한 일부 정보..." -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "데이터셋에 데이터 추가" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "이 그룹의 삭제를 원합니까?" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "새로운 리소스 추가" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "뷰 {name}" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "새로운 리소스" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +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/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "그룹이란?" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/group/snippets/helper.html:8 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +" 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 "" -"데이터스토어 확장판이 활성화되지 않으면, 데이터 탐색기 뷰는 느리거나 신뢰하지 못할 수 있습니다. 추가적인 정보는 다음을 참조하세요 Data Explorer " -"documentation. " - -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "추가하기" +"데이터셋의 집합을 생성하고 관리하기 위해 CKAN 그룹을 사용할 수 있습니다. 그룹은 특정한 프로젝트 또는 팀을 위한 카탈로그 데이터셋일" +" 수 있고, 또는 특정한 주제입니다. 그룹을 통해 다른 사용자들은 출판된 데이터셋을 찾거나 검색할 수 있습니다. " -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" -"%(timestamp)s에 편집된 데이터의 이전 버전입니다. 현재 버전과 차이가 있을 수 " -"있습니다." +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "비교하기" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "데이터스토어에 업로드" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "삭제됨" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "업로드 에러:" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "더 읽기" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "오류:" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "수정" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "타임스탬프" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "상태" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "저자" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "마지막 업데이트" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "로그 메시지" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "전혀 없음" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "환영합니다" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -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/package/resource_data.html:74 -msgid "Details" -msgstr "상세 정보" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "CKAN에 오신 것을 환영합니다" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -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이나 사이트에 대해 서문입니다. " -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "모든 리소스" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "주요 섹션입니다" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "리소스 보기" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "예. 환경" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "리소스 편집" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "데이터 검색" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "데이터스토어" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "인기있는 태그" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "뷰" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} 통계" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API Endpoint" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "데이터셋" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "리소스로 이동하기" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "데이터셋을" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "다운로드" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "기관" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "그룹" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "데이터셋 추상화로부터" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "사이트 로고" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Source: %(dataset)s" +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Markdown formatting을 사용할 수 있습니다" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "이 리소스를 위해 생성된 뷰가 아직 없습니다." +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "이 필드는 필수입니다" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "예상했던 뷰를 볼 수 없나요?" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "사용자 정의" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "예상하는 뷰를 보지 못하는 이유들" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "이 폼은 유효하지 않은 개체를 포함하고 있습니다:" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "이 리소스에 적합한 뷰를 생성하지 않았습니다" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "필수 필드" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "사이트 관리자가 관련 있는 뷰 플러그인을 활성화하지 못할 수 있습니다" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"뷰가 데이터스토어를 필요할 경우, 데이터스토어 플러그인을 활성화되지 않을 수 있거나, 데이터가 데이터 스토어에 저정되지 않을 수 " -"있습니다. 또는 데이터 스토어는 데이터를 처리하는 것을 완료하지 않은 상태일 수 있습니다." +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "이미지 URL" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "추가 정보" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "업로드 취소하기" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "필드" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "조직 폼" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "값" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "데이터셋 편집" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "알 수 없는" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "데이터셋 추가하기" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "생성됨" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "\"{query}\"로 찾음" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "포맷" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "\"{query}\"로 데이터셋을 찾지 못했습니다" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "라이센스" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "공용으로 하기" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "새로운 뷰" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "비밀로 하기" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "이 리소스는 뷰가 없음" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "초안" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "새로운 리소스 추가" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "개인" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "

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

" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "이 기관은 관련된 데이터셋이 없습니다" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "조직의 삭제를 원합니까 - {name}?" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API Docs" +#: 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/package/search.html:55 -msgid "full {format} dump" -msgstr "전체 {format} 덤프" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +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 "" -" %(api_link)s (see %(api_doc_link)s)를 이용하여 이 레지스트리에 접근하거나 %(dump_link)s를 " -"다운로드 할 수 있습니다." +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +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 "%(api_link)s (see %(api_doc_link)s)를 이용하여 레지스트리에 접근할 수 있습니다. " +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "현재 이 사이트에 조직이 없습니다." -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "모든 뷰" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "사용자명" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "뷰 보기" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "이메일 주소" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "뷰 미리보기" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "멤버 업데이트" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "추가 정보" +#: ckan/templates/organization/member_new.html:81 +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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "소스" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} 멤버들" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "조직 생성" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "버전" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "조직 갱신" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "상태" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "조직 생성" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "최종 업데이트" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "데이터셋 추가" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." -msgstr "" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "기관의 데이터: {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "조직이란?" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "데이터 API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "나의 조직" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "제목" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "나의 조직" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "예) 설명 제목" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "내 조직에 대한 일부 정보..." -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "예) 나의 데이터셋" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "이 기관을 삭제하시겠습니까? 이 기관에 속한 모든 공용 및 비밀 데이터셋을 삭제합니다." -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "예) 데이터에 관한 일부 쓸만한 기록" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "조직 저장" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"라이센스 정의와 추가적인 정보는 opendefinition.org에서 찾을 수 " -"있습니다" +"CKAN 데이터셋은 리소스에 대한 설명과 추가적인 정보를 갖고 있는 리소스의 집합으로, 고정된 URL을 갖고 있습니다. 데이터셋은 " +"데이터를 탐색할 때 사용자가 보는 결과입니다." -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "조직" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "데이터셋의 삭제를 원합니까 - {name}?" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "기관 없음" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "리소스의 삭제를 원합니까 - {name}?" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "가시성" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "데이터셋 보기" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "공공" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "메타데이터 편집" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Active" +#: 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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "미리보기" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -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/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "다음: 데이터 추가" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +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/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "이 데이터셋과 관련된 그룹이 없습니다" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" +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 "Joe Bloggs" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "데이터셋에 데이터 추가" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -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/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/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "리소스 추가하기" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "관리자 이메일" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "새로운 리소스" -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update 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/snippets/resource_form.html:24 -msgid "Data" +#: 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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "추가하기" + +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"%(timestamp)s에 편집된 데이터의 이전 버전입니다. 현재 버전과 차이가 있을 수 " +"있습니다." -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "eg. January 2011 Gold Prices" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "모든 리소스" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "데이터에 관한 일부 쓸만한 기록" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "리소스 보기" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "예) CSV, XML or JSON" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "리소스 편집" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "자동으로 추측됩니다. 원할 경우, 공백으로 남길 수 있습니다 " +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "뷰" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "예) 2012-06-05" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API Endpoint" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "파일 크기" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "리소스로 이동하기" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "예) 1024" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "다운로드" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME 형식" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "예) application/json" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "데이터셋 추상화로부터" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "이 리소스의 삭제를 원합니까?" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Source: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "이전의" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "이 리소스를 위해 생성된 뷰가 아직 없습니다." -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Save & add another" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "예상했던 뷰를 볼 수 없나요?" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "끝" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "예상하는 뷰를 보지 못하는 이유들" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "리소스란?" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this 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/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "사이트 관리자가 관련 있는 뷰 플러그인을 활성화하지 못할 수 있습니다" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "탐색" +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_item.html:36 -msgid "More information" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" msgstr "추가 정보" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "삽입" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "필드" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "리소스 뷰는 현재 사용할 수 없습니다." +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "값" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "임베디드 리소스 뷰" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "마지막으로 업데이트된 데이터" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "Raw HTML (가공하지 않은 HTML)을 지원하는 CMS나 블로그에 임베디드 코드를 복사 및 붙여넣기 할 수 있습니다." +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "알 수 없는" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "넓이" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "마지막으로 업데이트된 메타데이터" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "높이" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "생성됨" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "코드" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "포맷" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "리소스 미리보기" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "라이센스" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "데이터와 리소스" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "새로운 뷰" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "데이터셋에 데이터가 없습니다" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "이 리소스는 뷰가 없음" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "새로운 리소스 추가" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format -msgid "Read dataset as of %s" -msgstr "%s으로 데이터셋 읽기" +msgid "" +"

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

" +msgstr "

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

" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "데이터셋 생성" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: 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/search.html:53 +msgid "API Docs" +msgstr "API Docs" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "예. 내 뷰" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "전체 {format} 덤프" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -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 "" +" %(api_link)s (see %(api_doc_link)s)를 이용하여 이 레지스트리에 접근하거나 %(dump_link)s를 " +"다운로드 할 수 있습니다." -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -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 "%(api_link)s (see %(api_doc_link)s)를 이용하여 레지스트리에 접근할 수 있습니다. " -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "필터 제거" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "모든 뷰" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "필터" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "뷰 보기" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "뷰는 무엇인가?" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +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/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "추가 정보" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "차이점" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "소스" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "개정이력 차이점" +#: ckan/templates/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/revision/diff.html:44 -msgid "Difference" -msgstr "차이점" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "버전" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "차이점이 없음" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "상태" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "수정 이력" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "최종 업데이트" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -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/revision/read.html:30 -msgid "Undelete" -msgstr "삭제되지 않음" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "새 단체 생성하기" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -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/revision/read.html:74 -msgid "Datasets' Tags" -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/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "개체" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "제목" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "새로운 활동 항목" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "예) 설명 제목" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "삽입된 데이터 뷰어" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "예) 나의 데이터셋" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "웹페이지에 이 항목을 복사하여 넣기" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "예) 데이터에 관한 일부 쓸만한 기록" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "픽셀로 길이와 높이를 선택하세요:" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "예) 경제, 정신 건강, 정부" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "길이:" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"라이센스 정의와 추가적인 정보는 opendefinition.org에서 찾을 수 " +"있습니다" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "높이:" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "조직" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Datapusher 상: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "기관 없음" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Trackback URL" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "가시성" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "더 많은 {facet_type} 보여주기" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "공공" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "인기있는 {facet_type}만 보여주기" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Active" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "검색에 일치하는 {facet_type}이 없습니다" +#: 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/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Home" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "이 데이터셋의 삭제를 원합니까?" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "언어" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "다음: 데이터 추가" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "가기" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "라이센스를 제공하지 않음" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "이 데이터셋은 Open Definition을 만족시킨다." +#: 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/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "이 조직을 위한 설명이 없습니다" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "저자 이메일" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -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/snippets/search_form.html:17 -msgid "Submit" -msgstr "제출" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "리소스 갱신" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "로 정렬" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "데이터" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "필터 결과" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

다른 검색을 시도하세요.

" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "eg. January 2011 Gold Prices" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +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/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "예) CSV, XML or JSON" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "\"{query}\"의 데이터셋을 찾을 수 없음" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "자동으로 추측됩니다. 원할 경우, 공백으로 남길 수 있습니다 " -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "{number}개 데이터셋을 찾았습니다" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "예) 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "데이터셋을 찾을 수 없음" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "예) 1024" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "\"{query}\"의 그룹을 찾을 수 없음" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME 형식" -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "{number}개 그룹을 찾았습니다" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "예) application/json" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "그룹을 찾을 수 없음" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +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/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "이전의" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "\"{query}\"에 대한 기관을 찾을 수 없음" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Save & add another" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "{number}개 조직을 찾았습니다" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "끝" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "기관을 찾을 수 없음" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "리소스란?" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Social" +#: 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/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "구독하기" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +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:82 -msgid "Email" -msgstr "이메일" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "추가 정보" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "삽입" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "편집" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "리소스 뷰는 현재 사용할 수 없습니다." -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "검색 태그" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "임베디드 리소스 뷰" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "뉴스 피드" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "Raw HTML (가공하지 않은 HTML)을 지원하는 CMS나 블로그에 임베디드 코드를 복사 및 붙여넣기 할 수 있습니다." -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "내 데이터셋" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "넓이" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "내 기관" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "높이" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "내 그룹" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "코드" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "내가 팔로하는 아이템의 활동" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "리소스 미리보기" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "데이터셋을 생성하지 않았습니다" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "데이터와 리소스" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "지금 데이터셋을 생성하시겠습니까?" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "데이터셋에 데이터가 없습니다" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "당신은 어떤 그룹의 멤버가 아닙니다." +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "%s으로 데이터셋 읽기" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "당신은 어떤 기관의 멤버가 아닙니다." +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +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/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/user/edit.html:17 -msgid "Account Info" -msgstr "계정 정보" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +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/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "예. 내 뷰에 대한 정보" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "상세정보 변경" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "필터 제거" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "성명" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "뷰는 무엇인가?" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "eg. Joe Bloggs" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "뷰는 리소스를 갖고 있는 데이터의 표현이다" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "eg. joe@example.com" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "차이점" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "당신에 대한 약간의 정보" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "개정이력 차이점" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "공지 메일에 구독하기" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "차이점" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "비밀번호 변경" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "차이점이 없음" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "수정 이력" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "비밀번호" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "개정" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "비밀번호 확인하기" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "삭제되지 않음" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "사용자를 삭제하시겠습니까?" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "변경사항" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "API 키를 다시 생성하시겠습니까?" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "데이터셋의 태그" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "API Key 재생성" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "개체" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "프로파일 업데이트하기" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "새로운 활동 항목" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "모든 사용자" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +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/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "웹페이지에 이 항목을 복사하여 넣기" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "계정이 필요하나요?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "픽셀로 길이와 높이를 선택하세요:" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "등록하면 약간의 시간이 소요됩니다. " +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "길이:" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "계정 생성하기" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "높이:" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "비밀번호를 잊으셨나요?" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher 상: {status}." -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "문제없습니다, 초기화를 위해 비밀번호 복원 폼을 사용하세요" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "비밀번호를 잃어버렸나요?" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "더 많은 {facet_type} 보여주기" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "로그아웃" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "인기있는 {facet_type}만 보여주기" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "로그아웃되었습니다." +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "검색에 일치하는 {facet_type}이 없습니다" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "{user}로 이미 로그인되어 있습니다." +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Home" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "로그아웃" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "언어" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "기억하기" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "가기" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "에 이미 로그인되어 있습니다" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "라이센스를 제공하지 않음" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "다른 계정으로 로그인하기 전에 로그아웃이 필요합니다" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "이 데이터셋은 Open Definition을 만족시킨다." -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "지금 로그아웃하기" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "이 조직을 위한 설명이 없습니다" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "등록" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "이 데이터셋의 설명이 없습니다" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "계정 등록하기" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "제출" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "왜 등록해야 할까요?" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "로 정렬" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "데이터셋, 그룹, 관심있는 것을 생성하기" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "필터 결과" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "사용자명" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

다른 검색을 시도하세요.

" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "전체이음" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "

검색 중 오류가 발생했습니다. 다시 시도해주세요.

" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -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/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "비밀번호 초기화" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "\"{query}\"의 데이터셋을 찾을 수 없음" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "비밀번호 초기화하기" +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number}개 데이터셋을 찾았습니다" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "비밀번호 업데이트하기" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "데이터셋을 찾을 수 없음" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -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/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "비밀번호를 입력하면 계정을 업데이트합니다." +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "\"{query}\"의 그룹을 찾을 수 없음" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "사용자가 데이터셋을 생성하지 않았습니다" +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number}개 그룹을 찾았습니다" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "자기소개를 제공하지 않습니다" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "그룹을 찾을 수 없음" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -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/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "\"{query}\"에 대한 기관을 찾을 수 없음" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "당신만 볼 수 있음을 의미합니다" +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number}개 조직을 찾았습니다" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "부터 멤버" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "기관을 찾을 수 없음" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API 키" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "비밀번호를 재설정하세요" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "구독하기" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -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:82 +msgid "Email" +msgstr "이메일" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "요청 초기화" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "텍스트박스에 사용자 이름을 넣으면 새로운 비밀번호를 입력하기 위한 링크를 이메일로 보내드립니다" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "편집" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "활동:" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "검색 태그" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "검색 항목.." +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "뉴스 피드" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "팔로잉하지 않고 있습니다." +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "내 데이터셋" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "follower 없음" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "내 기관" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "사용자 검색하기" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "내 그룹" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "완료" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "내가 팔로하는 아이템의 활동" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "처리중" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "데이터셋을 생성하지 않았습니다" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -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:16 +msgid "Create one now?" +msgstr "지금 데이터셋을 생성하시겠습니까?" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "업로드되지 않음" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "당신은 어떤 그룹의 멤버가 아닙니다." -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "데이터스토어 리소스를 찾을 수 없음" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "당신은 어떤 기관의 멤버가 아닙니다." -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "데이터가 유효하지 않습니다 (예를 들어, 수치값이 범위를 벗어나거나 텍스트 필드에 입력되었습니다). " +#: 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 "사용자" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "리소스 \"{0}\"를 찾을 수 없음." +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "계정 정보" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "사용자 {0}는 리소스 {1}를 업데이트할 수 있는 권한이 없습니다" +#: ckan/templates/user/edit.html:19 +msgid "" +" Your profile lets other CKAN users know about who you are and what you do. " +msgstr "프로파일을 CKAN 사용자가 볼 수 있도록 해 주세요" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "페이지당 데이터셋" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "상세정보 변경" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "테스트 conf" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "성명" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "커스텀 필드 오름차순" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "eg. Joe Bloggs" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "커스텀 필드 내림차순" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "eg. joe@example.com" -#: 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 "사용자 정의 텍스트" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "당신에 대한 약간의 정보" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "사용자 정의 텍스트" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "공지 메일에 구독하기" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "국가 코드" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "비밀번호 변경" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "커스텀 리소스 텍스트" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "시스템 관리자 비밀번호" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "비밀번호" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "이 그룹은 명세가 없습니다" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "비밀번호 확인하기" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "CKAN의 데이터 미리보기 도구는 강력한 특징을 갖고 있습니다." +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "사용자를 삭제하시겠습니까?" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "이미지 url" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "API 키를 다시 생성하시겠습니까?" -#: 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이 공백일 경우)" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "API Key 재생성" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "데이터 탐색기" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "프로파일 업데이트하기" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "표" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "모든 사용자" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -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 "로그인" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "지도" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "계정이 필요하나요?" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "등록하면 약간의 시간이 소요됩니다. " -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "행 오프셋" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "계정 생성하기" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "예: 0" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "비밀번호를 잊으셨나요?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "행의 수" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "문제없습니다, 초기화를 위해 비밀번호 복원 폼을 사용하세요" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "예: 100" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "비밀번호를 잃어버렸나요?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "그래프 형식" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "로그아웃" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "그룹 (축 1)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "로그아웃되었습니다." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "시리즈 (축 2)" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "{user}로 이미 로그인되어 있습니다." -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "필드 형식" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "로그아웃" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "위도 필드" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "기억하기" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "경도 필드" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "에 이미 로그인되어 있습니다" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "GeoJSON 필드" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." +msgstr "다른 계정으로 로그인하기 전에 로그아웃이 필요합니다" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Auto zoom to features" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "지금 로그아웃하기" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "클러스터 제작자" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "등록" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "전체 데이터셋 수" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "계정 등록하기" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "날짜" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "왜 등록해야 할까요?" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "전체 데이터셋" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "데이터셋, 그룹, 관심있는 것을 생성하기" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "주별 데이터셋 개정" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "사용자명" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "개정된 모든 데이터셋" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "전체이음" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "새로운 데이터셋" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "계정 생성하기" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "상위 평점의 데이터셋" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "비밀번호 초기화" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "평균 평점" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "비밀번호 초기화하기" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "평점의 수" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "비밀번호 업데이트하기" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "평점 없음" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "어떻게 동작할까요?" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "가장 많이 편집된 데이터셋" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "비밀번호를 입력하면 계정을 업데이트합니다." -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "편집 횟수" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "사용자가 데이터셋을 생성하지 않았습니다" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "편집된 데이터셋이 없음" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "자기소개를 제공하지 않습니다" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "가장 큰 그룹" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "자기소개가 없습니다" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "데이터셋의 수" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "그룹이 없음" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "당신만 볼 수 있음을 의미합니다" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "상위 태그" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "부터 멤버" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "태그 이름" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API 키" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "데이터셋의 수" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "비밀번호를 재설정하세요" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "비밀번호 초기화" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "통계 메뉴" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "요청 초기화" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "데이터셋의 전체 개수" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "텍스트박스에 사용자 이름을 넣으면 새로운 비밀번호를 입력하기 위한 링크를 이메일로 보내드립니다" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "텍스트" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "활동:" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" -msgstr "" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "검색 항목.." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "웹사이트" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "팔로잉하지 않고 있습니다." -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "웹 페이지 url" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "follower 없음" -#: 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/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "사용자 검색하기" diff --git a/ckan/i18n/lt/LC_MESSAGES/ckan.mo b/ckan/i18n/lt/LC_MESSAGES/ckan.mo index 661b6b376d2..b861d667516 100644 Binary files a/ckan/i18n/lt/LC_MESSAGES/ckan.mo and b/ckan/i18n/lt/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/lt/LC_MESSAGES/ckan.po b/ckan/i18n/lt/LC_MESSAGES/ckan.po index c00566b72fa..e249a8df3cf 100644 --- a/ckan/i18n/lt/LC_MESSAGES/ckan.po +++ b/ckan/i18n/lt/LC_MESSAGES/ckan.po @@ -1,38 +1,673 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: lt\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ckan/authz.py:179 +#: 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:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Klaida" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Ištekliai nerasti" + +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Jūs neturite teisių matyti šio puslapio" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Klaida:" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Paskutinį kartą atnaujinta" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/controller.py:46 +#, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" + +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: 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:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Aprašymas" + +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Išsaugoti" + +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Kraunama..." + +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Duomenų API" + +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +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:28 +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:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "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:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "" + +#: 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" + +#: 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:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Pasekėjai" + +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ištekliai" + +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +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:101 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +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/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Bendras rinkmenų skaičius" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Geriausiai įvertintos rinkmenos" + +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Vidutinis įvertinimas" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Įvertinimų skaičius" + +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Nėra įvertinimų" + +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Dažniausiai redaguotos rinkmenos" + +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Rinkmena" + +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Redagavimų skaičius" + +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Didžiausios grupės" + +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Grupė" + +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Rinkmenų skaičius" + +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Dažniausios gairės" + +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Vartotojas" + +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "" + +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "" + +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +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:56 +#: 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:182 #, python-format msgid "Authorization function not found: %s" msgstr "Prieigos funkcija nerasta: %s" -#: ckan/authz.py:191 ckan/templates/header.html:14 +#: ckan/authz.py:194 ckan/templates/header.html:14 msgid "Admin" msgstr "Administratorius" -#: ckan/authz.py:195 +#: ckan/authz.py:198 msgid "Editor" msgstr "Redaguotojas" -#: ckan/authz.py:199 +#: ckan/authz.py:202 msgid "Member" msgstr "Narys" @@ -56,7 +691,7 @@ msgstr "Tinklapio gairių eilutė" msgid "Site Tag Logo" msgstr "Tinklapio gairių logotipas" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 #: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 @@ -65,31 +700,31 @@ msgstr "Tinklapio gairių logotipas" msgid "About" msgstr "Apie" -#: ckan/controllers/admin.py:54 +#: ckan/controllers/admin.py:55 msgid "About page text" msgstr "Tekstas apie puslapį" -#: ckan/controllers/admin.py:55 +#: ckan/controllers/admin.py:56 msgid "Intro Text" msgstr "Įvadinis tekstas" -#: ckan/controllers/admin.py:55 +#: ckan/controllers/admin.py:56 msgid "Text on home page" msgstr "Namų puslapio tekstas" -#: ckan/controllers/admin.py:56 +#: ckan/controllers/admin.py:57 msgid "Custom CSS" msgstr "Specializuotas CSS" -#: ckan/controllers/admin.py:56 +#: ckan/controllers/admin.py:57 msgid "Customisable css inserted into the page header" msgstr "Įterptas specializuotas css į puslapio antraštę" -#: ckan/controllers/admin.py:57 +#: ckan/controllers/admin.py:58 msgid "Homepage" msgstr "" -#: ckan/controllers/admin.py:160 +#: ckan/controllers/admin.py:161 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " @@ -98,156 +733,147 @@ msgstr "" "Nepavyko sunaikinti paketo %s, nes susietas poversijis %s talpina " "neištrintus paketus %s" -#: ckan/controllers/admin.py:182 +#: ckan/controllers/admin.py:183 #, python-format msgid "Problem purging revision %s: %s" msgstr "Problema panaikinant poversijį %s: %s" -#: ckan/controllers/admin.py:184 +#: ckan/controllers/admin.py:185 msgid "Purge complete" msgstr "Panaikinimas baigtas" -#: ckan/controllers/admin.py:186 +#: ckan/controllers/admin.py:187 msgid "Action not implemented." msgstr "Veiksmas nėra realizuotas." -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Jūs neturite teisių matyti šio puslapio" - -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 msgid "Access denied" msgstr "Kreiptis nepriimta" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 #: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 msgid "Not found" msgstr "Nerasta" -#: ckan/controllers/api.py:134 +#: ckan/controllers/api.py:136 msgid "Bad request" msgstr "Bloga užklausa" -#: ckan/controllers/api.py:168 +#: ckan/controllers/api.py:170 #, python-format msgid "Action name not known: %s" msgstr "Veiksmo pavadinimas nerastas: %s" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 #, python-format msgid "JSON Error: %s" msgstr "JSON klaida: %s" -#: ckan/controllers/api.py:195 +#: ckan/controllers/api.py:197 #, python-format msgid "Bad request data: %s" msgstr "Blogi užklausos duomenys: %s" -#: ckan/controllers/api.py:298 +#: ckan/controllers/api.py:300 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Negalima pateikti esybių sąrašo šio tipo: %s" -#: ckan/controllers/api.py:327 +#: ckan/controllers/api.py:329 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Negalima perskaityti esybių sąrašo šio tipo: %s" -#: ckan/controllers/api.py:365 +#: ckan/controllers/api.py:367 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Negalima sukurti naujos esybės šio tipo: %s %s" -#: ckan/controllers/api.py:398 +#: ckan/controllers/api.py:400 msgid "Unable to add package to search index" msgstr "Nepavyko įtraukti paketo į paieškos rodyklę" -#: ckan/controllers/api.py:428 +#: ckan/controllers/api.py:430 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Negalima atnaujinti esybės šio tipo: %s" -#: ckan/controllers/api.py:452 +#: ckan/controllers/api.py:454 msgid "Unable to update search index" msgstr "Nepavyko atnaujinti paieškos rodyklės" -#: ckan/controllers/api.py:475 +#: ckan/controllers/api.py:477 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Negalima ištrinti esybės šio tipo: %s %s" -#: ckan/controllers/api.py:498 +#: ckan/controllers/api.py:500 msgid "No revision specified" msgstr "Nenurodytas poversijis" -#: ckan/controllers/api.py:502 +#: ckan/controllers/api.py:504 #, python-format msgid "There is no revision with id: %s" msgstr "Negzistuoja poversijis, kurio id: %s" -#: ckan/controllers/api.py:512 +#: ckan/controllers/api.py:514 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" "Trūkstamas paieškos termas ('since_id=UUID' arba 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:524 +#: ckan/controllers/api.py:526 #, python-format msgid "Could not read parameters: %r" msgstr "Nepavyko nuskaityti parametro: %r" -#: ckan/controllers/api.py:585 +#: ckan/controllers/api.py:587 #, python-format msgid "Bad search option: %s" msgstr "Bloga paieškos parinktis: %s" -#: ckan/controllers/api.py:588 +#: ckan/controllers/api.py:590 #, python-format msgid "Unknown register: %s" msgstr "Nežinomas registras: %s" -#: ckan/controllers/api.py:597 +#: ckan/controllers/api.py:599 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:607 +#: ckan/controllers/api.py:609 msgid "Request params must be in form of a json encoded dictionary." msgstr "Užklausos parametrai turi būti pateikti JSON užkoduotu žodynu." -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 msgid "Group not found" msgstr "Grupė nerasta" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 msgid "Incorrect group type" msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 #: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 @@ -259,22 +885,23 @@ msgstr "" msgid "Organizations" msgstr "Organizacijos" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 #: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 #: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupės" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 #: 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 @@ -282,280 +909,270 @@ msgstr "Grupės" msgid "Tags" msgstr "Gairės" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 msgid "Formats" msgstr "Formatai" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:448 +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Naudotojas %r neturi teisių redaguoti %s" + +#: ckan/controllers/group.py:442 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:466 +#: ckan/controllers/group.py:460 msgid "Unauthorized to create a group" msgstr "Neturite teisių sukurti grupės" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Naudotojas %r neturi teisių redaguoti %s" - -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 #: ckan/controllers/user.py:249 ckan/controllers/user.py:379 #: ckan/controllers/user.py:548 msgid "Integrity Error" msgstr "Vientisumo klaida" -#: ckan/controllers/group.py:600 +#: ckan/controllers/group.py:594 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Naudotojas %r neturi teisių redaguoti %s leidimų" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 #, python-format msgid "Unauthorized to delete group %s" msgstr "Neturite teisių ištrinti grupės %s" -#: ckan/controllers/group.py:626 +#: ckan/controllers/group.py:620 msgid "Organization has been deleted." msgstr "Organizacija buvo ištrinta." -#: ckan/controllers/group.py:628 +#: ckan/controllers/group.py:622 msgid "Group has been deleted." msgstr "Grupė buvo ištrinta" -#: ckan/controllers/group.py:630 +#: ckan/controllers/group.py:624 #, python-format msgid "%s has been deleted." msgstr "" -#: ckan/controllers/group.py:704 +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:705 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Neturite teisių pridėti nario prie grupės %s" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Neturite teisių trinti grupės %s narių" -#: ckan/controllers/group.py:730 +#: ckan/controllers/group.py:731 msgid "Group member has been deleted." msgstr "Grupės narys buvo ištrintas." -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 msgid "Select two revisions before doing the comparison." msgstr "Pasirinkite du poversijus prieš atlikdami palyginimą." -#: ckan/controllers/group.py:778 +#: ckan/controllers/group.py:779 msgid "CKAN Group Revision History" msgstr "CKAN grupės poversijų istorija" -#: ckan/controllers/group.py:782 +#: ckan/controllers/group.py:783 msgid "Recent changes to CKAN Group: " msgstr "Paskiausi pakeitimai CKAN grupėje:" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 msgid "Log message: " msgstr "Žurnalo žinutė:" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 #: ckan/controllers/user.py:715 msgid "You are now following {0}" msgstr "Jūs dabar sekate {0}" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 #: ckan/controllers/user.py:735 msgid "You are no longer following {0}" msgstr "Jūs daugiau nebesekate {0}" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 #, python-format msgid "Unauthorized to view followers %s" msgstr "Neturite teisių peržiūrėti pasekėjų %s" -#: ckan/controllers/home.py:36 +#: 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:81 +#: ckan/controllers/home.py:73 #, 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:83 +#: ckan/controllers/home.py:75 #, 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:290 +#: ckan/controllers/package.py:288 msgid "Invalid search query: {error_message}" msgstr "" -#: ckan/controllers/package.py:307 +#: ckan/controllers/package.py:304 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 msgid "Dataset not found" msgstr "Rinkmena nerasta" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 #, python-format msgid "Invalid revision format: %r" msgstr "Neteisingas poversijo formatas: %r" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 #, python-format msgid "Unauthorized to read package %s" msgstr "Neturite teisių skaityti paketo %s" -#: ckan/controllers/package.py:448 +#: ckan/controllers/package.py:444 msgid "CKAN Dataset Revision History" msgstr "CKAN rinkmenos poversijo istorija" -#: ckan/controllers/package.py:451 +#: ckan/controllers/package.py:447 msgid "Recent changes to CKAN Dataset: " msgstr "Paskutiniai pakeitimai CKAN rinkmenos:" -#: ckan/controllers/package.py:507 +#: ckan/controllers/package.py:503 msgid "Unauthorized to create a package" msgstr "Neturite teisių sukurti paketo" -#: ckan/controllers/package.py:577 +#: ckan/controllers/package.py:573 msgid "Unauthorized to edit this resource" msgstr "Neturite teisių redaguoti šio išteklio" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Ištekliai nerasti" - -#: ckan/controllers/package.py:654 +#: ckan/controllers/package.py:644 msgid "Unauthorized to update dataset" msgstr "Neturite teisių atnaujinti rinkmenos" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:660 +#: ckan/controllers/package.py:650 msgid "You must add at least one data resource" msgstr "Turite pridėti bent vieną duomenų išteklių" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Klaida" - -#: ckan/controllers/package.py:691 +#: ckan/controllers/package.py:681 msgid "Unauthorized to create a resource" msgstr "Neturite teisių kurti išteklių" -#: ckan/controllers/package.py:727 +#: ckan/controllers/package.py:714 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:941 +#: ckan/controllers/package.py:928 msgid "Unable to add package to search index." msgstr "Nepavyko įtraukti paketo į paieškos rodyklę" -#: ckan/controllers/package.py:989 +#: ckan/controllers/package.py:976 msgid "Unable to update search index." msgstr "Nepavyko atnaujinti paieškos rodyklės." -#: ckan/controllers/package.py:1026 +#: ckan/controllers/package.py:1013 msgid "Dataset has been deleted." msgstr "Rinkmena buvo ištrinta." -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format msgid "Unauthorized to delete package %s" msgstr "Neturite teisių trinti paketo %s" -#: ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1041 msgid "Resource has been deleted." msgstr "Išteklius buvo ištrintas." -#: ckan/controllers/package.py:1060 +#: ckan/controllers/package.py:1052 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Neturite teisių trinti ištekliaus %s" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1158 +#: ckan/controllers/package.py:1150 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1167 +#: ckan/controllers/package.py:1159 msgid "No download is available" msgstr "Nėra atsisiuntimų" -#: ckan/controllers/package.py:1305 +#: ckan/controllers/package.py:1296 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Neturite teisių skaityti rinkmenos %s" -#: ckan/controllers/package.py:1413 +#: ckan/controllers/package.py:1404 #, python-format msgid "Unauthorized to read resource %s" msgstr "Neturite teisių nuskaityti išteklių %s" -#: ckan/controllers/package.py:1477 +#: ckan/controllers/package.py:1468 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1495 +#: ckan/controllers/package.py:1486 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1501 +#: ckan/controllers/package.py:1492 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1557 +#: ckan/controllers/package.py:1548 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1566 +#: ckan/controllers/package.py:1557 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1595 +#: ckan/controllers/package.py:1586 msgid "No preview has been defined." msgstr "Jokia peržiūra nebuvo apibrėžta." @@ -584,13 +1201,6 @@ msgstr "Kita" msgid "Tag not found" msgstr "Gairė nerasta" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Naudotojas nerastas" - #: ckan/controllers/user.py:161 msgid "Unauthorized to register as a user." msgstr "" @@ -613,6 +1223,13 @@ msgstr "Nenurodytas naudotojas" msgid "Unauthorized to edit user %s" msgstr "Neturite teisių redaguoti naudotojo %s" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Naudotojas nerastas" + #: ckan/controllers/user.py:234 ckan/controllers/user.py:367 msgid "Profile updated" msgstr "Profilis atnaujintas" @@ -815,7 +1432,7 @@ msgstr "{actor} pradėjo sekti {user}" msgid "{actor} started following {group}" msgstr "{actor} pradėjo sekti {group}" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -877,141 +1494,141 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: ckan/lib/formatters.py:116 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Ką tik" -#: ckan/lib/formatters.py:118 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "prieš {mins} minutę" msgstr[1] "prieš {mins} minutes" msgstr[2] "prieš {mins} minutes" -#: ckan/lib/formatters.py:121 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "prieš {hours} valandą" msgstr[1] "prieš {hours} valandas" msgstr[2] "prieš {hours} valandas" -#: ckan/lib/formatters.py:127 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "prieš vieną dieną" msgstr[1] "prieš {days} dienas" msgstr[2] "prieš {days} dienas" -#: ckan/lib/formatters.py:130 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:132 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:148 +#: ckan/lib/formatters.py:146 msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:153 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:169 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} baitai" -#: ckan/lib/formatters.py:171 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:173 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:175 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:177 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:189 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:191 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:193 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:195 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:197 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:199 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:201 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:203 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:205 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:1018 +#: ckan/lib/helpers.py:1048 msgid "Update your avatar at gravatar.com" msgstr "Atnaujinkite savo avatarą puslapyje gravatar.com" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 msgid "Unknown" msgstr "Nežinomas" -#: ckan/lib/helpers.py:1330 +#: ckan/lib/helpers.py:1361 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1370 +#: ckan/lib/helpers.py:1401 msgid "Created new dataset." msgstr "Sukurta nauja rinkmena." -#: ckan/lib/helpers.py:1372 +#: ckan/lib/helpers.py:1403 msgid "Edited resources." msgstr "Ištekliai paredaguoti." -#: ckan/lib/helpers.py:1374 +#: ckan/lib/helpers.py:1405 msgid "Edited settings." msgstr "Nustatymai paredaguoti." -#: ckan/lib/helpers.py:1616 +#: ckan/lib/helpers.py:1648 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ų" -#: ckan/lib/helpers.py:1618 +#: ckan/lib/helpers.py:1650 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} pastaroji peržiūra" @@ -1044,7 +1661,8 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:32 #: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 #: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 msgid "Missing value" msgstr "Trūkstama reikšmė" @@ -1057,21 +1675,15 @@ msgstr "Įvesties lauko %(name)s nebuvo tikimasi." msgid "Please enter an integer value" msgstr "Įveskite sveiką skaičių" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Ištekliai" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 msgid "Package resource(s) invalid" msgstr "Netinkamas paketo išteklius(-ai)" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 #: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 msgid "Extras" msgstr "Priedai" @@ -1081,174 +1693,155 @@ msgstr "Priedai" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Gairės žodynas \"%s\" negzistuoja" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Vartotojas" - -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Rinkmena" - -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Grupė" - #: ckan/logic/converters.py:180 msgid "Could not parse as valid JSON" msgstr "" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 msgid "An organization must be provided" msgstr "" -#: ckan/logic/validators.py:46 +#: ckan/logic/validators.py:47 msgid "Organization does not exist" msgstr "Organizacija neegzistuoja" -#: ckan/logic/validators.py:51 +#: ckan/logic/validators.py:52 msgid "You cannot add a dataset to this organization" msgstr "Šiai organizacijai rikmenos pridėti negalite" -#: ckan/logic/validators.py:91 +#: ckan/logic/validators.py:92 msgid "Invalid integer" msgstr "Netinkamas natūralusis skaičius" -#: ckan/logic/validators.py:96 +#: ckan/logic/validators.py:97 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:102 +#: ckan/logic/validators.py:103 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:129 +#: ckan/logic/validators.py:130 msgid "Date format incorrect" msgstr "Neteisingas duomenų formatas" -#: ckan/logic/validators.py:138 +#: ckan/logic/validators.py:139 msgid "No links are allowed in the log_message." msgstr "Nuorodos neleidžiamos žurnalo žinutėje." -#: ckan/logic/validators.py:158 +#: ckan/logic/validators.py:159 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:199 +#: ckan/logic/validators.py:200 msgid "Resource" msgstr "Išteklius" -#: ckan/logic/validators.py:253 +#: ckan/logic/validators.py:254 msgid "That group name or ID does not exist." msgstr "Toks grupės vardas arba ID negzistuoja." -#: ckan/logic/validators.py:267 +#: ckan/logic/validators.py:268 msgid "Activity type" msgstr "Veiklos tipas" -#: ckan/logic/validators.py:330 +#: ckan/logic/validators.py:331 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:334 +#: ckan/logic/validators.py:335 msgid "That name cannot be used" msgstr "Šis vardas negali būti panaudotas" -#: ckan/logic/validators.py:337 +#: ckan/logic/validators.py:338 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, 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:342 +#: ckan/logic/validators.py:343 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:360 +#: ckan/logic/validators.py:361 msgid "That URL is already in use." msgstr "Tokia nuoroda jau yra naudojama" -#: ckan/logic/validators.py:365 +#: ckan/logic/validators.py:366 #, 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:369 +#: ckan/logic/validators.py:370 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Vardo \"%s\" ilgis yra didesnis nei maksimalus %s" -#: ckan/logic/validators.py:375 +#: ckan/logic/validators.py:376 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Versijos maksimalus ilgis yra %i simboliai" -#: ckan/logic/validators.py:393 +#: ckan/logic/validators.py:394 #, python-format msgid "Duplicate key \"%s\"" msgstr "Pasikartojantis raktas \"%s\"" -#: ckan/logic/validators.py:409 +#: ckan/logic/validators.py:410 msgid "Group name already exists in database" msgstr "Toks grupės vardas jau egzistuoja duomenų bazėje" -#: ckan/logic/validators.py:415 +#: ckan/logic/validators.py:416 #, 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:419 +#: ckan/logic/validators.py:420 #, 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:427 +#: ckan/logic/validators.py:428 #, 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:435 +#: ckan/logic/validators.py:436 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Gairė \"%s\" negali turėti didžiųjų raidžių" -#: ckan/logic/validators.py:544 +#: ckan/logic/validators.py:545 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:560 +#: ckan/logic/validators.py:561 msgid "That login name is not available." msgstr "Šis prisijungimo vardas nėra prieinamas" -#: ckan/logic/validators.py:569 +#: ckan/logic/validators.py:570 msgid "Please enter both passwords" msgstr "Prašome įvesti abu slaptažodžius" -#: ckan/logic/validators.py:577 +#: ckan/logic/validators.py:578 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:581 +#: ckan/logic/validators.py:582 msgid "Your password must be 4 characters or longer" msgstr "Slaptažodį turi sudaryti bent 4 simboliai" -#: ckan/logic/validators.py:589 +#: ckan/logic/validators.py:590 msgid "The passwords you entered do not match" msgstr "Jūsų įvesti slaptažodžiai nesutampa" -#: ckan/logic/validators.py:610 +#: ckan/logic/validators.py:611 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." @@ -1256,223 +1849,227 @@ msgstr "" "Redagavimas neleidžiamas, nes panašus į brukalą. Prašome vengti nuorodų savo" " aprašyme." -#: ckan/logic/validators.py:619 +#: ckan/logic/validators.py:620 #, 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:627 +#: ckan/logic/validators.py:628 msgid "That vocabulary name is already in use." msgstr "Toks žodyno vardas jau naudojamas." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:634 #, 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:642 +#: ckan/logic/validators.py:643 msgid "Tag vocabulary was not found." msgstr "Gairių žodynas nerastas." -#: ckan/logic/validators.py:655 +#: ckan/logic/validators.py:656 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Gairė %s nepriklauso žodynui %s" -#: ckan/logic/validators.py:661 +#: ckan/logic/validators.py:662 msgid "No tag name" msgstr "Nenurodytas gairės vardas" -#: ckan/logic/validators.py:674 +#: ckan/logic/validators.py:675 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Gairė %s jau priklauso žodynui %s" -#: ckan/logic/validators.py:697 +#: ckan/logic/validators.py:698 msgid "Please provide a valid URL" msgstr "Prašome nurodyti teisingą URL" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:712 msgid "role does not exist." msgstr "vaidmuo neegzistuoja." -#: ckan/logic/validators.py:740 +#: ckan/logic/validators.py:741 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:746 +#: ckan/logic/validators.py:747 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:749 +#: ckan/logic/validators.py:750 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:781 +#: ckan/logic/validators.py:782 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:791 +#: ckan/logic/validators.py:792 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:802 +#: ckan/logic/validators.py:803 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:806 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:820 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Sukurti objektą %s" -#: ckan/logic/action/create.py:532 +#: ckan/logic/action/create.py:544 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Sukurti paketo ryšį: %s %s %s" -#: ckan/logic/action/create.py:573 +#: ckan/logic/action/create.py:585 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Sukurti nario objektą %s" -#: ckan/logic/action/create.py:792 +#: ckan/logic/action/create.py:804 msgid "Trying to create an organization as a group" msgstr "Bandoma sukurti organizaciją kaip grupę" -#: ckan/logic/action/create.py:881 +#: ckan/logic/action/create.py:893 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:884 +#: ckan/logic/action/create.py:896 msgid "You must supply a rating (parameter \"rating\")." msgstr "Turite nurodyti įvertinimą (parametras \"rating\")." -#: ckan/logic/action/create.py:889 +#: ckan/logic/action/create.py:901 msgid "Rating must be an integer value." msgstr "Įvertinimas turi būti sveikas teigiamas skaičius." -#: ckan/logic/action/create.py:893 +#: ckan/logic/action/create.py:905 #, python-format msgid "Rating must be between %i and %i." msgstr "Įvertinimas turi būti tarp %i ir %i." -#: ckan/logic/action/create.py:1052 +#: ckan/logic/action/create.py:1064 msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 msgid "You must be logged in to follow users" msgstr "Turite prisijungti norėdami sekti naudotojus" -#: ckan/logic/action/create.py:1285 +#: ckan/logic/action/create.py:1297 msgid "You cannot follow yourself" msgstr "Negalite sekti savęs" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 msgid "You are already following {0}" msgstr "Jūs jau sekate {0}" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 msgid "You must be logged in to follow a dataset." msgstr "Turite prisijungti norėdami sekti rinkmeną." -#: ckan/logic/action/create.py:1390 +#: ckan/logic/action/create.py:1402 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 msgid "You must be logged in to follow a group." msgstr "Turite prisijungti norėdami sekti grupę." -#: ckan/logic/action/delete.py:45 +#: ckan/logic/action/delete.py:54 msgid " Delete User: {0}" msgstr "" -#: ckan/logic/action/delete.py:86 +#: ckan/logic/action/delete.py:92 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Ištrintas paketas: %s" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Ištrinti %s" -#: ckan/logic/action/delete.py:312 +#: ckan/logic/action/delete.py:318 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Ištrintas narys: %s" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 msgid "id not in data" msgstr "tokio id nėra duomenyse" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Nepavyko rasti žodyno \"%s\"" -#: ckan/logic/action/delete.py:572 +#: ckan/logic/action/delete.py:578 #, python-format msgid "Could not find tag \"%s\"" msgstr "Nepavyko rasti gairės \"%s\"" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 msgid "You must be logged in to unfollow something." msgstr "Turite prisijungti norėdami nebesekti ko nors." -#: ckan/logic/action/delete.py:613 +#: ckan/logic/action/delete.py:619 msgid "You are not following {0}." msgstr "Jūs jau sekate {0}." -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 msgid "Resource was not found." msgstr "Išteklius nerastas." -#: ckan/logic/action/get.py:2049 +#: ckan/logic/action/get.py:2087 msgid "Do not specify if using \"query\" parameter" msgstr "Nenurodykite ar naudojate \"query\" parametrą" -#: ckan/logic/action/get.py:2058 +#: ckan/logic/action/get.py:2096 msgid "Must be : pair(s)" msgstr "Turi būti : pora(-os)" -#: ckan/logic/action/get.py:2090 +#: ckan/logic/action/get.py:2128 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Laukas \"{field}\" neatpažintas išteklių paieškoje." -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 msgid "Package was not found." msgstr "Paketas nerastas." -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Atnaujinti objektą %s" -#: ckan/logic/action/update.py:380 +#: ckan/logic/action/update.py:401 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Atnaujinti paketo ryšį: %s %s %s" -#: ckan/logic/action/update.py:740 +#: ckan/logic/action/update.py:761 msgid "TaskStatus was not found." msgstr "Užduoties statusas nerastas." -#: ckan/logic/action/update.py:1038 +#: ckan/logic/action/update.py:1059 msgid "Organization was not found." msgstr "Organizacija nerasta." @@ -1496,7 +2093,7 @@ 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:143 ckan/logic/auth/update.py:63 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "Nerasti jokie paketai šiam resursui, nepavyko patikrinti tapatybės." @@ -1528,24 +2125,24 @@ msgstr "" msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:191 +#: ckan/logic/auth/create.py:189 msgid "Group was not found." msgstr "Grupė nerasta." -#: ckan/logic/auth/create.py:211 +#: ckan/logic/auth/create.py:209 msgid "Valid API key needed to create a package" msgstr "Reikalingas tinkamas API raktas, norint sukurti paketą" -#: ckan/logic/auth/create.py:219 +#: ckan/logic/auth/create.py:217 msgid "Valid API key needed to create a group" msgstr "Reikalingas tinkamas API raktas, norint sukurti grupę" -#: ckan/logic/auth/create.py:239 +#: ckan/logic/auth/create.py:237 #, python-format msgid "User %s not authorized to add members" msgstr "Naudotojas %s neturi teisių pridėti nariams" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Naudotojas %s neturi teisių redaguoti grupės %s" @@ -1589,31 +2186,31 @@ msgstr "Naudotojas %s neturi teisių trinti organizacijai %s" msgid "User %s not authorized to delete task_status" msgstr "Naudotojas %s neturi teisių ištrinti užduoties statusui" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 msgid "Not authorized" msgstr "Neturite teisių" -#: ckan/logic/auth/get.py:108 +#: ckan/logic/auth/get.py:109 #, python-format msgid "User %s not authorized to read these packages" msgstr "Naudotojas %s neturi teisių skaityti šių paketų" -#: ckan/logic/auth/get.py:130 +#: 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:149 +#: 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:176 +#: ckan/logic/auth/get.py:170 #, python-format msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:258 +#: ckan/logic/auth/get.py:252 msgid "You must be logged in to access your dashboard." msgstr "Turite būti prisijungęs, kad galėtumėte naudotis savo valdymo pultu." @@ -1647,39 +2244,39 @@ msgstr "Naudotojas %s neturi teisių keisti grupės %s būsenos" 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:189 +#: ckan/logic/auth/update.py:190 msgid "Have to be logged in to edit user" msgstr "" -#: ckan/logic/auth/update.py:197 +#: ckan/logic/auth/update.py:198 #, python-format msgid "User %s not authorized to edit user %s" msgstr "Naudotojas %s neturi teisių redaguoti naudotojo %s" -#: ckan/logic/auth/update.py:208 +#: ckan/logic/auth/update.py:209 msgid "User {0} not authorized to update user {1}" msgstr "" -#: ckan/logic/auth/update.py:216 +#: ckan/logic/auth/update.py:217 #, 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:225 +#: ckan/logic/auth/update.py:226 #, 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:239 +#: ckan/logic/auth/update.py:240 #, python-format msgid "User %s not authorized to update term_translation table" msgstr "Naudotojas %s neturi teisių atnaujinti termų vertimų lentelės" -#: ckan/logic/auth/update.py:261 +#: ckan/logic/auth/update.py:262 msgid "Valid API key needed to edit a package" msgstr "Reikia tinkamo API rakto paketo redagavimui" -#: ckan/logic/auth/update.py:271 +#: ckan/logic/auth/update.py:272 msgid "Valid API key needed to edit a group" msgstr "Reikia tinkamo API rakto grupės redagavimui" @@ -1785,60 +2382,54 @@ msgstr "yra tėvas %s" #: ckan/model/package_relationship.py:61 #, python-format -msgid "has sibling %s" -msgstr "turi brolių %s" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Kraunama..." +msgid "has sibling %s" +msgstr "turi brolių %s" -#: ckan/public/base/javascript/modules/api-info.js:20 +#: ckan/public/base/javascript/modules/api-info.js:96 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:21 +#: ckan/public/base/javascript/modules/api-info.js:124 msgid "Failed to load data API information" msgstr "Nepavyko įkelti duomenų API informacijos" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Atitikmenų nerasta" - -#: ckan/public/base/javascript/modules/autocomplete.js:32 +#: ckan/public/base/javascript/modules/autocomplete.js:195 msgid "Start typing…" msgstr "Pradėkite spausdinti..." -#: ckan/public/base/javascript/modules/autocomplete.js:34 +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Atitikmenų nerasta" + +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, python-format msgid "Input is too short, must be at least one character" -msgstr "Įvestis yra per trumpa, turi būti mažiausiai vienas simbolis" +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 msgid "There are unsaved modifications to this form" msgstr "Yra neišsaugotų redagacijų šioje formoje" -#: ckan/public/base/javascript/modules/confirm-action.js:7 +#: ckan/public/base/javascript/modules/confirm-action.js:97 msgid "Please Confirm Action" msgstr "Prašome patvirtinti veiksmą" -#: ckan/public/base/javascript/modules/confirm-action.js:8 +#: ckan/public/base/javascript/modules/confirm-action.js:100 msgid "Are you sure you want to perform this action?" msgstr "Ar tikrai norite atlikti šį veiksmą?" -#: ckan/public/base/javascript/modules/confirm-action.js:9 +#: ckan/public/base/javascript/modules/confirm-action.js:102 #: ckan/templates/user/new_user_form.html:9 #: ckan/templates/user/perform_reset.html:21 msgid "Confirm" msgstr "Patvirtinti" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 #: ckan/templates/admin/confirm_reset.html:9 #: ckan/templates/group/confirm_delete.html:14 #: ckan/templates/group/confirm_delete_member.html:15 @@ -1849,39 +2440,42 @@ msgstr "Patvirtinti" msgid "Cancel" msgstr "Atšaukti" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Sekti" - -#: ckan/public/base/javascript/modules/follow.js:24 +#: ckan/public/base/javascript/modules/follow.js:69 #: ckan/templates/snippets/follow_button.html:9 msgid "Unfollow" msgstr "Nebesekti" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Nusiųsti" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Sekti" -#: ckan/public/base/javascript/modules/image-upload.js:17 +#: ckan/public/base/javascript/modules/image-upload.js:60 msgid "Link" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:18 +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Nusiųsti" + +#: ckan/public/base/javascript/modules/image-upload.js:72 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 #: ckan/templates/snippets/search_form.html:68 msgid "Remove" msgstr "Pašalinti" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Paveikslėlis" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: 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 @@ -1889,84 +2483,78 @@ msgstr "Paveikslėlis" msgid "URL" msgstr "URL" -#: ckan/public/base/javascript/modules/image-upload.js:21 +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 msgid "File" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 msgid "Save order" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 msgid "Saving..." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 msgid "Upload a file" msgstr "Įkelti failą" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 msgid "An Error Occurred" msgstr "Įvyko klaida" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Išteklius įkeltas" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 msgid "Unable to upload file" msgstr "Nepavyko įkelti failo" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 msgid "Unable to authenticate upload" msgstr "Nepavyko nustatyti siuntinio tapatybės" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Išteklius įkeltas" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 msgid "Unable to get data for uploaded file" msgstr "Nepavyko gauti duomenų iš įkelto failo" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" msgstr "" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" msgstr "" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 #: ckan/templates/organization/bulk_process.html:65 #: ckan/templates/organization/edit.html:3 #: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 +#: ckan/templates/organization/members.html:33 #: ckan/templates/package/edit_base.html:11 #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 +#: ckan/templates/package/snippets/resource_item.html:56 msgid "Edit" msgstr "Redaguoti" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 msgid "Show more" msgstr "Rodyti daugiau" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 msgid "Hide" msgstr "Paslėpti" @@ -2100,19 +2688,19 @@ msgstr "Šiukšlinė" msgid "Are you sure you want to reset the config?" msgstr "Ar tikrai norite atkurti konfigūraciją?" -#: ckan/templates/admin/config.html:17 +#: ckan/templates/admin/config.html:16 msgid "Reset" msgstr "Atkurti" -#: ckan/templates/admin/config.html:18 +#: ckan/templates/admin/config.html:17 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:27 +#: ckan/templates/admin/config.html:26 msgid "CKAN config options" msgstr "CKAN konfigūracijos parinktys" -#: ckan/templates/admin/config.html:34 +#: ckan/templates/admin/config.html:33 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2157,81 +2745,12 @@ msgstr "" msgid "

Purge deleted datasets forever and irreversibly.

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

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." msgstr "Š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:118 +#: ckan/templates/package/resource_read.html:115 #: ckan/templates/package/snippets/resource_view.html:26 msgid "Click here for more information." msgstr "Spauskite čia dėl platesnės informacijos." @@ -2241,12 +2760,6 @@ msgstr "Spauskite čia dėl platesnės informacijos." msgid "Download resource" msgstr "Parsisiųsti išteklių" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Jūsų naršyklė nepalaiko iframe žymių." - #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." msgstr "" @@ -2381,8 +2894,8 @@ msgstr "Ar tikrai norite ištrinti grupę - {name}?" 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/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 @@ -2397,26 +2910,12 @@ msgstr "" msgid "Edit Group" msgstr "Redaguoti grupę" -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 +#: ckan/templates/group/edit_base.html:23 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/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Pasekėjai" - #: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 #: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 msgid "History" @@ -2431,28 +2930,6 @@ msgstr "Pridėti grupę" msgid "Search groups..." msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - #: ckan/templates/group/index.html:29 msgid "There are currently no groups for this site" msgstr "Grupių šiam tinklapiui kol kas nėra" @@ -2474,11 +2951,11 @@ msgid "Edit Member" msgstr "Redaguoti narį" #: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 +#: ckan/templates/group/member_new.html:64 ckan/templates/group/members.html:6 #: ckan/templates/organization/member_new.html:7 #: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 +#: ckan/templates/organization/member_new.html:65 +#: ckan/templates/organization/members.html:8 msgid "Add Member" msgstr "Pridėti narį" @@ -2508,44 +2985,40 @@ msgid "If you wish to invite a new user, enter their email address." msgstr "" #: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 +#: ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 +#: ckan/templates/organization/members.html:20 msgid "Role" msgstr "Vaidmuo" #: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 +#: ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 +#: 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:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 #: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 #: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 #: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 +#: ckan/templates/user/edit_user_form.html:45 msgid "Delete" msgstr "Ištrinti" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Išsaugoti" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 msgid "What are roles?" msgstr "Kas yra vaidmenys?" -#: ckan/templates/group/member_new.html:81 +#: ckan/templates/group/member_new.html:80 msgid "" "

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

Member: Can add/remove " @@ -2565,32 +3038,6 @@ msgstr "Atnaujinti grupę" msgid "Create Group" msgstr "Sukurti grupę" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Paskutinį kartą modifikuotas" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." @@ -2619,14 +3066,6 @@ msgstr "Mano grupė" msgid "my-group" msgstr "mano-grupė" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Aprašymas" - #: ckan/templates/group/snippets/group_form.html:20 msgid "A little information about my group..." msgstr "Truputis informacijos apie mano grupę..." @@ -2635,27 +3074,10 @@ msgstr "Truputis informacijos apie mano grupę..." 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:64 +#: ckan/templates/group/snippets/group_form.html:63 msgid "Save Group" msgstr "Išsaugoti grupę" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} rinkmena" -msgstr[1] "{num} rinkmenos" -msgstr[2] "{num} rinkmenos" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 rinkmenų" - #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 msgid "View {name}" @@ -2822,6 +3244,10 @@ msgstr "" msgid "groups" msgstr "" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -2943,11 +3369,11 @@ msgstr "Naudotojo vardas" msgid "Email address" msgstr "" -#: ckan/templates/organization/member_new.html:62 +#: ckan/templates/organization/member_new.html:61 msgid "Update Member" msgstr "" -#: ckan/templates/organization/member_new.html:82 +#: ckan/templates/organization/member_new.html:81 msgid "" "

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

Editor: Can add and " @@ -2961,6 +3387,13 @@ msgstr "" "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] "" + #: ckan/templates/organization/new.html:3 #: ckan/templates/organization/new.html:5 #: ckan/templates/organization/new.html:7 @@ -3026,12 +3459,12 @@ msgid "" "public and private datasets belonging to this organization." msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:64 +#: ckan/templates/organization/snippets/organization_form.html:63 msgid "Save Organization" msgstr "Išsaugoti organizaciją" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 msgid "View {organization_name}" msgstr "" @@ -3076,7 +3509,7 @@ msgstr "" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 +#: ckan/templates/package/snippets/resource_item.html:32 #: ckan/templates/snippets/datapreview_embed_dialog.html:16 msgid "Preview" msgstr "Peržiūrėti" @@ -3136,7 +3569,7 @@ msgid "" msgstr "" #: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 +#: ckan/templates/package/snippets/resource_form.html:81 msgid "Add" msgstr "Pridėti" @@ -3149,48 +3582,6 @@ msgstr "" "Tai senas rinkmenos poversijis, redaguojant %(timestamp)s. Jis gali stipriai" " skirtis nuo naujausio poversijo." -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Klaida:" - -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" - -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Paskutinį kartą atnaujinta" - -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "" - #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" msgstr "" @@ -3200,15 +3591,11 @@ 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:32 +#: ckan/templates/package/resource_edit_base.html:30 msgid "Edit resource" msgstr "" #: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 msgid "Views" msgstr "" @@ -3217,91 +3604,100 @@ msgid "API Endpoint" msgstr "API stotis" #: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 +#: ckan/templates/package/snippets/resource_item.html:47 msgid "Go to resource" msgstr "" #: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 +#: ckan/templates/package/snippets/resource_item.html:44 msgid "Download" msgstr "Atsisiųsti" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 msgid "URL:" msgstr "URL:" -#: ckan/templates/package/resource_read.html:69 +#: ckan/templates/package/resource_read.html:66 msgid "From the dataset abstract" msgstr "Iš rinkmenos santraukos" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/package/resource_read.html:68 #, python-format msgid "Source: %(dataset)s" msgstr "Šaltinis: %(dataset)s" -#: ckan/templates/package/resource_read.html:112 +#: ckan/templates/package/resource_read.html:109 msgid "There are no views created for this resource yet." msgstr "" -#: ckan/templates/package/resource_read.html:116 +#: ckan/templates/package/resource_read.html:113 msgid "Not seeing the views you were expecting?" msgstr "" -#: ckan/templates/package/resource_read.html:121 +#: ckan/templates/package/resource_read.html:118 msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -#: ckan/templates/package/resource_read.html:123 +#: ckan/templates/package/resource_read.html:120 msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/resource_read.html:124 +#: ckan/templates/package/resource_read.html:121 msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/resource_read.html:125 +#: ckan/templates/package/resource_read.html:122 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" msgstr "" -#: ckan/templates/package/resource_read.html:147 +#: ckan/templates/package/resource_read.html:144 msgid "Additional Information" msgstr "Papildoma informacija" -#: ckan/templates/package/resource_read.html:151 +#: ckan/templates/package/resource_read.html:148 #: ckan/templates/package/snippets/additional_info.html:6 #: ckan/templates/revision/diff.html:43 #: ckan/templates/snippets/additional_info.html:11 msgid "Field" msgstr "Laukas" -#: ckan/templates/package/resource_read.html:152 +#: ckan/templates/package/resource_read.html:149 #: ckan/templates/package/snippets/additional_info.html:7 #: ckan/templates/snippets/additional_info.html:12 msgid "Value" msgstr "Reikšmė" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 msgid "unknown" msgstr "nežinomas" -#: ckan/templates/package/resource_read.html:161 +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:162 #: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Sukurtas" -#: ckan/templates/package/resource_read.html:165 +#: ckan/templates/package/resource_read.html:166 #: ckan/templates/package/snippets/resource_form.html:37 #: ckan/templates/package/snippets/resource_info.html:16 msgid "Format" msgstr "Formatas" -#: ckan/templates/package/resource_read.html:169 +#: ckan/templates/package/resource_read.html:170 #: ckan/templates/package/snippets/package_basic_fields.html:30 #: ckan/templates/snippets/license.html:21 msgid "License" @@ -3319,8 +3715,8 @@ msgstr "" msgid "Add new resource" msgstr "" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" "

This dataset has no data, why not " @@ -3418,10 +3814,6 @@ msgid "" "continue." msgstr "" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Duomenų API" - #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 msgid "Title" @@ -3485,7 +3877,7 @@ msgstr "" 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:44 +#: ckan/templates/package/snippets/package_form.html:43 msgid "Next: Add Data" msgstr "Sekantis: Pridėti duomenis" @@ -3571,15 +3963,15 @@ msgstr "pav. application/json" 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:72 +#: ckan/templates/package/snippets/resource_form.html:71 msgid "Previous" msgstr "Atgal" -#: ckan/templates/package/snippets/resource_form.html:75 +#: ckan/templates/package/snippets/resource_form.html:74 msgid "Save & add another" msgstr "Išsaugoti ir pridėti kitą" -#: ckan/templates/package/snippets/resource_form.html:78 +#: ckan/templates/package/snippets/resource_form.html:77 msgid "Finish" msgstr "Užbaigti" @@ -3593,11 +3985,11 @@ msgstr "" "Išteklius gali būti bet kuris failas ar nuoroda į failą, talpinantį " "naudingus duomenis." -#: ckan/templates/package/snippets/resource_item.html:24 +#: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" msgstr "Naršyti" -#: ckan/templates/package/snippets/resource_item.html:36 +#: ckan/templates/package/snippets/resource_item.html:35 msgid "More information" msgstr "" @@ -3639,7 +4031,7 @@ msgstr "" msgid "Data and Resources" msgstr "Duomenys ir ištekliai" -#: ckan/templates/package/snippets/resources_list.html:29 +#: ckan/templates/package/snippets/resources_list.html:30 msgid "This dataset has no data" msgstr "" @@ -3667,18 +4059,10 @@ msgstr "" msgid "eg. Information about my view" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" msgstr "" @@ -3777,11 +4161,11 @@ msgstr "" msgid "Home" msgstr "Namai" -#: ckan/templates/snippets/language_selector.html:4 +#: ckan/templates/snippets/language_selector.html:3 msgid "Language" msgstr "" -#: ckan/templates/snippets/language_selector.html:12 +#: ckan/templates/snippets/language_selector.html:11 #: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 @@ -3952,7 +4336,7 @@ msgstr "" #: ckan/templates/user/dashboard_datasets.html:19 #: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 #: ckan/templates/user/read.html:16 msgid "Create one now?" msgstr "" @@ -3961,7 +4345,7 @@ msgstr "" msgid "You are not a member of any groups." msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 +#: ckan/templates/user/dashboard_organizations.html:21 msgid "You are not a member of any organizations." msgstr "" @@ -4021,492 +4405,208 @@ msgstr "" msgid "Password" msgstr "Slaptažodis" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:56 -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:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "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:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Ieškoti naudotojų" - -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "" - -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" 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" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" msgstr "" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Ši grupė turi aprašymą" +#: 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" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" msgstr "" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" msgstr "" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." msgstr "" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Pamiršote slaptažodį?" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Atsijungti" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: ckan/templates/user/new.html:6 +msgid "Registration" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Bendras rinkmenų skaičius" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Geriausiai įvertintos rinkmenos" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Vidutinis įvertinimas" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Įvertinimų skaičius" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Nėra įvertinimų" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Dažniausiai redaguotos rinkmenos" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Redagavimų skaičius" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Didžiausios grupės" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Rinkmenų skaičius" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Dažniausios gairės" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" +#: ckan/templates/user/read_base.html:96 +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:6 +msgid "Password reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" +#: 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ų" diff --git a/ckan/i18n/lv/LC_MESSAGES/ckan.mo b/ckan/i18n/lv/LC_MESSAGES/ckan.mo index 05d0c8b15ad..0716c0d3678 100644 Binary files a/ckan/i18n/lv/LC_MESSAGES/ckan.mo and b/ckan/i18n/lv/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/lv/LC_MESSAGES/ckan.po b/ckan/i18n/lv/LC_MESSAGES/ckan.po index 933e3229c2d..342e64f12c2 100644 --- a/ckan/i18n/lv/LC_MESSAGES/ckan.po +++ b/ckan/i18n/lv/LC_MESSAGES/ckan.po @@ -1,4590 +1,4688 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Gatis Zeiris , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Autorizācijas grupa nav atrasta: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Pabeigts" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administrators" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Gaida" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Redaktors" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Iesniedz" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Biedrs" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Kļūda" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Jābūt sistēmas administratoram, lai to pārvaldītu" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Pagaidām nav augšupielādēts" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Lapas nosaukums" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Resurss nav atrasts" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Stils" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Nav tiesību skatīt šo lapu" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Lapas birkas līnija" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Augšupielādēt datu glabātuvē" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Lapas birkas logo" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Augšupielādes kļūda:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Kļūda:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Par lapas tekstu" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Kļūdas izpildes izsekojamība:" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Ievadteksts" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Statuss" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Teksts sākuma lapā" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Pēdējo reizi mainīts" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Pielāgots CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nekad" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Pielāgojams css ievietots lappuses galvenē" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Augšupielādes žurnālieraksts" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Sākumlapa" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detaļas" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Žurnālieraksta beigas" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Datu glabātuve" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Datu glabātuves resurss nav atrasts" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Nevar iztīrīt paketi %s, jo saistītās izmaiņas %s iekļauj neizdzēstas " -"paketes %s" +"Dati bija nederīgi (piemēram: skaitliska vērtība ir ārpus diapazona vai tika" +" ievietots teksta laukā)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Problēmas attīrot izmaiņas %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Nav atrasti \"{0}\" resursi." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Attīrīšana pabeigta" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Lietotājam {0} nav atļauts atjaunināt resursu {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Darbība nav ieviesta." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN datu API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Nav tiesību skatīt šo lapu" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Pieeja liegta" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Sīkāka informācija galvenā CKAN datu API un DataStore dokumentācija ." -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Nav atrasts" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Galapunkts" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Nederīgs pieprasījums" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Darbības nosaukums nav zināms: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Izveidot" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON kļūda: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Atjaunināt / Ievietot" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Slikti pieprasījuma dati: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Vaicājums" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Nevar izveidot šāda tipa vienības sarakstu: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Vaicājums (caur SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Nevar nolasīt šāda tipa vienību: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Vaicājumu izpilde" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Nevar izveidot šāda tipa vienību: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Vaicājumu piemērs (pirmie 5 rezultāti)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Nevar pievienot paketi meklēšanas indeksam" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Vaicājumu piemērs (rezultāti, kas satur \"Jones\")" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Nevar atjaunot šāda tipa ierakstu: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Vaicājumu piemērs (caur SQL apgalvojumu)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Nespēj atjaunot meklēšanas indeksu" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Piemērs: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Nevar izdzēst šāda veida vienību: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Vienkāršs ajax (JSONP) API datu pieprasījums, izmantojot jQuery." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Izmaiņas nav norādītas" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Piemērs: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Nav izmaiņu ar šādu identifikatoru: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" msgstr "" -"Trūkst meklēšanas termins ('since_id=UUID' vai 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Nevarēja nolasīt parametrus: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Apraksts" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Slikts meklēšanas parametrs: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Saglabāt" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Nezināms reģistrs: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Izkropļota qjson vērtība: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Pieprasījuma parametriem ir jābūt json kodētās vārdnīcas formā." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Tēma nav atrasta" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Notiek ielāde..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organizācija nav atrasta" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Datu API" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Nepareizs tēmas tips" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tabula" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organizācijas" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Tēmas" - -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Birkas" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formāti" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licences" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datu kopas viena lapā" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Nav atļauts veikt masu atjaunošanu" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testa iestatījumi" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Nav tiesību izveidot tēmu" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Būtiskums" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Lietotājs %r nav tiesīgs rediģēt %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Viengabalainības kļūda" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Lietotājam %r nav tiesību rediģēt %s autorizācijas" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Pēdējo reizi mainīts" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Nav tiesību dzēst tēmu %s" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Pielāgotie lauki augošā secībā" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organizācija ir izdzēsta." +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Pielāgotie lauki dilstošā secībā" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Tēma ir izdzēsta." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Populārs" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s ir izdzēsta." +#: 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" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Nav tiesību pievienot biedru tēmai %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "pielāgots teksts" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Nav tiesību dzēst tēmas %s biedrus" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Valsts kods" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Tēmas biedrs ir izdzēsta." +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "pielāgots resursa teksts" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Atzīmē divas izmaiņas pirms salīdzināšanas." +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Šis ir netulkots teksts" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "CKAN tēmas izmaiņu vēsture" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Nesenās izmaiņas CKAN tēmā:" +#: 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/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Žurnāla ieraksts:" +#: 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" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Tagad jūs sekojat {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 datu priekšskatījuma rīkam ir daudz spēcīgu iespēju" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Tagad jūs vairs nesekojat {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Sekotāji" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Nav tiesību skatīties sekjotājus %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resursi" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "Šī vietne pašlaik atrodas bezsaistē. Notiek databāzes inicializācija." +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Attēls" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" -"Lūdzu atjaunojiet savu profilu un pievienojiet savu " -"epasta adresi." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Attēla url" -#: ckan/controllers/home.py:83 -#, 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." +#: 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)" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "Nederīgs meklēšanas vaicājums: {error_message}" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Datu pārlūks" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parametrs \"{parameter_name}\" nav vesels skaitlis" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Grafiks" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Datu kopa nav atrasta" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Karte" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Nederīgs izmaiņu formāts: %r" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "kļūda ielādējot skatu" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" msgstr "" -"Datu kopu {package_type} apskate datu formātā {format} netiek atbalstīta " -"(veidnes fails {file} nav atrasts)." -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Nav tiesības lasīt paketi %s" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "CKAN datu kopas izmaiņu vēsture" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Nesenās izmaiņas CKAN datu kopā:" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Nav tiesības izveidot paketi" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filtri" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Nav tiesības rediģēt šo resursu" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Rindas iznesums" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Resurss nav atrasts" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "piem,: 0" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Nav tiesības atjaunot datu kopu" +#: 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" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Nevar atrast datu kopu {id}." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "piem.:100" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Jums ir jāpievieno vismaz viens datu resurss." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Grafika tips" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Kļūda" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupa (ass 1)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Nav tiesību izveidot resursu" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Sērija (ass 2)" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Nav tiesību izveidot resursu šai paketei" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Lauka tips" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Nevar pievienot paketi meklēšanas indeksam." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Latitude lauks" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Nevar atjaunot meklēšanas indeksu." +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Longitude lauks" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Datu kopa ir izdzēsta." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON lauks" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Nav tiesību dzēst paketi %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Automātiskā tuvināšana" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Resurss tika izdzēsts." +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Klastera mārķieri" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Nav tiesību dzēst resursu %s" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Kopējais datu kopu skaits" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Resursa skats nav atrasts" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Datums" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Resursa dati nav atrasti" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Datu kopas kopā" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Lejupielāde nav pieejama" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Datu kopu izmaiņas nedēļā" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Nav tiesību lasīt datu kopu %s" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Visu datu kopu izmaiņas" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Nav tiesību lasīt resursu %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Jaunās datu kopas" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Nav tiesību rediģēt resursu" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Visaugstāk vērtētās datu kopas" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Skats nav atrasts" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Vidējais vērtējums" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Skata tips nav atrasts" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Vērtējumu skaits" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Slikti skata resursa dati " +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Nav vērtējumu" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Resursu skats nav pieejams" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Visvairāk mainītās datu kopas" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Priekšskatījums nav definēts." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Datu kopa" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "CKAN repozitorija izmaiņu vēsture" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Pārmaiņu skaits" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Nesenās izmaiņas CKAN repozitorijā." +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Nemainītas datu kopas" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Ietekmētās datu kopas: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Lielākās tēmas" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Izmaiņas atjaunotas" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Kategorija" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Cits" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Datu kopumu skaits" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Birka nav atrasta" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Nav kategoriju" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Lietotājs nav atrasts" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Populārākās birkas" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Nav tiesību reģistrēties kā lietotājam." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Birkas nosaukums" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Nav tiesību izveidot lietotāju" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Datu kopu skaits" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Nav tiesības dzēst lietotāju ar id \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "Lietotāju biežāk izveidotās datu kopas" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Nav norādīts neviens lietotājs" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Lietotājs" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Nav tiesību rediģēt lietotāju %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Satistikas izvēlne" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profils atjaunots" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Datu kopu kopējais skaits" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Nav tiesību izveidot lietotāju %s" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Teksts" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Nepareizi norādīta \"Captcha\". Lūdzu mēģiniet vēlreiz." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Mājas lapa" -#: ckan/controllers/user.py:265 -#, 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\"" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Tīmekļa vietnes url" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Nav tiesību rediģēt lietotāju." +#: 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/controllers/user.py:320 +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Jūsu pārlūkprogramma neatbalsta iframes." + +#: ckan/authz.py:182 #, python-format -msgid "User %s not authorized to edit %s" -msgstr "Lietotājam %s nav tiesību rediģēt %s" +msgid "Authorization function not found: %s" +msgstr "Autorizācijas grupa nav atrasta: %s" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Ievadītā parole nav pareiza." +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administrators" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Iepriekšējā parole" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Redaktors" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "nederīga parole" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Biedrs" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Autorizācija neveiksmīga. Nepareizs lietotājvārds vai parole." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Jābūt sistēmas administratoram, lai to pārvaldītu" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Nav tiesību lai pieprasītu paroles atjaunošanu." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Lapas nosaukums" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" sakrīt ar citiem lietotājiem" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Stils" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Nav šāda lietotāja: %s" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Lapas birkas līnija" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Lūdzu, pārbaudiet savu iesūtni, lai atstatītu kodu." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Lapas birkas logo" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Neizdevās nosūtīt atiestatīšanas saiti: %s" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Nav tiesību, lai atjaunotu paroli." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Par lapas tekstu" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Nederīga atiestatīšanas atslēga. Lūdzu mēģiniet vēlreiz." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Ievadteksts" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Jūsu parole ir nomainīta." +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Teksts sākuma lapā" -#: ckan/controllers/user.py:562 -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/admin.py:57 +msgid "Custom CSS" +msgstr "Pielāgots CSS" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Jūsu ievadītās paroles nesakrīt." +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Pielāgojams css ievietots lappuses galvenē" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Jums ir jānorāda parole" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Sākumlapa" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Sekošanas vienums nav atrasts" +#: ckan/controllers/admin.py:161 +#, 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/user.py:640 -msgid "{0} not found" -msgstr "{0} nav atrasts" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problēmas attīrot izmaiņas %s: %s" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Viss" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Attīrīšana pabeigta" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Trūkstošā vērtība" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Darbība nav ieviesta." -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Pārvietošanās uz ārēju vietni nav atļauta." +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Pieeja liegta" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} pievienota birka {tag} datu kopai {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Nav atrasts" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} atjaunoja tēmu {group}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Nederīgs pieprasījums" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} atjaunoja organizāciju {organization}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Darbības nosaukums nav zināms: %s" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} atjaunoja datu kopu {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON kļūda: %s" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} mainīja papildinājumu {extra} datu kopai {dataset}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Slikti pieprasījuma dati: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} atjaunoja resursu {resource} datu kopā {dataset}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Nevar izveidot šāda tipa vienības sarakstu: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} atjaunoja savu profilu" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Nevar nolasīt šāda tipa vienību: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} izdzēsa tēmu {group}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Nevar izveidot šāda tipa vienību: %s %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} izdzēsa organizāciju {organization}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Nevar pievienot paketi meklēšanas indeksam" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} izdzēsa datu kopu {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Nevar atjaunot šāda tipa ierakstu: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} izdzēsa papildinājumu {extra} no datu kopas {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Nespēj atjaunot meklēšanas indeksu" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} izdzēsa resursu {resource} no datu kopas {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Nevar izdzēst šāda veida vienību: %s %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} izveidoja tēmu {group}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Izmaiņas nav norādītas" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} izveidoja organizāciju {organization}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Nav izmaiņu ar šādu identifikatoru: %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} izveidoja datu kopu {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "" +"Trūkst meklēšanas termins ('since_id=UUID' vai 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} pievienoja papildinājumu {extra} datu kopai {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Nevarēja nolasīt parametrus: %r" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} pievienoja resursu {resource} datu kopai {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Slikts meklēšanas parametrs: %s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} pieteicās" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Nezināms reģistrs: %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} noņēma birku {tag} no datu kopas {dataset}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Izkropļota qjson vērtība: %r" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} uzsāka sakot {dataset}" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Pieprasījuma parametriem ir jābūt json kodētās vārdnīcas formā." -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} uzsāka sekot {user}" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Kategorija nav atrasta" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} uzsāka sekot {group}" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organizācija nav atrasta" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Skats" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Nepareizs kategorijas tips" -#: 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/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organizācijas" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Janvāris" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Kategorijas" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Februāris" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Birkas" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Marts" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formāti" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Aprīlis" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licences" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Maijs" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Lietotājs %r nav tiesīgs rediģēt %s" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Jūnijs" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Nav atļauts veikt masu atjaunošanu" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Jūlijs" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Nav tiesību izveidot kategoriju" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Augusts" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Viengabalainības kļūda" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Septembris" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Lietotājam %r nav tiesību rediģēt %s autorizācijas" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Oktobris" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nav tiesību dzēst kategoriju %s" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Novembris" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organizācija ir izdzēsta." -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Decembris" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Kategorija ir izdzēsta." -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Pašreiz" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s ir izdzēsta." -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "pirms {mins} minūtēm" -msgstr[1] "pirms {mins} minūtēs" -msgstr[2] "pirms {mins} minūtēm" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "pirms {hours} stundām" -msgstr[1] "pirms {hours} stundas" -msgstr[2] "pirms {hours} stundām" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Nav tiesību pievienot biedru kategorijai %s" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "pirms {days} dienām" -msgstr[1] "pirms {days} dienas" -msgstr[2] "pirms {days} dienām" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Nav tiesību dzēst kategorijas %s biedrus" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "pirms {months} mēnešiem" -msgstr[1] "pirms {months} mēneša" -msgstr[2] "pirms {months} mēnešiem" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Kategorijas biedrs ir izdzēsta." -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "pims {years} gadiem" -msgstr[1] "pims {years} gada" -msgstr[2] "pims {years} gadiem" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Atzīmē divas izmaiņas pirms salīdzināšanas." -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Kategorijas izmaiņu vēsture" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Nesenās izmaiņas kategorijā:" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} baiti" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Žurnāla ieraksts:" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Tagad jūs sekojat {0}" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Tagad jūs vairs nesekojat {0}" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Nav tiesību skatīties sekjotājus %s" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: 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/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Lūdzu atjaunojiet savu profilu un pievienojiet savu " +"epasta adresi." -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "Nederīgs meklēšanas vaicājums: {error_message}" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametrs \"{parameter_name}\" nav vesels skaitlis" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Datu kopa nav atrasta" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Nederīgs izmaiņu formāts: %r" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Nav tiesības lasīt paketi %s" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "CKAN datu kopas izmaiņu vēsture" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Atjaunojiet savu avatāru gravatar.com" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Nesenās izmaiņas CKAN datu kopā:" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Nezināms" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Nav tiesības izveidot paketi" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Nenosaukts resurss" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Nav tiesības rediģēt šo resursu" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Izveidota jauna datu kopa." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Nav tiesības atjaunot datu kopu" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Rediģētie resursi." +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Nevar atrast datu kopu {id}." -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Rediģētie iestatījumi." +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Jums ir jāpievieno vismaz viens datu resurss." -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} skatījumi" -msgstr[1] "{number} skatījumi" -msgstr[2] "{number} skatījums" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Nav tiesību izveidot resursu" -#: ckan/lib/helpers.py:1618 -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/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Nav tiesību izveidot resursu šai paketei" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Nevar pievienot paketi meklēšanas indeksam." -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Nav pieejama saņēmēja epasta adrese!" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Nevar atjaunot meklēšanas indeksu." -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organizācija" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Datu kopa ir izdzēsta." -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "tēma" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Nav tiesību dzēst paketi %s" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Trūkstoša vērtība" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Resurss tika izdzēsts." -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1052 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "Ievades lauks %(name)s netika gaidīts." +msgid "Unauthorized to delete resource %s" +msgstr "Nav tiesību dzēst resursu %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Lūdzu ievadiet veselu skaitli" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Resursa skats nav atrasts" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Resursi" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Resursa dati nav atrasti" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Paketes resurss(i) ir nederīgi" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Lejupielāde nav pieejama" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Papildinājumi" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Nav tiesību lasīt datu kopu %s" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1404 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Birkas vārdnīca \"%s\" neekistē" +msgid "Unauthorized to read resource %s" +msgstr "Nav tiesību lasīt resursu %s" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Lietotājs" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Nav tiesību rediģēt resursu" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Datu kopa" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Skats nav atrasts" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Tēma" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Skata tips nav atrasts" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Neizdevās parsēt kā derīgu JSON" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Slikti skata resursa dati " -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "Nepieciešams norādīt organizāciju" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Resursu skats nav pieejams" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organizācija neekistē" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Priekšskatījums nav definēts." -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Jūs nevarat pievienot datu kopu šai organizācijai" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "CKAN repozitorija izmaiņu vēsture" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Nederīgs vesels skaitlis" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Nesenās izmaiņas CKAN repozitorijā." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Jābūt naturālam skaitlim" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Ietekmētās datu kopas: %s.\n" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Jābūt pozitīvam veselam skaitlim" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Izmaiņas atjaunotas" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Nederīgs datuma formāts" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Cits" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Saites nav atļautas log_message." +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Birka nav atrasta" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Datu kopas id jau eksistē" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Nav tiesību reģistrēties kā lietotājam." -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Resurss" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Nav tiesību izveidot lietotāju" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Tēmas nosaukums vai ID neeksistē." +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Nav tiesības dzēst lietotāju ar id \"{user_id}\"." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Darbības tips" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Nav norādīts neviens lietotājs" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Nosaukumiem jābūt tekstam" +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Nav tiesību rediģēt lietotāju %s" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Šāds nosaukums nevar tikt izmantots" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Lietotājs nav atrasts" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "Jābūt vismaz %s simbolus garam" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profils atjaunots" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Nosaukumam jābūt maksimāli %i simbolus garam" +msgid "Unauthorized to create user %s" +msgstr "Nav tiesību izveidot lietotāju %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Nepareizi norādīta \"Captcha\". Lūdzu mēģiniet vēlreiz." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Jābūt tikai mazo burtu un ciparu (ASCII) simboliem un šādiem simboliem: -_" +"Lietotājs \"%s\" ir reģistrēts, bet joprojām lietotājs pieteicies sistēmā ar" +" iepriekšējo lietotāju \"%s\"" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Šāds URL jau tiek izmantots" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Nav tiesību rediģēt lietotāju." -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Nosaukuma \"%s\" garums ir mazāks par minimālo garumu %s" +msgid "User %s not authorized to edit %s" +msgstr "Lietotājam %s nav tiesību rediģēt %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Nosaukuma \"%s\" garums ir lielāks par maksimālo garumu %s" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Ievadītā parole nav pareiza." -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Versijas garumam jabūt vismaz %i simbolus garam" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Iepriekšējā parole" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Atslēgas dublikāts \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "nederīga parole" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Šāds tēmas nosaukums jau eksistē datubāzē" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Autorizācija neveiksmīga. Nepareizs lietotājvārds vai parole." -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Birkas \"%s\" garums ir mazāks par minimālo garumu %s" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Nav tiesību lai pieprasītu paroles atjaunošanu." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Birkas \"%s\" garums ir lielāks par maksimālo garumu %i" +msgid "\"%s\" matched several users" +msgstr "\"%s\" sakrīt ar citiem lietotājiem" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "Birka \"%s\" var saturēt burtu un ciparu simbolus vai simbolus: -_." +msgid "No such user: %s" +msgstr "Nav šāda lietotāja: %s" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Birka \"%s\" nevar būt ar lielajiem burtiem" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Lūdzu, pārbaudiet savu iesūtni, lai atstatītu kodu." -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Lietotājvārdiem jābūt tekstam" +#: ckan/controllers/user.py:503 +#, python-format +msgid "Could not send reset link: %s" +msgstr "Neizdevās nosūtīt atiestatīšanas saiti: %s" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Šis lietotājvārds nav pieejams." +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Nav tiesību, lai atjaunotu paroli." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Lūdzu ievadiet abas paroles" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Nederīga atiestatīšanas atslēga. Lūdzu mēģiniet vēlreiz." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Parolēm jābūt tekstam" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Jūsu parole ir nomainīta." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" +#: ckan/controllers/user.py:562 +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/logic/validators.py:589 -msgid "The passwords you entered do not match" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." msgstr "Jūsu ievadītās paroles nesakrīt." -#: ckan/logic/validators.py:610 -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/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Jums ir jānorāda parole" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Nosaukumam jābūt vismaz %s simbolus garam" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Sekošanas vienums nav atrasts" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Šāds vārdnīcas teksts jau tiek izmantots." +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} nav atrasts" -#: ckan/logic/validators.py:633 -#, 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/controllers/user.py:654 +msgid "Everything" +msgstr "Viss" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Birku vārdnīca nav atrasta" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Trūkstošā vērtība" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Birka %s nepieder vārdnīcai %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Pārvietošanās uz ārēju vietni nav atļauta." -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Nav birkas nosaukuma" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} pievienota birka {tag} datu kopai {dataset}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Birka %s jau pieder vārdnīcai %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} atjaunoja kategoriju {group}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Lūdzu norādiet derīgu URL" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} atjaunoja organizāciju {organization}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "loma neeksistē." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} atjaunoja datu kopu {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Datu kopa bez organizācijas nevar būt privāta." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} mainīja papildinājumu {extra} datu kopai {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Nav saraksts" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} atjaunoja resursu {resource} datu kopā {dataset}" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Nav teksts" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} atjaunoja savu profilu" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Šāds vienības vecāks radīs cilpu hierarhijā" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} izdzēsa kategoriju {group}" -#: ckan/logic/validators.py:791 -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/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} izdzēsa organizāciju {organization}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" ir nepieciešamas, ja \"filter_values\" ir aizpildītas" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} izdzēsa datu kopu {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" ir nepieciešamas, ja \"filter_fields\" ir aizpildītas" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} izdzēsa papildinājumu {extra} no datu kopas {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Pastāv shēmas lauks ar tādu pašu nosaukumu" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} izdzēsa resursu {resource} no datu kopas {dataset}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Izveidot objektu %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} izveidoja kategoriju {group}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Izveidot paketes attiecības: %s %s %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} izveidoja organizāciju {organization}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Izveidot biedra objektu %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} izveidoja datu kopu {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Mēģina izveidot organizāciju kā tēmu" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} pievienoja papildinājumu {extra} datu kopai {dataset}" -#: ckan/logic/action/create.py:881 -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/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} pievienoja resursu {resource} datu kopai {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Jums ir jānorāda vērtējums (parametrs \"vērtējums\")." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} pieteicās" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Vērtējumam jābūt ciparam." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} noņēma birku {tag} no datu kopas {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Vērtējumam jābūt starp %i un %i." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} uzsāka sakot {dataset}" -#: ckan/logic/action/create.py:1052 -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/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} uzsāka sekot {user}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Jums jābūt autorizētam, lai sekotu lietotājam" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} uzsāka sekot {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Jūs nevarat sekot pats sev" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Skats" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Jūs jau sekojat {0}" +#: 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/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Jums jābūt autorizētam, lai sekotu datu kopai." +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Janvāris" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Lietotājs {username} neeksistē." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Februāris" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Jums jābūt autorizētam, lai sekotu tēmai." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Marts" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "Dzēst lietotāju: {0}" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Aprīlis" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Izdzēst paketi: %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Maijs" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Dzēst %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Jūnijs" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Dzēst biedru: %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Jūlijs" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id nav datos" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Augusts" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Nav iespējams atrast vārdnīcu \"%s\"" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Septembris" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Nav iespējams atrast birku \"%s\"" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Oktobris" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Jums jābūt autorizētam, lai atspējotu sekošanu." +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Novembris" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Jūs nesekojat {0}." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Decembris" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Resurss netika atrasts." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Pašreiz" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Nav jānorāda, ja tiek izmantots \"vaicājuma\" parametrs" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "pirms {mins} minūtēm" +msgstr[1] "pirms {mins} minūtēs" +msgstr[2] "pirms {mins} minūtēm" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Jābūt : pāris(i)" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "pirms {hours} stundām" +msgstr[1] "pirms {hours} stundas" +msgstr[2] "pirms {hours} stundām" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Lauks \"{field}\" nav atpazīts resource_search." +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "pirms {days} dienām" +msgstr[1] "pirms {days} dienas" +msgstr[2] "pirms {days} dienām" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Pakete nav atrasta." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "pirms {months} mēnešiem" +msgstr[1] "pirms {months} mēneša" +msgstr[2] "pirms {months} mēnešiem" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Atjaunot objektu %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "pims {years} gadiem" +msgstr[1] "pims {years} gada" +msgstr[2] "pims {years} gadiem" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Atjaunot pakešu attiecības: %s %s %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "Uzdevuma statuss nav atrasts." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organizācija nav atrasta." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} baiti" -#: 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/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Lietotājam %s nav tiesības lai rediģētu šīs tēmas" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: 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/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "Pakete šim resursam nav atrasta, nav iespējams pārbaudīt īstumu." +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: 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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "Lietotājs %s nav tiesīgs veidot tēmas" +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Nav tiesību veidot lietotājus" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Tēma netika atrasta." +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Nepieciešama derīga API atslēga, lai izveidotu paketi" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Nepieciešama derīga API atslēga, lai izveidotu tēmu" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Atjaunojiet savu avatāru gravatar.com" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Lietotājs %s nav tiesīgs pievienot biedrus" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Nezināms" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Lietotājam %s nav tiesību rediģēt tēmu %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Nenosaukts resurss" -#: 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/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Izveidota jauna datu kopa." -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "Resursu skats netika atrasts. Nav iespējams pārbaudīt īstenumu." +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Rediģētie resursi." -#: 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/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Rediģētie iestatījumi." -#: 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 tēmas" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} skatījumi" +msgstr[1] "{number} skatījumi" +msgstr[2] "{number} skatījums" -#: 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 tēmu %s" +#: ckan/lib/helpers.py:1650 +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/logic/auth/delete.py:103 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organizations" -msgstr "Lietotājs %s nav tiesīgs dzēst organizācijas" +msgid "%s <%s>" +msgstr "%s <%s>" -#: 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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Nav pieejama saņēmēja epasta adrese!" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizācija" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Nav tiesību" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "kategorija" -#: 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/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Trūkstoša vērtība" -#: ckan/logic/auth/get.py:130 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read package %s" -msgstr "Lietotājs %s nav tiesīgs lasīt paketi %s" +msgid "The input field %(name)s was not expected." +msgstr "Ievades lauks %(name)s netika gaidīts." -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Lietotājs %s nav tiesīgs lasīt resursu %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Lūdzu ievadiet veselu skaitli" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "Lietotājs %s nav tiesīgs lasīt tēmu %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "Jums jābūt autorizētam, lai piekļūtu savai darbavirsmai" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Paketes resurss(i) ir nederīgi" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "Lietotājs %s nav tiesīgs rediģēt paketi %s" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Papildinājumi" -#: ckan/logic/auth/update.py:71 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Lietotājam %s nav tiesību rediģēt resursu %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Birkas vārdnīca \"%s\" neekistē" -#: ckan/logic/auth/update.py:100 -#, 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/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Neizdevās parsēt kā derīgu JSON" -#: ckan/logic/auth/update.py:128 -#, 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/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "Nepieciešams norādīt organizāciju" -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "Lietotājs %s nav tiesīgs mainīt tēmas %s stāvokli" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Organizācija neekistē" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "Lietotājam %s nav tiesību rediģēt tēmas %s tiesības" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Jūs nevarat pievienot datu kopu šai organizācijai" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Jums jābūt autorizētam, lai rediģēt lietotāju" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Nederīgs vesels skaitlis" -#: ckan/logic/auth/update.py:197 -#, 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/validators.py:97 +msgid "Must be a natural number" +msgstr "Jābūt naturālam skaitlim" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "Lietotājs {0} nav tiesīgs atjaunot lietotāju {1}" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Jābūt pozitīvam veselam skaitlim" -#: ckan/logic/auth/update.py:216 -#, 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/validators.py:130 +msgid "Date format incorrect" +msgstr "Nederīgs datuma formāts" -#: ckan/logic/auth/update.py:225 -#, 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/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Saites nav atļautas log_message." -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "Lietotājs %s nav tiesīgs atjaunot term_translation tabulu" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Datu kopas id jau eksistē" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Nepieciešama derīga API atslēga, lai rediģētu paketi" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Resurss" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Nepieciešama derīga API atslēga, lai rediģētu tēmu" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Kategorijas nosaukums vai ID neeksistē." -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Nav norādīta licence" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Darbības tips" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Nosaukumiem jābūt tekstam" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Šāds nosaukums nevar tikt izmantots" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Jābūt vismaz %s simbolus garam" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" - -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" - -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" - -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Cita (Atvērta)" - -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Cita (Publiskais sektors)" - -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Cita (Attiecinājums)" - -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" - -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Jebkura)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Nosaukumam jābūt maksimāli %i simbolus garam" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Cita (Nekomerciāla)" +#: ckan/logic/validators.py:343 +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/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Cita (Nav atvērta)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Šāds URL jau tiek izmantots" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "atkarīgs no %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Nosaukuma \"%s\" garums ir mazāks par minimālo garumu %s" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "ir atkarība no %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Nosaukuma \"%s\" garums ir lielāks par maksimālo garumu %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "izriet no %s" +msgid "Version must be a maximum of %i characters long" +msgstr "Versijas garumam jabūt vismaz %i simbolus garam" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "ir atvasinājums %s" +msgid "Duplicate key \"%s\"" +msgstr "Atslēgas dublikāts \"%s\"" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "saite uz %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Šāds kategorijas nosaukums jau eksistē datubāzē" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "ir saistīta no %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Birkas \"%s\" garums ir mazāks par minimālo garumu %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "ir bērns no %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Birkas \"%s\" garums ir lielāks par maksimālo garumu %i" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "ir vecāks no %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Birka \"%s\" var saturēt burtu un ciparu simbolus vai simbolus: -_." -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "ir brālis %s" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Notiek ielāde..." +msgid "Tag \"%s\" must not be uppercase" +msgstr "Birka \"%s\" nevar būt ar lielajiem burtiem" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Nav API datu, lai ielādētu šo resursu" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Lietotājvārdiem jābūt tekstam" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Neizdevās ielādēt API datu informāciju" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Šis lietotājvārds nav pieejams." -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Nav atrastas sakritības" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Lūdzu ievadiet abas paroles" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Sāciet rakstīt ..." +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Parolēm jābūt tekstam" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Ievadītais teksts ir pārāk īss, jābūt vismaz vienam simbolam" +#: ckan/logic/validators.py:582 +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/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Šajā formā ir nesaglabātas izmaiņas" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Jūsu ievadītās paroles nesakrīt." -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Lūdzu, apstipriniet darbību" +#: ckan/logic/validators.py:611 +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/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Vai esat pārliecināts, ka vēlaties veikt šo darbību?" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Nosaukumam jābūt vismaz %s simbolus garam" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Apstiprināt" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Šāds vārdnīcas teksts jau tiek izmantots." -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Atcelt" +#: ckan/logic/validators.py:634 +#, 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/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Sekot" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Birku vārdnīca nav atrasta" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Atspējot sekošanu" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Birka %s nepieder vārdnīcai %s" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Augšuplādēt" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Nav birkas nosaukuma" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Saite" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Birka %s jau pieder vārdnīcai %s" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Dzēst" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Lūdzu norādiet derīgu URL" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Attēls" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "loma neeksistē." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Datu kopa bez organizācijas nevar būt privāta." -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Fails" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Nav saraksts" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Augšupielādēt failu uz jūsu datora" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Nav teksts" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Šāds vienības vecāks radīs cilpu hierarhijā" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Pārkārtot resursus" +#: ckan/logic/validators.py:792 +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/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Saglabāt secību" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" ir nepieciešamas, ja \"filter_values\" ir aizpildītas" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Saglabā..." +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" ir nepieciešamas, ja \"filter_fields\" ir aizpildītas" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Augšupielādēt failu " +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Pastāv shēmas lauks ar tādu pašu nosaukumu" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Notika kļūda" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Resurss augšupielādēts" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Izveidot objektu %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Nevar augšupielādēt failu" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Izveidot paketes attiecības: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Neizdevās autentificēt augšupielādi" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Izveidot biedra objektu %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Nevar iegūt datus par augšupielādēto failu" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Mēģina izveidot organizāciju kā kategoriju" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -"Jūs augšupielādējat failu. Vai tiešām vēlaties doties prom, un apturēt šo " -"augšupielādi?" +"Jums ir jānorāda paketes identifikators vai nosaukums (rādītājs \"pakete\")." -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Pārkārtot resursa skatu" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Jums ir jānorāda vērtējums (parametrs \"vērtējums\")." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Rediģēt" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Rādīt vairāk" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Slēpt" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Vērtējumam jābūt ciparam." -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/action/create.py:905 #, python-format -msgid "Error %(error_code)s" -msgstr "Kļuda %(error_code)s" - -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Par {0}" +msgid "Rating must be between %i and %i." +msgstr "Vērtējumam jābūt starp %i un %i." -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1064 +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/templates/footer.html:16 -msgid "CKAN Association" -msgstr "CKAN asociācija" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Jums jābūt autorizētam, lai sekotu lietotājam" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Jūs nevarat sekot pats sev" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Sistēmas administratora iestatījumi" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Jūs jau sekojat {0}" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Skatīt profilu" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Jums jābūt autorizētam, lai sekotu datu kopai." -#: ckan/templates/header.html:26 -#, 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/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Lietotājs {username} neeksistē." -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Darbavirsma" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Jums jābūt autorizētam, lai sekotu kategorijai." -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Rediģēt iestatījumus" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "Dzēst lietotāju: {0}" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Iestatījumi" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Izdzēst paketi: %s" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Iziet" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Dzēst %s" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Pieslēgties" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Dzēst biedru: %s" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Reģistrēties" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id nav datos" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Datu kopas" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Nav iespējams atrast vārdnīcu \"%s\"" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Meklēt datu kopas" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Nav iespējams atrast birku \"%s\"" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Meklēt" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Jums jābūt autorizētam, lai atspējotu sekošanu." -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Pāriet uz saturu" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Jūs nesekojat {0}." -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Ielādēt mazāk" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Resurss netika atrasts." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Ielādēt vairāk" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Nav jānorāda, ja tiek izmantots \"vaicājuma\" parametrs" -#: 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/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Jābūt : pāris(i)" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administrācija" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Lauks \"{field}\" nav atpazīts resource_search." -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Sistēmas administrators" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Pakete nav atrasta." -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Konfigurācija" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Atjaunot objektu %s" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Atkritne" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Atjaunot pakešu attiecības: %s %s %s" -#: ckan/templates/admin/config.html:16 -#: 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/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "Uzdevuma statuss nav atrasts." -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Atiestatīt" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organizācija nav atrasta." -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Atjaunot iestatījumus" +#: 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/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN iestatījumu iespējas" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Lietotājam %s nav tiesības lai rediģētu šīs kategorijas" -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:38 #, 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.

" +msgid "User %s not authorized to add dataset to this organization" 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ā.

" +"Lietotājam %s nav tiesību, lai pievienotu datu kopas šai organizācijai" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Apstiprināt atiestatīšanu" +#: 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/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Administrēt CKAN" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "Pakete šim resursam nav atrasta, nav iespējams pārbaudīt īstumu." -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:76 #, 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 " +msgid "User %s not authorized to create resources on dataset %s" +msgstr "Lietotājam %s nav tiesību izveidot resursu datu kopai %s" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Tīrīt" +#: 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/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "

Iztīrīt dzēstās datu kopas neatgriezeniski

" +#: 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/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN datu API" +#: 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/templates/ajax_snippets/api_info.html:23 -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" +#: 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/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" -"Sīkāka informācija galvenā CKAN datu API un DataStore dokumentācija ." +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Nav tiesību veidot lietotājus" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Galapunkts" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Kategorija netika atrasta." -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "Data API var piekļūt, izmantojot sekojošas CKAN API darbības." +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Nepieciešama derīga API atslēga, lai izveidotu paketi" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Izveidot" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Nepieciešama derīga API atslēga, lai izveidotu kategoriju" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Atjaunināt / Ievietot" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Lietotājs %s nav tiesīgs pievienot biedrus" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Vaicājums" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Lietotājam %s nav tiesību rediģēt kategoriju %s" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Vaicājums (caur SQL)" +#: 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Vaicājumu izpilde" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "Resursu skats netika atrasts. Nav iespējams pārbaudīt īstenumu." -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Vaicājumu piemērs (pirmie 5 rezultāti)" +#: 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Vaicājumu piemērs (rezultāti, kas satur \"Jones\")" +#: 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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Vaicājumu piemērs (caur SQL apgalvojumu)" +#: 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/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Piemērs: Javascript" +#: 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/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." +#: 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/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Piemērs: Python" +#: 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/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/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Nav tiesību" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Nospiediet šeit, lai iegūtu vairāk informācijas." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Lietotājs %s nav tiesīgs lasīt šīs paketes" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Lejupielādēt resursu" +#: 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/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Jūsu pārlūkprogramma neatbalsta iframes." +#: 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/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Priekšskatījums nav pieejams." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Lietotājs %s nav tiesīgs lasīt kategoriju %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Skatīt vairāk..." +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Jums jābūt autorizētam, lai piekļūtu savai darbavirsmai" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:39 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Nav definēts apdarinātājs datu tipam :%(type)s." +msgid "User %s not authorized to edit package %s" +msgstr "Lietotājs %s nav tiesīgs rediģēt paketi %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Standarts" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Lietotājam %s nav tiesību rediģēt resursu %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Standarta ievade" +#: ckan/logic/auth/update.py:100 +#, 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/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Vidējs" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Lietotājs %s nav tiesīgs rediģēt organizāciju %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Vidējs ievades platums" +#: ckan/logic/auth/update.py:145 +#, 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/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Pilns" +#: ckan/logic/auth/update.py:162 +#, 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/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Pilns ievades platums" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Jums jābūt autorizētam, lai rediģēt lietotāju" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Liels" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Lietotājam %s nav tiesību rediģēt lietotāju %s" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Liels ievades lauks" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "Lietotājs {0} nav tiesīgs atjaunot lietotāju {1}" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Pievienot sākumā" +#: ckan/logic/auth/update.py:217 +#, 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/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Pievienot sākumā" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Lietotājs %s nav tiesīgs atjaunot task_status tabulu" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Pielāgots lauks (tukšs)" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Lietotājs %s nav tiesīgs atjaunot term_translation tabulu" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Pielāgots lauks" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Nepieciešama derīga API atslēga, lai rediģētu paketi" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Atzīmēt" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Nepieciešama derīga API atslēga, lai rediģētu kategoriju" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Teksta aprakstošais lauks" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Nav norādīta licence" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Iezīmēt" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Darbību plūsma" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: 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:7 -msgid "Add a Group" -msgstr "Pievienot tēmu" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Tēmas forma" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: 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/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: 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 tēmu - {name}?" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: 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/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Pārvaldīt" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Cita (Atvērta)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Rediģēt tēmu" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Cita (Publiskais sektors)" -#: 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/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Cita (Attiecinājums)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Sekotāji" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Vēsture" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Jebkura)" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Pievienot tēmu" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Cita (Nekomerciāla)" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Meklē tēmas..." +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Cita (Nav atvērta)" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Nosaukums augošā secībā" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "atkarīgs no %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Nosaukums dilstošā secībā" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "ir atkarība no %s" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "Pašlaik nav tēmas šajā vietnē" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "izriet no %s" -#: 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/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "ir atvasinājums %s" -#: 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/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "saite uz %s" -#: 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/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "ir saistīta no %s" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Pievienot biedru" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "ir bērns no %s" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Eksistējošs lietotājs" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "ir vecāks no %s" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Ja vēlaties pievienot esošu lietotāju, meklējiet tā lietotājvārdu zemāk." +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "ir brālis %s" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "vai" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Nav API datu, lai ielādētu šo resursu" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Jauns lietotājs" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Neizdevās ielādēt API datu informāciju" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "Ja vēlaties uzaicināt jaunu lietotāju, ievadiet tā epasta adresi." +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Sāciet rakstīt ..." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Loma" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Nav atrastas sakritības" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Vai tiešām vēlaties dzēst šo biedru?" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Dzēst" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Šajā formā ir nesaglabātas izmaiņas" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Saglabāt" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Lūdzu, apstipriniet darbību" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Kas ir lomas?" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Vai esat pārliecināts, ka vēlaties veikt šo darbību?" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

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

Biedrs. Var " -"pievienot/noņemt datu kopas no grupām " +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Apstiprināt" -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" -msgstr "Izveidot tēmu" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Atjaunot tēmu" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Atspējot sekošanu" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Izveidot tēmu" - -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Būtiskums" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Pēdējo reizi mainīts" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Populārs" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Sekot" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Meklē datu kopas..." +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Saite" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Datu kopas tēmā: {group}" +#: ckan/public/base/javascript/modules/image-upload.js:61 +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/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Nesenā izmaiņu vēsture" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Augšuplādēt" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Nosaukums" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Dzēst" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Mana tēma" +#: ckan/public/base/javascript/modules/image-upload.js:87 +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:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "my-group" +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Apraksts" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Fails" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Nedaudz informācijas par manu tēmu..." +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Saglabāt secību" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Vai tiešām vēlaties dzēst šo tēmu?" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Saglabā..." -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Saglabāt tēmu" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Augšupielādēt failu " -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} Datu kopas" -msgstr[1] "{num} Datu kopa" -msgstr[2] "{num} Datu kopas" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Notika kļūda" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Datu kopas" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Nevar augšupielādēt failu" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Sakatīt {name}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Neizdevās autentificēt augšupielādi" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Noņemt datu kopu no šīs tēmas" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Resurss augšupielādēts" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Kas ir tēmas?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Nevar iegūt datus par augšupielādēto failu" -#: ckan/templates/group/snippets/helper.html:8 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 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. " +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" msgstr "" -"Jūs varat izmantot CKAN tēmas, lai izveidotu un pārvaldītu kolekcijas datu " -"kopām. Tās var būt katalogu datu kopas 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/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Salīdzināt" +"Jūs augšupielādējat failu. Vai tiešām vēlaties doties prom, un apturēt šo " +"augšupielādi?" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Dzēsts" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Pievienot filtru" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "lasīt vairāk" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Izmaiņas" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Rediģēt" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Datums un laiks" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Rādīt vairāk" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Autors" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Slēpt" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Žurnāla ieraksts" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Kļuda %(error_code)s" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Laipni lūgti" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Par {0}" -#: 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/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Laipni lūgti CKAN" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN asociācija" -#: ckan/templates/home/snippets/promoted.html:10 +#: ckan/templates/footer.html:24 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 " +"Powered by CKAN" 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" +"Powered by CKAN" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "Piem. vide" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Sistēmas administratora iestatījumi" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Meklēt datus" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Skatīt profilu" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Populāras birkas" +#: ckan/templates/header.html:26 +#, 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/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} statistika" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Darbavirsma" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "datu kopa" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Rediģēt iestatījumus" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "datu kopas" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Iestatījumi" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organizācijas" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Iziet" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "tēmas" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Pieslēgties" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/header.html:58 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:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Datu kopas" + +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Meklēt datu kopas" + +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Meklēt" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Pāriet uz saturu" + +#: 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:29 +msgid "Trash" +msgstr "Atkritne" + +#: ckan/templates/admin/config.html:16 +#: 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:16 +msgid "Reset" +msgstr "Atiestatīt" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Atjaunot iestatījumus" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN iestatījumu iespējas" + +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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 "" -"Šeit jūs varat izmantot samazināto formatējumu" +"

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/macros/form.html:265 -msgid "This field is required" -msgstr "Šis lauks ir obligāts" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Apstiprināt atiestatīšanu" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Pielāgots" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrēt CKAN" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Forma satur nederīgus ierakstus" +#: 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/macros/form.html:395 -msgid "Required field" -msgstr "Obligātais lauks" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Tīrīt" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "

Iztīrīt dzēstās datu kopas neatgriezeniski

" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "Attēla URL" +#: 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/macros/form.html:424 -msgid "Clear Upload" -msgstr "Attīrīt augšupielādi" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Nospiediet šeit, lai iegūtu vairāk informācijas." -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Organizācijas forma" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Lejupielādēt resursu" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Rediģēt datu kopu" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Priekšskatījums nav pieejams." -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Pievienot datu kopu" +#: 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/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "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:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "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:7 +msgid "Add a Group" +msgstr "Pievienot kategoriju" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Kategorijas forma" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "meklējot \"{query}\" tika atrasts" +#: 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/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Atvainojiet, netika atrasta neviena datu kopa meklējot \"{query}\"" +#: 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/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Padarīt pieejamu publiski" +#: 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/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Padarīt pieejamu privāti" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Pārvaldīt" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Sagatave" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Rediģēt kategoriju" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Privāts" +#: ckan/templates/group/edit_base.html:23 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/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Šai organizācija nav datu kopas, kas saistītas ar to" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Vēsture" -#: 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/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Pievienot kategoriju" -#: 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/group/index.html:20 +msgid "Search groups..." +msgstr "Meklē kategorijas..." -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Pievienot organizāciju" +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Pašlaik nav kategorijas šajā vietnē" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "Meklē organizācijas..." +#: 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/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "Pašlaik nav organizācijas, šajā vietnē" +#: 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/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Lietotājvārds" +#: 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/organization/member_new.html:50 -msgid "Email address" -msgstr "Epasta adrese" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Pievienot biedru" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "Atjaunot biedru" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Eksistējošs lietotājs" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"

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.

" +"Ja vēlaties pievienot esošu lietotāju, meklējiet tā lietotājvārdu zemāk." -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Izveidot organizāciju" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "vai" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Atjaunot organizāciju" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Jauns lietotājs" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Izveidot organizāciju" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Ja vēlaties uzaicināt jaunu lietotāju, ievadiet tā epasta adresi." -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Pievienot datu kopu" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Loma" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Datu kopas organizācijā: {group}" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Kas ir organizācijas?" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Dzēst" -#: 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/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Kas ir lomas?" -#: ckan/templates/organization/snippets/helper.html:8 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

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

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/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "my-organization" +#: 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/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Nedaudz informācijas par manu organizāciju ..." +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Atjaunot kategoriju" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" -"Vai tiešām vēlaties dzēst šo organizāciju? Tas izdzēsīs visas publiskās un " -"privātās datu kopas, kas pieder šai organizācijai." +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Izveidot kategoriju" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Saglabāt organizāciju" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Meklē datu kopas..." -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Skatīt {organization_name}" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Datu kopas kategorija: {group}" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Izveidot datu kopu" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Nesenā izmaiņu vēsture" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Kas ir datu kopas?" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Nosaukums" -#: 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/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Mana kategorija" -#: 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/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "my-group" -#: 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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Nedaudz informācijas par manu kategoriju..." -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Skatīt datu kopu" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Vai tiešām vēlaties dzēst šo kategoriju?" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Rediģēt metadatus" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Saglabāt kategoriju" -#: 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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Sakatīt {name}" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Priekšskats" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Noņemt datu kopu no šīs kategorijas" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Atjaunot" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Kas ir kategorija?" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Saistīt šo tēmu ar šo datu kopu" +#: 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/package/group_list.html:14 -msgid "Add to group" -msgstr "Pievienot tēmai" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Salīdzināt" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "Nav tēmas, kas saistītas ar šo datu kopu" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Dzēsts" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Atjaunot datu kopu" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "lasīt vairāk" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Pievienot datus datu kopai" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Izmaiņas" -#: 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/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Datums un laiks" -#: 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/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Autors" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Jauns resurss" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Žurnāla ieraksts" -#: 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/home/index.html:4 +msgid "Welcome" +msgstr "Laipni lūgti" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/home/snippets/about_text.html:1 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"

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 "" -"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 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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Pievienot" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Laipni lūgti CKAN" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"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 "" -"Šīs ir vecas datu kopas izmaiņas, kas tika rediģētas %(timestamp)s. Tās var " -"būtiski atšķirties no pašreizējām izmaiņām." - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Augšupielādēt datu glabātuvē" +"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/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Augšupielādes kļūda:" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Šī ir iespēju sadaļa" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Kļūda:" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Piem. vide" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "Kļūdas izpildes izsekojamība:" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Meklēt datus" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Statuss" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Populāras birkas" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Pēdējo reizi mainīts" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistika" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Nekad" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "datu kopa" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Augšupielādes žurnālieraksts" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datu kopas" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Detaļas" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizācijas" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "Žurnālieraksta beigas" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "kategorijas" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Visi resursi" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Skatīt resursu" +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Šeit jūs varat izmantot samazināto formatējumu" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Rediģēt resursu" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Šis lauks ir obligāts" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "Datu glabātuve" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Pielāgots" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Skati" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Forma satur nederīgus ierakstus" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API Endpoint" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Obligātais lauks" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Doties uz resursu" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Lejupielādēt" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "Attēla URL" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Attīrīt augšupielādi" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "No datu kopas abstrakcijas" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Organizācijas forma" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "Avots: %(dataset)s" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Rediģēt datu kopu" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Šim resursam pašreiz vēl nav izveidots skats." +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Pievienot datu kopu" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Neredzat skatu kādu sagaidījāt?" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "meklējot \"{query}\" tika atrasts" -#: ckan/templates/package/resource_read.html:121 -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/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Atvainojiet, netika atrasta neviena datu kopa meklējot \"{query}\"" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "Nav izveidots skats, kas ir piemērots šim resursam" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Padarīt pieejamu publiski" -#: ckan/templates/package/resource_read.html:124 -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/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Padarīt pieejamu privāti" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"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/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Sagatave" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Papildus informācija" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Privāts" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Lauks" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Šai organizācija nav datu kopas, kas saistītas ar to" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Vērtība" +#: 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/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "nezināms" +#: 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/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Izveidots" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Pievienot organizāciju" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Formāts" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Meklē organizācijas..." -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licence" +#: 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/package/resource_views.html:10 -msgid "New view" -msgstr "Jauns skats" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Lietotājvārds" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Šim resursam nav skata" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Epasta adrese" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Pievienot jaunu resursu" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Atjaunot biedru" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format +#: ckan/templates/organization/member_new.html:81 msgid "" -"

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

" +"

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 "" -"

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

" +"

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/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API Docs" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Izveidot organizāciju" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "pilnā {format} izmete" +#: 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/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Pievienot datu kopu" + +#: ckan/templates/organization/snippets/feeds.html:3 +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/package/search.html:56 -#, python-format +#: ckan/templates/organization/snippets/help.html:7 msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " +"

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 "" -"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." +"

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/package/search.html:60 -#, python-format +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " +" 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 "" -"Jūs varat piekļūt šim reģistram izmantojot šo saiti %(api_link)s (skatīt " -"%(api_doc_link)s)." +"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/package/view_edit_base.html:9 -msgid "All views" -msgstr "Visi skati" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Mana organizācija" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "Skatu skati" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "my-organization" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Skata priekšskats" +#: 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/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Papildus informācija" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Vai tiešām vēlaties dzēst šo organizāciju? Tas izdzēsīs visas publiskās un " +"privātās datu kopas, kas pieder šai organizācijai." -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Avots" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Saglabāt organizāciju" -#: 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/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/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Versija" +#: ckan/templates/package/base.html:22 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/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Stāvoklis" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Kas ir datu kopas?" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Pēdējā atjaunināšana" +#: 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/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/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/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "Izveidot jaunu organizāciju" +#: 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/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/edit_base.html:16 +msgid "View dataset" +msgstr "Skatīt 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/edit_base.html:20 +msgid "Edit metadata" +msgstr "Rediģēt metadatus" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Datu API" +#: 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/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Virsraksts" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Priekšskats" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "piem. Aprakstošs virsraksts" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Atjaunot" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "piem. my-dataset" +#: 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/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/group_list.html:14 +msgid "Add to group" +msgstr "Pievienot kategorijai" -#: 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/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/snippets/package_basic_fields.html:41 -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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Atjaunot datu kopu" -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organizācija" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Pievienot datus datu kopai" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Nav organizācijas" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Redzamība" +#: 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/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Publisks" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Jauns resurss" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Aktīvs" +#: 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/snippets/package_form.html:28 +#: ckan/templates/package/new_view.html:19 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." +" Data Explorer views may be slow and unreliable unless the DataStore " +"extension is enabled. For more information, please see the Data Explorer " +"documentation. " 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:44 -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" +"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/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Autora epasts" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Pievienot" -#: 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/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "" +"Šīs ir vecas datu kopas izmaiņas, kas tika rediģētas %(timestamp)s. Tās var " +"būtiski atšķirties no pašreizējām izmaiņām." -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Uzturētāja epasts" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Visi resursi" -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Atjaunot resursu" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Skatīt resursu" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" -msgstr "Dati" +#: 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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "http://example.com/external-data.csv" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Skati" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "piem. 2011. gada janvāris Zelta Cenas" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API Endpoint" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Dažas noderīgas piezīmes par datiem" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Doties uz resursu" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "piem. CSV, XML vai JSON" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Lejupielādēt" -#: ckan/templates/package/snippets/resource_form.html:40 -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/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "piem. 2012-06-05" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "No datu kopas abstrakcijas" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Faila izmērs" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Avots: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "piem. 1024" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "Šim resursam pašreiz vēl nav izveidots skats." -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME tips" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Neredzat skatu kādu sagaidījāt?" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "piem. application/json" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Vai tiešām vēlaties dzēst šo resursu?" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Iepriekšējais" +#: ckan/templates/package/resource_read.html:121 +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/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Saglabāt un pievienot citu" +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Pabeigt" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Papildus informācija" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Kas ir resurss?" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Lauks" -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Vērtība" + +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -"Resurss var būt jebkurš fails vai saite uz failu, kas satur noderīgu " -"informāciju." -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Izpētīt" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "nezināms" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Vairāk informācijas" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Iekļaut" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Izveidots" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "Šī resursa skats pašreiz nav pieejams." +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Formāts" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Iekļaut resursa skatu" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licence" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" -"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/resource_views.html:10 +msgid "New view" +msgstr "Jauns skats" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Platums" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Šim resursam nav skata" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Augstums" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Pievienot jaunu resursu" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Kods" +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, 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/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Resursa pirmskats" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Dati un resursi" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API Docs" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Šai datu kopai nav datu" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "pilnā {format} izmete" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/search.html:56 #, python-format -msgid "Read dataset as of %s" -msgstr "Lasīt datu kopu kā %s" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Izveidot datu kopu" +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/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/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/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "piem. Mans skats" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Visi skati" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "piem. Informācija par manu skatu" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Skatu skati" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Pievienot filtru" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Skata priekšskats" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Noņemt filtru" +#: 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/view_form_filters.html:46 -msgid "Filters" -msgstr "Filtri" +#: 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/view_help.html:2 -msgid "What's a view?" -msgstr "Kas ir skats?" +#: 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/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/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versija" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Atšķirības" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Stāvoklis" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "izmaiņu atšķirības" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Pēdējā atjaunināšana" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Atšķirība" +#: 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/revision/diff.html:54 -msgid "No Differences" -msgstr "Nav atšķirības" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Izveidot jaunu organizāciju" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Izmaiņu vēsture" +#: 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/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Izmaiņas" +#: 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/revision/read.html:30 -msgid "Undelete" -msgstr "Atcelt dzēšanu" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Virsraksts" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Izmaiņas" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "piem. Aprakstošs virsraksts" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Datu kopas birkas" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "piem. my-dataset" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entīte" +#: 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/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Jauna aktivitāte" +#: 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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Iekļaut datu skatītāju" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +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/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Iekļaut šo skatu, kopējot to savā mājas lapā:" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizācija" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Izvēlieties platumu un augstumu pikseļos:" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Nav organizācijas" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Platums:" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Redzamība" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Augstums:" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Publisks" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Datapusher statuss: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Aktīvs" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Atsekojamības URL" +#: 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/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Rādīt vairāk {facet_type}" +#: 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/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Rādīt tikai populāros {facet_type}" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Nākamais: Pievienot datus" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Nav {facet_type}, kas atbilst šai meklēšanai" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Sākumlapa" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Valoda" +#: 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/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Iet" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Autora epasts" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "Nav norādīta licence" +#: 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/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Šī datu kopa atbilst atvērtajai definīcija." +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Uzturētāja epasts" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Nav apraksta šai organizācijai" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Atjaunot resursu" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Šai datu kopai nav apraksta" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Dati" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Iesniegt" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Kārtot pēc" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "piem. 2011. gada janvāris Zelta Cenas" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filtra rezultāts" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Dažas noderīgas piezīmes par datiem" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

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

" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "piem. CSV, XML vai JSON" -#: ckan/templates/snippets/search_form.html:86 -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/package/snippets/resource_form.html:40 +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/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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "piem. 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "Nav atrastas datu kopas meklējot \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Faila izmērs" -#: 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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "piem. 1024" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Nav atrastas datu kopas" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME tips" -#: ckan/templates/snippets/search_result_text.html:21 -msgid "{number} group found for \"{query}\"" -msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "{number} tēmas meklējot \"{query}\"" -msgstr[1] "{number} tēmas meklējot \"{query}\"" -msgstr[2] "{number} tēma meklējot \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "piem. application/json" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Nav atrastas tēmas meklējot \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Vai tiešām vēlaties dzēst šo resursu?" -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "atrastas {number} tēmas" -msgstr[1] "atrastas {number} tēmas" -msgstr[2] "atrastas {number} tēmas" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Iepriekšējais" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Tēmas nav atrastas" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Saglabāt un pievienot citu" -#: 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/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Pabeigt" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "Nav atrastas organizācijas meklējot \"{query}\"" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Kas ir resurss?" -#: 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/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/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Organizācijas nav atrastas" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Izpētīt" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Sociālie tīkli" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Vairāk informācijas" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Pierakstīties" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Iekļaut" -#: 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:82 -msgid "Email" -msgstr "Epasts" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "Šī resursa skats pašreiz nav pieejams." -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Iekļaut resursa skatu" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Labojumi" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"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/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Meklēt birkas" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Platums" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Jaunumi" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Augstums" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Manas datu kopas" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Kods" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Manas organizācijas" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Resursa pirmskats" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Manas tēmas" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Dati un resursi" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Aktivitātes no vienumiem, kuriem es sekoju" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Šai datu kopai nav datu" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Jūs neesat izveidojis nevienu datu kopu." +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Lasīt datu kopu kā %s" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Izveidot vienu tagad?" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Izveidot datu kopu" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "Jūs neesat nevienas tēmas biedrs." +#: 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/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Jūs neesat nevienas organizācijas biedrs." +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "piem. Mans skats" -#: 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/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "piem. Informācija par manu skatu" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Konta informācija" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Noņemt filtru" -#: 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/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Kas ir skats?" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Mainīt detaļas" +#: 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/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Pilnais vārds" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Atšķirības" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "piem. Jānis Bērziņš" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "izmaiņu atšķirības" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "piem. joe@example.com" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Atšķirība" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Nedaudz informācijas par sevi" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Nav atšķirības" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Abonēt epasta paziņojumus" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Izmaiņu vēsture" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Mainīt paroli" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Izmaiņas" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "Sistēmas administratora parole" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Atcelt dzēšanu" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Parole" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Izmaiņas" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Apstiprināt paroli" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Datu kopas birkas" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Vai tiešām vēlaties dzēst šo lietotāju?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entīte" -#: ckan/templates/user/edit_user_form.html:51 -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/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Jauna aktivitāte" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Pārģenerēt API astlēgu" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Iekļaut datu skatītāju" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Atjaunot profilu" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Iekļaut šo skatu, kopējot to savā mājas lapā:" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Visi lietotāji" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Izvēlieties platumu un augstumu pikseļos:" -#: 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/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Platums:" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Nepieciešams konts?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Augstums:" -#: 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/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher statuss: {status}." -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Izveidot kontu" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Atsekojamības URL" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Aizmirsi savu paroli?" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Rādīt vairāk {facet_type}" -#: 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/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Rādīt tikai populāros {facet_type}" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Aizmirsi savu paroli?" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Nav {facet_type}, kas atbilst šai meklēšanai" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Atteicies" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Sākumlapa" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Jūs esiet atteicies no sistēmas" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Valoda" -#: 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/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Iet" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Iziet" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Nav norādīta licence" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Atcerēties mani" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Šī datu kopa atbilst atvērtajai definīcija." -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Jūs esat jau pieteicies" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Nav apraksta šai organizācijai" -#: ckan/templates/user/logout_first.html:24 -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/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Šai datu kopai nav apraksta" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Atteikties tagad" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Iesniegt" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Reģistrācija" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Kārtot pēc" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Konta reģistrācija" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filtra rezultāts" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Kāpēc reģistrēties?" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

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

" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "Izveidot datu kopas, tēmas un citas aizraujošas lietas" +#: ckan/templates/snippets/search_form.html:86 +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/user/new_user_form.html:5 -msgid "username" -msgstr "lietotājvārds" +#: 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/user/new_user_form.html:6 -msgid "Full Name" -msgstr "PIlns vārds" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Nav atrastas datu kopas meklējot \"{query}\"" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Izveidot kontu" +#: 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/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Atjaunot jūsu paroli" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Nav atrastas datu kopas" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Paroles atiestatīšana" +#: 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/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Atjaunot paroli" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Nav atrastas kategorijas meklējot \"{query}\"" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Kā tas strādā?" +#: 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/user/perform_reset.html:40 -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/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Kategorijas nav atrastas" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Lietotājs vēl nav izveidojis nevienu datu kopu." +#: 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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Jūs neesat norādijis biogrāfiju." +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Nav atrastas organizācijas meklējot \"{query}\"" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Šim lietotājam nav biogrāfijas." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Organizācijas nav atrastas" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Tas nozīmē, ka tikai jūs varat redzēt šo" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Sociālie tīkli" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Biedrs kopš" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Pierakstīties" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API atslēga" +#: 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:82 +msgid "Email" +msgstr "Epasts" -#: 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/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Paroles attiestatīšana" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Labojumi" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Pieprasīt atiestatīšanu" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Meklēt birkas" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Ievadiet savu lietotājvārdu lodziņā, un mēs nosūtīsim jums e-pastu ar saiti," -" lai ievadītu jaunu paroli." +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Jaunumi" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Aktivitāte no:" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Manas datu kopas" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Meklē sarakstu..." +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Manas organizācijas" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Jūs nekam nesekojat" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Manas kategorijas" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Nav sekotāju" +#: 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/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Meklēt lietotājus" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Jūs neesat izveidojis nevienu datu kopu." -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Pabeigts" +#: 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:16 +msgid "Create one now?" +msgstr "Izveidot vienu tagad?" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Gaida" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Jūs neesat nevienas kategorijas biedrs." -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Iesniedz" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Jūs neesat nevienas organizācijas biedrs." -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Pagaidām nav augšupielādēts" +#: 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" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Datu glabātuves resurss nav atrasts" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Konta informācija" -#: ckanext/datastore/db.py:663 +#: ckan/templates/user/edit.html:19 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -"Dati bija nederīgi (piemēram: skaitliska vērtība ir ārpus diapazona vai tika" -" ievietots teksta laukā)." - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -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/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Datu kopas viena lapā" +"Jūsu profils ļauj citiem CKAN lietotājiem uzzināt par to, kas jūs esat un ko" +" jūs darāt." -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Testa iestatījumi" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Mainīt detaļas" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Pielāgotie lauki augošā secībā" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Pilnais vārds" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Pielāgotie lauki dilstošā secībā" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "piem. Jānis Bērziņš" -#: 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" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "piem. joe@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "pielāgots teksts" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Nedaudz informācijas par sevi" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Valsts kods" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Abonēt epasta paziņojumus" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "pielāgots resursa teksts" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Mainīt paroli" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "Šis ir netulkots teksts" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "Sistēmas administratora parole" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Šai tēmai nav apraksta" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Parole" -#: ckanext/example_theme/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/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Apstiprināt paroli" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "Attēla url" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Vai tiešām vēlaties dzēst šo lietotāju?" -#: 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)" +#: ckan/templates/user/edit_user_form.html:50 +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?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Datu pārlūks" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Pārģenerēt API astlēgu" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Tabula" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Atjaunot profilu" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Grafiks" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Visi lietotāji" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Karte" +#: 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" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "kļūda ielādējot skatu" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Nepieciešams konts?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "Rindas iznesums" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "piem,: 0" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Izveidot kontu" -#: 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" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Aizmirsi savu paroli?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "piem.:100" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Grafika tips" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Aizmirsi savu paroli?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Grupa (ass 1)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Atteicies" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Sērija (ass 2)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Jūs esiet atteicies no sistēmas" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Lauka tips" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Jūs esat jau pieteicies kā {lietotājs}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Latitude lauks" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Iziet" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Longitude lauks" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Atcerēties mani" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "GeoJSON lauks" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Jūs esat jau pieteicies" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Automātiskā tuvināšana" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Klastera mārķieri" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Atteikties tagad" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Kopējais datu kopu skaits" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Reģistrācija" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Datums" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Konta reģistrācija" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Datu kopas kopā" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Kāpēc reģistrēties?" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Datu kopu izmaiņas nedēļā" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Izveidot datu kopas, kategorijas un citas aizraujošas lietas" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Visu datu kopu izmaiņas" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "lietotājvārds" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Jaunās datu kopas" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "PIlns vārds" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Visaugstāk vērtētās datu kopas" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Izveidot kontu" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Vidējais vērtējums" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Atjaunot jūsu paroli" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Vērtējumu skaits" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Paroles atiestatīšana" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Nav vērtējumu" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Atjaunot paroli" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Visvairāk mainītās datu kopas" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Kā tas strādā?" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Pārmaiņu skaits" +#: ckan/templates/user/perform_reset.html:40 +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" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Nemainītas datu kopas" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Lietotājs vēl nav izveidojis nevienu datu kopu." -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Lielākās tēmas" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Jūs neesat norādijis biogrāfiju." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Datu kopumu skaits" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Šim lietotājam nav biogrāfijas." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Nav tēmu" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Populārākās birkas" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Tas nozīmē, ka tikai jūs varat redzēt šo" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Birkas nosaukums" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Biedrs kopš" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Datu kopu skaits" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API atslēga" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "Lietotāju biežāk izveidotās datu kopas" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Attiestatīt jūsu paroli" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Satistikas izvēlne" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Paroles attiestatīšana" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Datu kopu kopējais skaits" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Pieprasīt atiestatīšanu" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Teksts" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "" +"Ievadiet savu lietotājvārdu lodziņā, un mēs nosūtīsim jums e-pastu ar saiti," +" lai ievadītu jaunu paroli." -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" -msgstr "Radās kļūda: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Aktivitāte no:" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Mājas lapa" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Meklē sarakstu..." -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "Tīmekļa vietnes url" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Jūs nekam nesekojat" -#: 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/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" diff --git a/ckan/i18n/mk/LC_MESSAGES/ckan.mo b/ckan/i18n/mk/LC_MESSAGES/ckan.mo new file mode 100644 index 00000000000..03004c3a294 Binary files /dev/null and b/ckan/i18n/mk/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/mk/LC_MESSAGES/ckan.po b/ckan/i18n/mk/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..4cbb101ee82 --- /dev/null +++ b/ckan/i18n/mk/LC_MESSAGES/ckan.po @@ -0,0 +1,4545 @@ +# Translations template for ckan. +# Copyright (C) 2017 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2017. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.7.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Zoran Pandovski , 2017\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.4.0\n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#: 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:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Грешка" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Ресурсот не е пронајден" + +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Грешка:" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Статус" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/controller.py:46 +#, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" + +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Креирај" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Пример: Javascript" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Пример: Python" + +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: 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:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Опис" + +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Зачувај" + +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Колона" + +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "Тип" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Се вчитува" + +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "" + +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +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:28 +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:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Релевантност" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Последно променет" + +#: 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:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Популарни" + +#: 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:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Следбеници" + +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ресурси" + +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +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:101 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Мапа" + +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +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 "" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Вкупно датасети" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Дата" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Нов датасет" + +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Просечна оценка" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Број на оценки" + +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "" + +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "" + +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Група" + +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Број на датасети" + +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Корисник" + +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "" + +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "" + +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +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:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Вашиот прелистувач не поддржува iframes" + +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "" + +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Администратор" + +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Едитор" + +#: ckan/authz.py:202 +msgid "Member" +msgstr "Член" + +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "" + +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "" + +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "" + +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "" + +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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:55 +msgid "About page text" +msgstr "" + +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "" + +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Текст на насловна страна" + +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "" + +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "" + +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Насловна страна" + +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" + +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "" + +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "" + +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Пристапот е одбиен" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Не е пронајден" + +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "" + +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "" + +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "" + +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "" + +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "" + +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "" + +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "" + +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "" + +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "" + +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "" + +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "" + +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "" + +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "" + +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "" + +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "" + +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "" + +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "" + +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "" + +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" + +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Групата не е пронајдена" + +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Организацијата не е пронајдена" + +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Погрешен тип на група" + +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "" + +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "" + +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "" + +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "" + +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "" + +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "" + +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "" + +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "" + +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "" + +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "" + +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "" + +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "" + +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "" + +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "" + +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "" + +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "" + +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "" + +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Последни промени во CKAN група:" + +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "" + +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "" + +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "" + +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, 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 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" + +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" + +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "" + +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "" + +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "" + +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "" + +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "" + +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "" + +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "" + +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "" + +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "" + +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "" + +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "" + +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "" + +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "" + +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "" + +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "" + +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "" + +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "" + +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "" + +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "" + +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "" + +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "" + +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "" + +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "" + +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "" + +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "" + +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "" + +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "" + +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "" + +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Друго" + +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "" + +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "" + +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "" + +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "" + +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "" + +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "" + +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "" + +#: ckan/controllers/user.py:245 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "" + +#: ckan/controllers/user.py:265 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" + +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "" + +#: ckan/controllers/user.py:320 +#, python-format +msgid "User %s not authorized to edit %s" +msgstr "" + +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "Погрешна лозинка" + +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "" + +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "" + +#: ckan/controllers/user.py:490 +#, python-format +msgid "\"%s\" matched several users" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 +#, python-format +msgid "No such user: %s" +msgstr "" + +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "" + +#: ckan/controllers/user.py:503 +#, python-format +msgid "Could not send reset link: %s" +msgstr "" + +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "" + +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "" + +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "" + +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "" + +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "" + +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "" + +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "" + +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "" + +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "" + +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "" + +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "" + +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "" + +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "" + +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "" + +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "" + +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "" + +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "" + +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "" + +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "" + +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "" + +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "" + +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "" + +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "" + +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "" + +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "" + +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "" + +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "" + +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "" + +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "" + +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "" + +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "" + +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "" + +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "" + +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "" + +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" + +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "" + +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "" + +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "" + +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "" + +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "" + +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "" + +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "" + +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "" + +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "" + +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "" + +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "" + +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "" + +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "" + +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "" + +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "" + +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "" + +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "" + +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "" + +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "" + +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "" + +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "" + +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/mailer.py:39 +#, python-format +msgid "%s <%s>" +msgstr "" + +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "" + +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "" + +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "" + +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "" + +#: ckan/lib/navl/validators.py:66 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "" + +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "" + +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "" + +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "" + +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "" + +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "" + +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "" + +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "" + +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "" + +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "" + +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Мора да биде позитивен број" + +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Датата е грешна" + +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "" + +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "" + +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "" + +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "" + +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "" + +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "" + +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "" + +#: ckan/logic/validators.py:366 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:370 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "" + +#: ckan/logic/validators.py:376 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "" + +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "" + +#: ckan/logic/validators.py:416 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:420 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "" + +#: ckan/logic/validators.py:428 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" + +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "" + +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "" + +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "" + +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "" + +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "" + +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Вашата лозинка мора да биде 4 или повеке карактери" + +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "" + +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" + +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "" + +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" + +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "" + +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "" + +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "" + +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "" + +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "" + +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "" + +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "" + +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "" + +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "" + +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "" + +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "" + +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "" + +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "" + +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "" + +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "" + +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "" + +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "" + +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "" + +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "" + +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "" + +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "" + +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "" + +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "" + +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "" + +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "" + +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "" + +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "" + +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "" + +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "" + +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "" + +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "" + +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "" + +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "" + +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "" + +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "" + +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "" + +#: ckan/logic/action/update.py:1059 +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:45 +#, 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:63 +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:189 +msgid "Group was not found." +msgstr "" + +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "" + +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "" + +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "" + +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +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 +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/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "" + +#: ckan/logic/auth/get.py:109 +#, 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:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "" + +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "" + +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "" + +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" + +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "" + +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "" + +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "" + +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "" + +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" + +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" + +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "" + +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "" + +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" + +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "" + +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "" + +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "" + +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "" + +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "" + +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "" + +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "" + +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "" + +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "" + +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "" + +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "" + +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "" + +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "" + +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "" + +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "" + +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "" + +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "" + +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "" + +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "" + +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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 +msgid "There are unsaved modifications to this form" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Потврди" + +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Избриши" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +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/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Додади филтер" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Прикажи повеке" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +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:12 +msgid "Sysadmin settings" +msgstr "" + +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "" + +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "" + +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "" + +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "" + +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "" + +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "" + +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Прикажи повеке" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "" + +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "" + +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Ресетирај" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:33 +#, python-format +msgid "" +"

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

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

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

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

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

" +"

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

" +"

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

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

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

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

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

Purge deleted datasets forever and irreversibly.

" +msgstr "" + +#: ckan/templates/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:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "" + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "" + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "" + +#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 +#: ckan/templates/organization/admins.html:3 +#: ckan/templates/organization/admins.html:6 +msgid "Administrators" +msgstr "" + +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "" + +#: ckan/templates/group/confirm_delete.html:3 +#: ckan/templates/group/confirm_delete.html:15 +#: ckan/templates/group/confirm_delete_member.html:3 +#: ckan/templates/group/confirm_delete_member.html:16 +#: ckan/templates/organization/confirm_delete.html:3 +#: ckan/templates/organization/confirm_delete.html:15 +#: ckan/templates/organization/confirm_delete_member.html:3 +#: ckan/templates/organization/confirm_delete_member.html:16 +#: ckan/templates/package/confirm_delete.html:3 +#: ckan/templates/package/confirm_delete.html:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "" + +#: ckan/templates/group/confirm_delete_member.html:11 +#: ckan/templates/organization/confirm_delete_member.html:11 +msgid "Are you sure you want to delete member - {name}?" +msgstr "" + +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "" + +#: ckan/templates/group/edit_base.html:23 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/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "" + +#: ckan/templates/group/index.html: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:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "" + +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "" + +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" + +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "или" + +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "" + +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" + +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "" + +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "" + +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "" + +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "" + +#: ckan/templates/group/member_new.html:80 +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:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:63 +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/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "" + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "" + +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "" + +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "" + +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "" + +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "" + +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "" + +#: ckan/templates/home/snippets/about_text.html:1 +msgid "" +"

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

" +"

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

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

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

" +msgstr "" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "" + +#: ckan/templates/home/snippets/promoted.html:10 +msgid "" +"This is a nice introductory paragraph about CKAN or the site in general. We " +"don't have any copy to go here yet but soon we will " +msgstr "" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "" + +#: ckan/templates/home/snippets/stats.html: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/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "" + +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "" + +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "" + +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "" + +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "" + +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "" + +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "" + +#: ckan/templates/organization/edit.html:6 +#: ckan/templates/organization/snippets/info.html:13 +#: ckan/templates/organization/snippets/info.html:16 +msgid "Edit Organization" +msgstr "" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "" + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "" + +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "" + +#: ckan/templates/organization/member_new.html:81 +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 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "" + +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "" + +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "" + +#: ckan/templates/organization/snippets/help.html:7 +msgid "" +"

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

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

" +msgstr "" + +#: ckan/templates/organization/snippets/helper.html:8 +msgid "" +" CKAN Organizations are used to create, manage and publish collections of " +"datasets. Users can have different roles within an Organization, depending " +"on their level of authorisation to create, edit and publish. " +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:63 +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:22 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/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:16 +msgid "View dataset" +msgstr "" + +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "" + +#: ckan/templates/package/edit_view.html:3 +#: ckan/templates/package/edit_view.html:4 +#: ckan/templates/package/edit_view.html:8 +#: ckan/templates/package/edit_view.html:12 +msgid "Edit view" +msgstr "" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +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:15 +msgid "Update Dataset" +msgstr "" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "" + +#: ckan/templates/package/new_view.html:3 +#: ckan/templates/package/new_view.html:4 +#: ckan/templates/package/new_view.html:8 +#: ckan/templates/package/new_view.html:12 +msgid "Add view" +msgstr "" + +#: ckan/templates/package/new_view.html:19 +msgid "" +" Data Explorer views may be slow and unreliable unless the DataStore " +"extension is enabled. For more information, please see the Data Explorer " +"documentation. " +msgstr "" + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "" + +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "" + +#: 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:39 +msgid "API Endpoint" +msgstr "" + +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "" + +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "" + +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "" + +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "" + +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:122 +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:144 +msgid "Additional Information" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "" + +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "" + +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "" + +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "" + +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "" + +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, 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/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:37 +#: ckan/templates/package/snippets/additional_info.html:42 +#: ckan/templates/package/snippets/package_metadata_fields.html:20 +msgid "Maintainer" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/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/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:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:111 +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:24 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:77 +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:23 +msgid "Explore" +msgstr "" + +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "" + +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "" + +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html: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/revision/diff.html:6 +msgid "Differences" +msgstr "" + +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "" + +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "" + +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "" + +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "" + +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "" + +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "" + +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "" + +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "" + +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "" + +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "" + +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "" + +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "" + +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "" + +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "" + +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "" + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +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:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "" + +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "" + +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "" + +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "" + +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "" + +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "" + +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "" + +#: ckan/templates/snippets/search_form.html:86 +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:82 +msgid "Email" +msgstr "" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "" + +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "" + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:16 +msgid "Create one now?" +msgstr "" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "" + +#: ckan/templates/user/dashboard_organizations.html: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 +msgid "Change password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "" + +#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 +#: ckan/templates/user/login.html:12 +#: ckan/templates/user/snippets/login_form.html:28 +msgid "Login" +msgstr "" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "" + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "" + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "" + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "" + +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "" + +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "" + +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." +msgstr "" + +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "" + +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "" + +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "" + +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "" + +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "" + +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "" + +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "" + +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "" + +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "" + +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "" + +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "" + +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "" diff --git a/ckan/i18n/mn_MN/LC_MESSAGES/ckan.mo b/ckan/i18n/mn_MN/LC_MESSAGES/ckan.mo index 932394c5520..9d677632bba 100644 Binary files a/ckan/i18n/mn_MN/LC_MESSAGES/ckan.mo and b/ckan/i18n/mn_MN/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po b/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po index af0ef22e200..c16d636c5d9 100644 --- a/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po +++ b/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po @@ -1,4544 +1,4640 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: mn_MN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Нэвтрэх үйлдэл олдсонгүй: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Бүрэн дуусах" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Админ" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Хүлээгдэж байна" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Засварлагч" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Илгээж байна" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Гишүүн" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Алдаа" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Системийг удирдахын тулд администратор болох хэрэгтэй" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Хараахан байршуулагдаагүй байна" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Сайтын гарчиг" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Нөөц олдсонгүй" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Загвар" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Энэ хуудсыг үзэх эрхгүй байна " -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Сайтын шошгоны зурвас" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Өгөгдлийн нөөцөд байршуулах" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Сайтын шошгоны лого" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Серверт хуулах үед гарсан алдаа:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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 "Танилцуулга" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Алдаа:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Танилцуулга хуудасны текст" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Танилцуулга текст" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Төлөв" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Нүүр хуудасны текст" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Сүүлд шинэчлэгдсэн" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Өөрчилсөн CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Хэзээ ч үгүй" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Хуудасны толгой хэсэгт ѳѳрчлѳх боломжтой css орсон " +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Бүртгэл оруулах" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Нүүр хуудас" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Дэлгэрэнгүй байдал" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Бүртгэлийн төгсгөл" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Өгөгдлийн агуулах" + +#: ckanext/datastore/controller.py:46 #, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +msgid "format: must be one of %s" msgstr "" -"Нэгдсэн хяналт %s устгагдаж болохгүй %s багцууд байна тиймээс %s багцыг " -"устгаж болохгүй" -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "%s-г цэвэрлэхэд гарсан алдаа: %s" +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Өгөгдлийн агуулахын нөөц олдсонгүй" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Бүрэн цэвэрлэх" +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Үйлдлийг гүйцэтгэсэнгүй" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Нөөц \"{0}\" олдсонгүй." -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Энэ хуудсыг үзэх эрхгүй байна " +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Хэрэглэгч {0} нөөц {1}-г шинэчлэх эрхгүй байна" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Нэвтрэх боломжгүй" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN өгөгдлийн API" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Олдсонгүй" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Өндөр түвшний хайлт хийх боломж бүхий веб API-н тусламжтайгаар нөөц өгөгдөлд" +" хандана" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Буруу хүсэлт" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Үл таних үйлдэл: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Төгсгөлийн цэгүүд" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON Алдаа: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "API-н өгөгдөлд CKAN болон API-н үйлдлээр дамжиж хандах боломжтой." -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Өгөгдлийн буруу хүсэлт: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Үүсгэх" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "%s төрлийн нэгжийг харуулах боломжгүй." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Шинэчлэх/ Оруулах" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "%s төрлийн өгөгдөлийг уншиж чадахгүй." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Хүсэлт" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "%s %s төрлийн өгөгдлийг шинээр үүсгэж чадахгүй " +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Хүсэлт (SQL - ээр)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Хайлтын индексэд багц нэмэх боломжгүй" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Боловсруулж байна" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "%s төрлийн өгөгдлийг өөрчлөх боломжгүй" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Хүсэлтийн жишээ (эхний 5 үр дүн)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Хайлтын индексийг шинэчлэх боломжгүй " +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Хүсэлтийн жишээ ('jones'-г агуулсан үр дүн)" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "%s %s төрлийн өгөгдлийг устгах боломжгүй." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Хайлтын агуулгын жишээ (SQL загвараар)" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Залруулга байхгүй байна." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Жишээ нь: Javascript" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "%s гэсэн дугаартай залруулга байхгүй байна." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "jQuery ашиглан өгөгдлийн API-д хандах энгийн ajax хүсэлт (JSONP)." -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Хайх нөхцөл бүрдээгүй ('since_id=UUID' эсвэл 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Жишээ нь: Python" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "%r параметрыг уншиж чадсангүй" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Муу хайлтын сонголт: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Үл таних бүртгэл: %s" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Тайлбар" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Буруу хэлбэржсэн qjson утга: %r" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Хадгалах" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" msgstr "" -"Хүсэлтийн параметр нь json-оор шифрлэгдсэн үгсийн сан хэлбэрт байх ёстой" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Бүлэг олдсонгүй" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Байгууллага олдсонгүй" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Буруу бүлгийн төрөл" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Ачааллаж байна..." -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Байгууллагууд" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Өгөгдлийн API" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Бүлгүүд" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Шошго" - -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Форматууд" - -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Ашиглах зөвшөөрлүүд" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Багцаар нь шинэчлэх боломжгүй." +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Бүлэг үүсгэх эрхгүй байна" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "%r хэрэглэгч %s -г өөрчлөх эрхгүй байна." +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Ил тод алдаа" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Хэрэглэгч %r %s - ийн эрхийг өөрчлөх эрхгүй байна." +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Хамаарал" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "%s бүлгийг устгах эрх байхгүй" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Байгууллагыг устгасан." +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Бүлэг устсан байна." +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Сүүлд өөрчлөгдсөн" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s утслаа." +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "%s бүлэгт шинээр гишүүн нэмэх боломжгүй." +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "%s бүлгийн гишүүдийг устгах боломжгүй." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Түгээмэл" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -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 "Дурын текст" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Харьцуулалт хийх 2 хувилбарыг сонгоно уу." +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "дурын текст" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "CKAN Group Засвар хийсэн түүх" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Улсын код" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "CKAN бүлэгт шинээр нэмэгдсэн өөрчлөлтүүд:" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Бүртгэлийн зурвас:" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Та {0} хүн дагаж байгаа " +#: 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/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Та {0} хүн дагахаа болилоо" +#: 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/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Дагагчдыг харах эрхгүй байна %s" +#: 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 Өгөгдлийн бүрдлүүд" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." +#: 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/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "Та өөрийн мэдээлэл болон мэйл хаягаа шинэчилнэ үү." +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Дагагчид" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "Та нууц үгээ шиэнчлэх хэрэгтэй бол %s таны имэйл хаягийг ашиглана." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Материалууд" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Зураг" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" msgstr "" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Параметр \"{parameter_name}\" нь натурал тоо биш байна." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Өгөгдлийн бүрдэл олдсонгүй" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Засварын хэлбэр таарахгүй байна: %r" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" msgstr "" -"{format} хэлбэрээр {package_type} өгөгдлийн бүрдлийг харах боломжгүй (загвар" -" файл {file} олдоогүй)" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "%s багцийг унших эрхгүй байна." +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "CKAN өгөгдлийн бүрдлийн засварын түүх" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "CKAN өгөгдлийн бүрдэлд сүүлд нэмэгдсэн өөрчлөлтүүд:" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Пакет үүсгэх эрх байхгүй байна" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Энэ нөөцийг өөрчлөх эрх байхгүй байна" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Нөөц олдсонгүй" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Өгөгдлийн бүрдлийг шинэчлэх эрхгүй байна." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Өгөгдлийн бүрдэл {id} олдсонгүй." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Та дор хаяж нэг өгөгдлийн нөөц нэмэх хэрэгтэй " +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Алдаа" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Нөөц үүсгэх эрх байхгүй байна" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" msgstr "" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Хайлтын индексэд багц нэмэх боломжгүй байна." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Хайлтын индексийг шинэчилэх боломжгүй байна." +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Өгөгдлийн бүрдэл устсан" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "%s энэ багцийг устгах эрхгүй байна" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Нөөц устсан байна." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "%s нөөцийг устгах эрхгүй байна " +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" msgstr "" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Нөөцийн өгөгдөл олдсонгүй" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Өгөгдлийн бүрдлийн нийт тоо" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Татаж авах боломжгүй" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Огноо" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "%s өгөгдлийн бүрдлийг унших эрхгүй байна" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Нийт өгөгдлийн бүрдлүүд" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "%s нөөцийг унших эрхгүй байна " +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "7 хоног бүрийн өгөгдлийн бүрдлийн засварууд" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Өгөгдлийн нийт засварууд" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Шинэ өгөгдлийн бүрдлүүд" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Өндөр үнэлгээтэй өгөгдлийн бүрдлүүд" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Дундаж үнэлгээ" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Үнэлгээ хийгдсэн тоо" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Урьдчилж харах боломжгүй." +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Үнэлгээ байхгүй" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "CKAN дахь засварын түүх" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Их засварлагдсан өгөгдлийн бүрдлүүд" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "CKAN-н сүүлийн өөрчлөлтүүд" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Өгөгдлийн бүрдэл" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Өгөгдлийн бүрдэл гэмтсэн: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Засварлагдсан тоо" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Засварлагдсан" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Засварлагдаагүй өгөгдлийн бүрдлүүд" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Бусад" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Хамгийн том бүлгүүд" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Шошго олдсонгүй" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Бүлэг" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Хэрэглэгч олдсонгүй." +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Өгөгдлийн бүрдлүүд" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Хэрэглэгчээр бүртгэх эрхгүй байна." +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Бүлэг байхгүй" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Хэрэглэгч үүсгэх эрхгүй байна." +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Шилдэг шошгууд" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr " \"{user_id}\" дугаартай хэрэглэгчийг устгах эрх байхгүй байна." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Шошгын нэр" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Хэрэглэгч тодорхойлогдоогүй." +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Өгөгдлийн бүрдлийн тоо" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "%s хэрэглэгчийг өөрчлөх эрхгүй байна." +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Хувийн мэдээлэл шинэчлэгдлээ" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Хэрэглэгч" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "%s хэрэглэгчийг үүсгэх эрхгүй байна." +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Статистикийн цэс" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Буруу оролт. Дахин оролдоно уу." +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Нийт өгөгдлийн бүрдлийн тоо" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" msgstr "" -"\"%s\" хэрэглэгч бүртгэгдсэн боловч өмнөх \"%s\" хэрэглэгчээр холбогдсон " -"хэвээор байна." - -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Хэрэглэгчийн мэдээллийг өөрчлөх эрхгүй байна." -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "%s хэрэглэгч %s хэрэглэгчийг өөрчлөх эрхгүй байна." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" msgstr "" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Хуучин нууц үг" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "буруу нууц үг" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Таны интернет хөтөч iframes -г дэмжих боломжгүй." -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Нэвтрэх боломжгүй. Хэрэглэгчийн нэр эсвэл нууц үг буруу байна" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Нэвтрэх үйлдэл олдсонгүй: %s" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Нууц үгийг шинэчлэх хүсэлт илгээх эрх байхгүй байна." +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Админ" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" гэсэн хэрэглэгчид олдлоо" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Засварлагч" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Ийм хэрэглэгч алга: %s" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Гишүүн" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Ирсэн захидлаа шалгаад кодоо шинэчилнэ үү!" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Системийг удирдахын тулд администратор болох хэрэгтэй" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Шинэчилэх холбоосыг явуулж чадсангүй: %s" - -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Нууц үгийг шинэчлэх эрхгүй байна." - -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Шинэчлэх түлхүүр үг тохирсонгүй. Дахин оролдоно уу?" - -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Таны нууц үг шинэчлэгдлээ." - -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Таны нууц үг багадаа 4 тэмдэгт байх ёстой" - -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Таны оруулсан нууц үг буруу байна." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Сайтын гарчиг" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Та нууц үгээ оруулна уу" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Загвар" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Дагалдах зүйл олдсонгүй" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Сайтын шошгоны зурвас" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} олдсонгүй" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Сайтын шошгоны лого" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Бүх зүйл" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Орхигдсон утга" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Танилцуулга хуудасны текст" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Гадаад вэб сайтруу чиглүүлэхийг зөвшөөрөхгүй" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Танилцуулга текст" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} {dataset} өгөгдлийн бүрдэлд {tag} гэсэн шошго нэмлээ" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Нүүр хуудасны текст" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} {group} бүлгийг шинэчлэлээ" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Өөрчилсөн CSS" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} {organization} байгууллагыг шинэчлэлээ" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Хуудасны толгой хэсэгт ѳѳрчлѳх боломжтой css орсон " -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} {dataset} өгөгдлийн бүрдлийг шинэчлэлээ" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Нүүр хуудас" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" msgstr "" -"{actor} {dataset} өгөгдлийн бүрдлийн нэмэлт {extra} хэсгийг шинэчлэлээ" +"Нэгдсэн хяналт %s устгагдаж болохгүй %s багцууд байна тиймээс %s багцыг " +"устгаж болохгүй" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} {dataset} өгөгдлийн бүрдлийн {resource} мэдээг шинэчлэлээ" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "%s-г цэвэрлэхэд гарсан алдаа: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} хувийн мэдээллээ шинэчлэлээ" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Бүрэн цэвэрлэх" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} {group} бүлгийг устгалаа" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Үйлдлийг гүйцэтгэсэнгүй" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} {organization} байгууллагыг устгалаа" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Нэвтрэх боломжгүй" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} {dataset} өгөгдлийн бүрдлийг устгалаа" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Олдсонгүй" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} {dataset} өгөгдлийн бүрдлийн нэмэлт {extra} хэсгийг устгалаа" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Буруу хүсэлт" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} {dataset} өгөгдлийн бүрдлийн {resource} мэдээг устгалаа" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Үл таних үйлдэл: %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} {group} бүлгийг шинээр үүсгэлээ" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Алдаа: %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} {organization} байгууллагыг шинээр үүсгэлээ" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Өгөгдлийн буруу хүсэлт: %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} {dataset} өгөгдлийн бүрдлийг шинээр үүсгэлээ" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "%s төрлийн нэгжийг харуулах боломжгүй." -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} {dataset} өгөгдлийн бүрдэлд нэмэлт {extra} хэсгийг нэмлээ" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "%s төрлийн өгөгдөлийг уншиж чадахгүй." -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} {dataset} өгөгдлийн бүрдэлд {resource} мэдээг нэмлээ" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "%s %s төрлийн өгөгдлийг шинээр үүсгэж чадахгүй " -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} шинээр бүртгүүллээ" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Хайлтын индексэд багц нэмэх боломжгүй" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} {dataset} өгөгдлийн бүрдлийн {tag} гэсэн шошгыг устгалаа" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "%s төрлийн өгөгдлийг өөрчлөх боломжгүй" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} {dataset} өгөгдлийн бүрдлийг дагалаа" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Хайлтын индексийг шинэчлэх боломжгүй " -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} {user} хэрэглэгчийг дагалаа" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "%s %s төрлийн өгөгдлийг устгах боломжгүй." -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} {group} бүлгийг дагалаа" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Залруулга байхгүй байна." -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Үзэх" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "%s гэсэн дугаартай залруулга байхгүй байна." -#: 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/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Хайх нөхцөл бүрдээгүй ('since_id=UUID' эсвэл 'since_time=TIMESTAMP')" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "1-р сар" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "%r параметрыг уншиж чадсангүй" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "2-р сар" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Муу хайлтын сонголт: %s" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "3-р сар" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Үл таних бүртгэл: %s" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "4-р сар" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Буруу хэлбэржсэн qjson утга: %r" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "5-р сар" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" +"Хүсэлтийн параметр нь json-оор шифрлэгдсэн үгсийн сан хэлбэрт байх ёстой" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "6-р сар" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Бүлэг олдсонгүй" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "7-р сар" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Байгууллага олдсонгүй" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "8-р сар" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Буруу бүлгийн төрөл" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "9-р сар" - -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "10-р сар" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Байгууллагууд" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "11-р сар" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Бүлгүүд" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "12-р сар" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Шошго" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Дөнгөж сая" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Форматууд" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} минутын өмнө" -msgstr[1] "{mins} минутын өмнө" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Ашиглах зөвшөөрлүүд" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} цагийн өмнө" -msgstr[1] "{hours} цагийн өмнө" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "%r хэрэглэгч %s -г өөрчлөх эрхгүй байна." -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} өдрийн өмнө" -msgstr[1] "{days} өдрийн өмнө" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Багцаар нь шинэчлэх боломжгүй." -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} сарын өмнө" -msgstr[1] "{months} сарын өмнө" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Бүлэг үүсгэх эрхгүй байна" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "{years} жилээс өмнө" -msgstr[1] "{years} жилээс өмнө" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Ил тод алдаа" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Хэрэглэгч %r %s - ийн эрхийг өөрчлөх эрхгүй байна." -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{year} {month} {day}" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "%s бүлгийг устгах эрх байхгүй" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} байт" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Байгууллагыг устгасан." -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} килобайт" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Бүлэг устсан байна." -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} мегабайт" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s утслаа." -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} гигабайт" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} терабайт" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "%s бүлэгт шинээр гишүүн нэмэх боломжгүй." -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "%s бүлгийн гишүүдийг устгах боломжгүй." -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Бүлгийн гишүүн устгагдсан байна" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Харьцуулалт хийх 2 хувилбарыг сонгоно уу." -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "CKAN Group Засвар хийсэн түүх" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "CKAN бүлэгт шинээр нэмэгдсэн өөрчлөлтүүд:" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Бүртгэлийн зурвас:" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Та {0} хүн дагаж байгаа " -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Та {0} хүн дагахаа болилоо" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Дагагчдыг харах эрхгүй байна %s" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Өөрийн зургаа gravatar.com оос шинэчлэнэ үү" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Тус сайт одоогоор хаалттай байна. Өгөгдлийн сангийн тохиргоо хийгдээгүй." -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Тодорхой бус" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "Та өөрийн мэдээлэл болон мэйл хаягаа шинэчилнэ үү." -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Нэргүй нөөц" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "Та нууц үгээ шиэнчлэх хэрэгтэй бол %s таны имэйл хаягийг ашиглана." -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Шинэ өгөгдлийн бүрдэл үүслээ." +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "буруу хайлтын бичлэг: {алдааны_мэдээлэл}" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Шинэчлэгдсэн нөөц" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Параметр \"{parameter_name}\" нь натурал тоо биш байна." -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Засварлах тохиргоо" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Өгөгдлийн бүрдэл олдсонгүй" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} үзсэн" -msgstr[1] "{number} үзсэн" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Засварын хэлбэр таарахгүй байна: %r" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} сүүлд үзсэн" -msgstr[1] "{number} сүүлд үзсэн" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/mailer.py:39 +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 #, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +msgid "Unauthorized to read package %s" +msgstr "%s багцийг унших эрхгүй байна." -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Хүлээн авагчийн цахим шуудан байхгүй байна." +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "CKAN өгөгдлийн бүрдлийн засварын түүх" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "байгууллага" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "CKAN өгөгдлийн бүрдэлд сүүлд нэмэгдсэн өөрчлөлтүүд:" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "бүлэг" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Пакет үүсгэх эрх байхгүй байна" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Орхигдсон утга" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Энэ нөөцийг өөрчлөх эрх байхгүй байна" -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "%(name)s өгөгдөл нь оролтын талбарт тохирохгүй байна." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Өгөгдлийн бүрдлийг шинэчлэх эрхгүй байна." -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Бүхэл тоон утга оруулна уу" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Өгөгдлийн бүрдэл {id} олдсонгүй." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Материалууд" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Та дор хаяж нэг өгөгдлийн нөөц нэмэх хэрэгтэй " -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Багцын материал(ууд) тохирохгүй байна." +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Нөөц үүсгэх эрх байхгүй байна" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Нэмэлтүүд" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Шошго үгс \"%s\" байхгүй байна" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Хайлтын индексэд багц нэмэх боломжгүй байна." -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Хэрэглэгч" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Хайлтын индексийг шинэчилэх боломжгүй байна." -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Өгөгдлийн бүрдэл" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Өгөгдлийн бүрдэл устсан" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Бүлэг" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "%s энэ багцийг устгах эрхгүй байна" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Тохирох JSON болгон хувиргах боломжгүй" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Нөөц устсан байна." -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "%s нөөцийг устгах эрхгүй байна " -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Ийм байгууллага байхгүй" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Нөөцийн харагдац олдсонгүй" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Та тус байгууллагад өгөгдлийн бүрдэл нэмэх боломжгүй" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Нөөцийн өгөгдөл олдсонгүй" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Тохирохгүй бүхэл тоон утга" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Татаж авах боломжгүй" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Натурал тоо байх ёстой" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "%s өгөгдлийн бүрдлийг унших эрхгүй байна" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Эерэг бүхэл тоо байх ёстой" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "%s нөөцийг унших эрхгүй байна " -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Огнооны хэлбэр буруу" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "нөөцийг засварлах эрхгүй байна" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Лог мессежэнд холбогдох хаягууд агуулагдах боломжгүй." +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Харагдац олдсонгүй" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Өгөгдлийн бүрдлийн id аль хэдийнэ үүссэн байна" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Материал" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Ийм бүлэг эсвэл ID байхгүй байна." +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Үйл ажиллагааны төрөл" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Урьдчилж харах боломжгүй." -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Нэрс нь тэмдэгтээс бүрдэх ёстой" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "CKAN дахь засварын түүх" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Энэ нэрийг ашиглах боломжгүй" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "CKAN-н сүүлийн өөрчлөлтүүд" -#: ckan/logic/validators.py:337 +#: ckan/controllers/revision.py:110 #, python-format -msgid "Must be at least %s characters long" -msgstr "" +msgid "Datasets affected: %s.\n" +msgstr "Өгөгдлийн бүрдэл гэмтсэн: %s.\n" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Нэрийн урт хамгийн ихдээ %i тэмдэгт байх ёстой" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Засварлагдсан" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Бусад" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Тус URL ашиглагдаж байна." +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Шошго олдсонгүй" -#: ckan/logic/validators.py:365 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "\"%s\" нэрийн урт %s - с бага байна." +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Хэрэглэгчээр бүртгэх эрхгүй байна." -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "\"%s\" нэрийн урт %s -с хэтэрсэн байна." +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Хэрэглэгч үүсгэх эрхгүй байна." -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Шинэчилсэн хувилбарын урт хамгийн ихдээ %i тэмдэгттэй байх ёстой." +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr " \"{user_id}\" дугаартай хэрэглэгчийг устгах эрх байхгүй байна." + +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Хэрэглэгч тодорхойлогдоогүй." -#: ckan/logic/validators.py:393 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Duplicate key \"%s\"" -msgstr "Давхардсан түлхүүр \"%s\"" +msgid "Unauthorized to edit user %s" +msgstr "%s хэрэглэгчийг өөрчлөх эрхгүй байна." -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr " Бүлгийн нэр өгөгдлийн санд өмнө нь үүссэн байна" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Хэрэглэгч олдсонгүй." -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "\"%s\" шошгоны урт нь хамгийн багадаа байх ёстой %s-д хүрэхгүй байна" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Хувийн мэдээлэл шинэчлэгдлээ" -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:245 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "\"%s\" шошгоны урт нь хамгийн ихдээ байх ёстой %i-с хэтэрсэн байна." +msgid "Unauthorized to create user %s" +msgstr "%s хэрэглэгчийг үүсгэх эрхгүй байна." -#: ckan/logic/validators.py:427 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "\"%s шошго нь тоо, латин үсэг болон -_ тэмдэгтээс бүрдсэн байх ёстой." +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Буруу оролт. Дахин оролдоно уу." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:265 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "%s шошго нь том үсэг агуулж болохгүй" +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"\"%s\" хэрэглэгч бүртгэгдсэн боловч өмнөх \"%s\" хэрэглэгчээр холбогдсон " +"хэвээор байна." -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Хэрэглэгчийн нэр тэмдэгт байх ёстой" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Хэрэглэгчийн мэдээллийг өөрчлөх эрхгүй байна." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Тус хэрэглэгчийн холбогдох нэр боломжгүй байна." +#: ckan/controllers/user.py:320 +#, python-format +msgid "User %s not authorized to edit %s" +msgstr "%s хэрэглэгч %s хэрэглэгчийг өөрчлөх эрхгүй байна." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Нууц үгийн 2 талбарыг бөглөнө үү" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Оруулсан нууц үг буруу байна" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Нууц үг тэмдэгтээс бүрдсэн байх ёстой." +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Хуучин нууц үг" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Таны нууц үг 4-н тэмдэгтээс илүү байх ёстой" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "буруу нууц үг" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Таны оруулсан нууц үг хоорондоо тохирохгүй байна" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Нэвтрэх боломжгүй. Хэрэглэгчийн нэр эсвэл нууц үг буруу байна" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "" -"Спэмээр ойлгогдож байгаа тул засварлах боломжгүй. Тайлбартаа хаягуудыг " -"оруулахгүй байна уу." +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Нууц үгийг шинэчлэх хүсэлт илгээх эрх байхгүй байна." -#: ckan/logic/validators.py:619 +#: ckan/controllers/user.py:490 #, python-format -msgid "Name must be at least %s characters long" -msgstr "Нэрийн урт хамгийн багадаа %s тэмдэгт байх ёстой" - -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Тухайн үг ашиглагдаж байна." +msgid "\"%s\" matched several users" +msgstr "\"%s\" гэсэн хэрэглэгчид олдлоо" -#: ckan/logic/validators.py:633 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" -"%s-н утгыг %s болгон өөрчлөх боломжгүй. Энэ нь зөвхөн унших боломжтой." +msgid "No such user: %s" +msgstr "Ийм хэрэглэгч алга: %s" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Шошго үг олдсонгүй" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Ирсэн захидлаа шалгаад кодоо шинэчилнэ үү!" -#: ckan/logic/validators.py:655 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "%s шошго %s үгтэй хамааралгүй." +msgid "Could not send reset link: %s" +msgstr "Шинэчилэх холбоосыг явуулж чадсангүй: %s" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Шошгоны нэр байхгүй байна" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Нууц үгийг шинэчлэх эрхгүй байна." -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "%s шошго %s үгсийн сантай холбоотой" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Шинэчлэх түлхүүр үг тохирсонгүй. Дахин оролдоно уу?" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Зөв URL оруулна уу." +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Таны нууц үг шинэчлэгдлээ." -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "ийм хэрэглэгчийн төрөл байхгүй байна." +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Таны нууц үг багадаа 4 тэмдэгт байх ёстой" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Байгууллагад хамааралгүй өгөгдлийн бүрдэл хаалттай байх боломжгүй." +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Таны оруулсан нууц үг буруу байна." -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Жагсаалт биш байна" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Та нууц үгээ оруулна уу" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Тэмдэгт биш байна" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Дагалдах зүйл олдсонгүй" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Энэ эх сурвалж нь давталттай иерархи үүсгэнэ." +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} олдсонгүй" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Бүх зүйл" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Орхигдсон утга" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Гадаад вэб сайтруу чиглүүлэхийг зөвшөөрөхгүй" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдэлд {tag} гэсэн шошго нэмлээ" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: %s объектийг үүсгэх" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} {group} бүлгийг шинэчлэлээ" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Багцад хамаарал үүсгэх: %s %s %s" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} {organization} байгууллагыг шинэчлэлээ" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Гишүүн объект %s -г үүсгэх" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийг шинэчлэлээ" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Байгууллагыг бүлэг болгон үүсгэх гэж байна." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "" +"{actor} {dataset} өгөгдлийн бүрдлийн нэмэлт {extra} хэсгийг шинэчлэлээ" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "Та багцын дугаар эсвэл нэрийг оруулах шаардлагатай (параметр \"багц\")" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийн {resource} мэдээг шинэчлэлээ" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Та үнэлгээ оруулсан байх шаардлагатай (параметр\"үнэлгээ\")" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} хувийн мэдээллээ шинэчлэлээ" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Үнэлгээ бүхэл тоон утгатай байх ёстой" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} {group} бүлгийг устгалаа" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Үнэлгээ %i - с %i - н хооронд байх ёстой" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} {organization} байгууллагыг устгалаа" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийг устгалаа" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Та хэрэглэгчдийг дагахын тулд нэвтрэх хэрэгтэй." +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийн нэмэлт {extra} хэсгийг устгалаа" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Та өөрийгөө дагаж болохггүй." +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийн {resource} мэдээг устгалаа" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Та аль хэдийн дагаж байна {0}" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} {group} бүлгийг шинээр үүсгэлээ" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Өгөгдлийн бүрдлийг дагахын тулд нэвтрэх ёстой." +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} {organization} байгууллагыг шинээр үүсгэлээ" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr " {username} нэртэй хэрэглэгч олдсонгүй." +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийг шинээр үүсгэлээ" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Та бүлэг дагахын тулд нэвтрэх хэрэгтэй." +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдэлд нэмэлт {extra} хэсгийг нэмлээ" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдэлд {resource} мэдээг нэмлээ" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: %s багцыг устгах." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} шинээр бүртгүүллээ" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: %s - г устгах" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийн {tag} гэсэн шошгыг устгалаа" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Гишүүн устгах: %s" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийг дагалаа" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "өгөгдөлд дугаар байхгүй байна" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} {user} хэрэглэгчийг дагалаа" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "\"%s\" үгсийн сан олдсонгүй." +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} {group} бүлгийг дагалаа" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "\"%s\" шошго олдсонгүй." +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Үзэх" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -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/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Та дагаагүй байна {0}." +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "1-р сар" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Материал олдсонгүй" +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "2-р сар" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr " \"query\" параметрыг ашиглаж байгаа бол битгий онцлог шинж тодорхойл" +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "3-р сар" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr ": гэсэн хос(ууд) байх ёстой." +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "4-р сар" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "\"{field}\" талбар нь нөөцийн хайлтад танигдах боломжгүй." +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "5-р сар" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Багц олдсонгүй" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "6-р сар" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: %s объектийг шинэчлэх" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "7-р сар" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Багцын хамаарлыг шинэчлэх: %s %s %s" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "8-р сар" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "Даалгаврын төлөв олдсонгүй" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "9-р сар" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Байгууллага олдсонгүй" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "10-р сар" -#: 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/lib/formatters.py:59 +msgid "November" +msgstr "11-р сар" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "%s хэрэглэгч тус бүлгүүдийг өөрчлөх эрхгүй байна" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "12-р сар" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "%s хэрэглэгч энэ байгуулагад өгөгдлийн бүрдэл нэмэх эрхгүй байна." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Дөнгөж сая" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} минутын өмнө" +msgstr[1] "{mins} минутын өмнө" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "Энэ нөөцөд тохирох багц олдсонгүй, auth -ийг шалгаж чадахгүй байна." +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} цагийн өмнө" +msgstr[1] "{hours} цагийн өмнө" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} өдрийн өмнө" +msgstr[1] "{days} өдрийн өмнө" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "%s хэрэглэгч эдгээр багцуудыг өөрчлөх эрхгүй байна." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} сарын өмнө" +msgstr[1] "{months} сарын өмнө" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "%s хэрэглэгч бүлэг үүсгэх эрхгүй байна" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "{years} жилээс өмнө" +msgstr[1] "{years} жилээс өмнө" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "%s хэрэглэгч байгууллага үүсгэх эрхгүй байна" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" -msgstr "{user} API-аар хэрэглэгчдийг үүсгэх эрхгүй." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{year} {month} {day}" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Хэрэглэгч үүсгэх эрхгүй байна." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} байт" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Бүлэг олдсонгүй." +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} килобайт" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Багц үүсгэхийн тулд хүчин төгөлдөр API түлхүүр хэрэгтэй." +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} мегабайт" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Бүлэг үүсгэхэд хүчин төгөлдөр API түлхүүр хэрэгтэй." +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} гигабайт" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "%s хэрэглэгч гишүүн нэмэх эрхгүй байна" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} терабайт" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "%s хэрэглэгч %s бүлгийг өөрчлөх эрхгүй байна" +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "%s хэрэглэгч %s материалыг устгах эрхгүй байна" +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "%s хэрэглэгч %s хамаарлыг устгах эрхгүй байна." +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "%s хэрэглэгч бүлэг устгах эрхгүй байна" +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "%s хэрэглэгч %s бүлэг устгах эрхгүй байна" +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "%s хэрэглэгч байгууллага устгах эрхгүй байна" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "%s хэрэглэгч %s байгууллагыг устгах эрхгүй байна" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "%s хэрэглэгч task_status -г устгах эрхгүй байна" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Зөвшөөрөгдөөгүй байна." +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Өөрийн зургаа gravatar.com оос шинэчлэнэ үү" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "%s хэрэглэгч нь эдгээр багцуудыг унших эрхгүй байна." +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Тодорхой бус" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "Хэрэглэгч %s нь %s багцыг унших эрхгүй байна." +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Нэргүй нөөц" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "%s хэрэглэгч %s материалыг унших эрхгүй байна" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Шинэ өгөгдлийн бүрдэл үүслээ." -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Шинэчлэгдсэн нөөц" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "" -"Та өөрийн хяналтын самбартаа хандахын тулд нэвтэрсэн байх шаардлагатай." +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Засварлах тохиргоо" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "%s хэрэглэгч нь %s багцыг өөрчлөх эрхгүй байна." +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} үзсэн" +msgstr[1] "{number} үзсэн" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "%s хэрэглэгч %s материалд өөрчлөлт хийх эрхгүй байна" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} сүүлд үзсэн" +msgstr[1] "{number} сүүлд үзсэн" -#: ckan/logic/auth/update.py:100 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "%s хэрэглэгч %s багцын төлвийг өөрчлөх эрхгүй байна" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "%s хэрэглэгч %s байгууллагыг өөрчлөх эрхгүй байна" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Хүлээн авагчийн цахим шуудан байхгүй байна." -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "%s хэрэглэгч %s бүлгийн төлвийг өөрчлөх эрхгүй байна" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "байгууллага" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "%s хэрэглэгч %s бүлэгт хамаарах зөвшөөрлүүдийг өөрчлөх эрхгүй байна" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "бүлэг" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Хэрэглэгчийг өөрчлөхийн тулд нэвтэрсэн байх шаардлагатай." +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Орхигдсон утга" -#: ckan/logic/auth/update.py:197 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to edit user %s" -msgstr "%s хэрэглэгч %s хэрэглэгчийг өөрчлөх эрхгүй байна" +msgid "The input field %(name)s was not expected." +msgstr "%(name)s өгөгдөл нь оролтын талбарт тохирохгүй байна." -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Бүхэл тоон утга оруулна уу" + +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr " %s хэрэглэгч засварын төлвийг өөрчлөх эрхгүй." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Багцын материал(ууд) тохирохгүй байна." -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr " %s хэрэглэгч task_status хүснэгтийг өөрчлөх эрхгүй." +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Нэмэлтүүд" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to update term_translation table" -msgstr " %s хэрэглэгч term_translation хүснэгтийг өөрчлөх эрхгүй." - -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Багцыг засварлахын тулд хүчин төгөлдөр API түлхүүр хэрэгтэй." +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Шошго үгс \"%s\" байхгүй байна" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Бүлгийг засварлахад хүчин төгөлдөр API түлхүүр хэрэгтэй." +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Тохирох JSON болгон хувиргах боломжгүй" -#: ckan/model/license.py:222 -msgid "License not specified" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" msgstr "" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Ийм байгууллага байхгүй" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Та тус байгууллагад өгөгдлийн бүрдэл нэмэх боломжгүй" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Тохирохгүй бүхэл тоон утга" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Натурал тоо байх ёстой" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Эерэг бүхэл тоо байх ёстой" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Огнооны хэлбэр буруу" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Үнэгүй гарын авлагын лиценз." +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Лог мессежэнд холбогдох хаягууд агуулагдах боломжгүй." -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Бусад (Нээлттэй)" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Өгөгдлийн бүрдлийн id аль хэдийнэ үүссэн байна" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Бусад (Нээлттэй домайн)" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Материал" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Бусад (Холбогдлууд)" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Ийм бүлэг эсвэл ID байхгүй байна." -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "Английн Нээлттэй засгийн газрын лиценз (OGL)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Үйл ажиллагааны төрөл" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Энгийн иргэдийн арилжааны бус бүтээл (Ямар нэгэн)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Нэрс нь тэмдэгтээс бүрдэх ёстой" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Бусад (Арилжааны бус)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Энэ нэрийг ашиглах боломжгүй" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Бусад (Нээлттэй биш)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "depends on %s" -msgstr "%s-аас хамаардаг" +msgid "Name must be a maximum of %i characters long" +msgstr "Нэрийн урт хамгийн ихдээ %i тэмдэгт байх ёстой" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Тус URL ашиглагдаж байна." + +#: ckan/logic/validators.py:366 #, python-format -msgid "is a dependency of %s" -msgstr "нь %s-тай хамааралтай " +msgid "Name \"%s\" length is less than minimum %s" +msgstr "\"%s\" нэрийн урт %s - с бага байна." -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:370 #, python-format -msgid "derives from %s" -msgstr "%s-с удамшсан" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "\"%s\" нэрийн урт %s -с хэтэрсэн байна." -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "has derivation %s" -msgstr "Гаргалгаа %s байна" +msgid "Version must be a maximum of %i characters long" +msgstr "Шинэчилсэн хувилбарын урт хамгийн ихдээ %i тэмдэгттэй байх ёстой." -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:394 #, python-format -msgid "links to %s" -msgstr "%s - н холбоосууд." +msgid "Duplicate key \"%s\"" +msgstr "Давхардсан түлхүүр \"%s\"" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr " Бүлгийн нэр өгөгдлийн санд өмнө нь үүссэн байна" + +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "%s -с холбогдсон" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "\"%s\" шошгоны урт нь хамгийн багадаа байх ёстой %s-д хүрэхгүй байна" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "%s - ийн хүүхэд." +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "\"%s\" шошгоны урт нь хамгийн ихдээ байх ёстой %i-с хэтэрсэн байна." -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "%s - ийн эцэг." +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "\"%s шошго нь тоо, латин үсэг болон -_ тэмдэгтээс бүрдсэн байх ёстой." -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "Ах дүү %s байна" +msgid "Tag \"%s\" must not be uppercase" +msgstr "%s шошго нь том үсэг агуулж болохгүй" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Ачааллаж байна..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Хэрэглэгчийн нэр тэмдэгт байх ёстой" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Тус материалыг ачааллах API өгөгдөл байхгүй байна" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Тус хэрэглэгчийн холбогдох нэр боломжгүй байна." -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Өгөгдлийн API мэдээллийг ачааллахад алдаа гарлаа" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Нууц үгийн 2 талбарыг бөглөнө үү" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Тохирох зүйл олдсонгүй" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Нууц үг тэмдэгтээс бүрдсэн байх ёстой." -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Бичиж эхлэнэ үү..." +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Таны нууц үг 4-н тэмдэгтээс илүү байх ёстой" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Хэт богино! Хамгийн багадаа 1 тэмдэгт оруулах ёстой" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Таны оруулсан нууц үг хоорондоо тохирохгүй байна" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Энэ маягтанд хадгалагдаагүй өөрчлөлтүүд байна." +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Спэмээр ойлгогдож байгаа тул засварлах боломжгүй. Тайлбартаа хаягуудыг " +"оруулахгүй байна уу." -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Үйлдлээ баталгаажуулна уу" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Нэрийн урт хамгийн багадаа %s тэмдэгт байх ёстой" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Та тус үйлдлийг гүйцэтгэхдээ итгэлтэй байна уу?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Тухайн үг ашиглагдаж байна." -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Зөвшөөрөх" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"%s-н утгыг %s болгон өөрчлөх боломжгүй. Энэ нь зөвхөн унших боломжтой." -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Цуцлах" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Шошго үг олдсонгүй" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Дагах" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "%s шошго %s үгтэй хамааралгүй." -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Дагахаа болих" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Шошгоны нэр байхгүй байна" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Хуулах" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "%s шошго %s үгсийн сантай холбоотой" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Холбоос" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Зөв URL оруулна уу." -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Устгах" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "ийм хэрэглэгчийн төрөл байхгүй байна." -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Зураг" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Байгууллагад хамааралгүй өгөгдлийн бүрдэл хаалттай байх боломжгүй." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Жагсаалт биш байна" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Файл" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Тэмдэгт биш байна" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Компьютерээс файл хуулах" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Энэ эх сурвалж нь давталттай иерархи үүсгэнэ." -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "Интернетэд байрлах замтай холбох (мөн API-тай холбож болно)" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Материалыг дахин эрэмбэлэх" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Дарааллыг хадгалах" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Хадгалж байна.." +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Файл хуулах" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Алдаа гарлаа" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: %s объектийг үүсгэх" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Материал хуулагдлаа" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Багцад хамаарал үүсгэх: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Файлыг хуулах боломжгүй байна" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Гишүүн объект %s -г үүсгэх" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Хуулах эрхийг баталгаажуулах боломжгүй байна" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Хуулсан файлын мэдээллийг авах боломжгүй" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Та яг одоо файл хуулж байна. Хуулж байгаа файлаа зогсоогоод гарахдаа " -"итгэлтэй байна уу." - -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Байгууллагыг бүлэг болгон үүсгэх гэж байна." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Засварлах" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Та багцын дугаар эсвэл нэрийг оруулах шаардлагатай (параметр \"багц\")" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Дэлгэрэнгүй" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Та үнэлгээ оруулсан байх шаардлагатай (параметр\"үнэлгээ\")" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Нуух" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Үнэлгээ бүхэл тоон утгатай байх ёстой" -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/action/create.py:905 #, 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" +msgid "Rating must be between %i and %i." +msgstr "Үнэлгээ %i - с %i - н хооронд байх ёстой" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Хариуцагч CKAN" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Та хэрэглэгчдийг дагахын тулд нэвтрэх хэрэгтэй." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Систем админы тохиргоо." +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Та өөрийгөө дагаж болохггүй." -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Хувийн мэдээлэл үзэх" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Та аль хэдийн дагаж байна {0}" -#: ckan/templates/header.html:26 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "Удирдлагын самбар (%(num)d шинэ зүйл)" -msgstr[1] "Удирдлагын самбар (%(num)d шинэ зүйлс)" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Өгөгдлийн бүрдлийг дагахын тулд нэвтрэх ёстой." -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Хяналтын самбар" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr " {username} нэртэй хэрэглэгч олдсонгүй." -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Тохиргоог өөрчлөх" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Та бүлэг дагахын тулд нэвтрэх хэрэгтэй." -#: ckan/templates/header.html:37 -msgid "Settings" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Системээс гарах" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: %s багцыг устгах." -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Нэвтрэх" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: %s - г устгах" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Бүртгүүлэх" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Гишүүн устгах: %s" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Өгөгдлийн бүрдлүүд" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "өгөгдөлд дугаар байхгүй байна" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Өгөгдлийн бүрдлүүдийг хайх" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "\"%s\" үгсийн сан олдсонгүй." -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Хайх" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "\"%s\" шошго олдсонгүй." -#: ckan/templates/page.html:6 -msgid "Skip to content" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." msgstr "" +"Та ямар нэгэн зүйлийг дагахаа болихын тулд нэвтэрсэн байх шаардлагатай." -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Хураангуй" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Та дагаагүй байна {0}." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Дэлгэрэнгүй" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Материал олдсонгүй" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "Үйл ажиллагааны урсгалд ямар нэгэн үйл ажиллагаа байхгүй байна" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr " \"query\" параметрыг ашиглаж байгаа бол битгий онцлог шинж тодорхойл" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Удирдлага" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr ": гэсэн хос(ууд) байх ёстой." -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Системийн админууд" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "\"{field}\" талбар нь нөөцийн хайлтад танигдах боломжгүй." -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Тохиргоо" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Багц олдсонгүй" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Хогын сав" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: %s объектийг шинэчлэх" -#: ckan/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "Та тохиргоог дахин шинэчлэхдээ итгэлтэй байна уу?" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Багцын хамаарлыг шинэчлэх: %s %s %s" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Шинэчлэх" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "Даалгаврын төлөв олдсонгүй" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Тохиргоог шинэчлэх" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Байгууллага олдсонгүй" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN тохиргооны сонголтууд" +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 #, 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> хуудас бүрийн шошго. Та загваруудыг илүү " -"өөрчилхийг хүсэж байгаа бол бид энийг зөвлөж байна баримт бичгийг унших.

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

" +msgid "User %s not authorized to edit these groups" +msgstr "%s хэрэглэгч тус бүлгүүдийг өөрчлөх эрхгүй байна" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Шинэчлэхийг зөвшөөрөх" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "%s хэрэглэгч энэ байгуулагад өгөгдлийн бүрдэл нэмэх эрхгүй байна." -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "Энэ нөөцөд тохирох багц олдсонгүй, auth -ийг шалгаж чадахгүй байна." + +#: ckan/logic/auth/create.py:76 #, 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

" +msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "%s хэрэглэгч эдгээр багцуудыг өөрчлөх эрхгүй байна." -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "%s хэрэглэгч бүлэг үүсгэх эрхгүй байна" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN өгөгдлийн API" +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "%s хэрэглэгч байгууллага үүсгэх эрхгүй байна" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "" -"Өндөр түвшний хайлт хийх боломж бүхий веб API-н тусламжтайгаар нөөц өгөгдөлд" -" хандана" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "{user} API-аар хэрэглэгчдийг үүсгэх эрхгүй." -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Хэрэглэгч үүсгэх эрхгүй байна." -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Төгсгөлийн цэгүүд" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Бүлэг олдсонгүй." -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "API-н өгөгдөлд CKAN болон API-н үйлдлээр дамжиж хандах боломжтой." +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Багц үүсгэхийн тулд хүчин төгөлдөр API түлхүүр хэрэгтэй." -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Үүсгэх" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Бүлэг үүсгэхэд хүчин төгөлдөр API түлхүүр хэрэгтэй." -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Шинэчлэх/ Оруулах" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "%s хэрэглэгч гишүүн нэмэх эрхгүй байна" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Хүсэлт" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "%s хэрэглэгч %s бүлгийг өөрчлөх эрхгүй байна" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Хүсэлт (SQL - ээр)" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "%s хэрэглэгч %s материалыг устгах эрхгүй байна" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Боловсруулж байна" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Хүсэлтийн жишээ (эхний 5 үр дүн)" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "%s хэрэглэгч %s хамаарлыг устгах эрхгүй байна." -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Хүсэлтийн жишээ ('jones'-г агуулсан үр дүн)" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "%s хэрэглэгч бүлэг устгах эрхгүй байна" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Хайлтын агуулгын жишээ (SQL загвараар)" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "%s хэрэглэгч %s бүлэг устгах эрхгүй байна" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Жишээ нь: Javascript" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "%s хэрэглэгч байгууллага устгах эрхгүй байна" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "jQuery ашиглан өгөгдлийн API-д хандах энгийн ajax хүсэлт (JSONP)." +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "%s хэрэглэгч %s байгууллагыг устгах эрхгүй байна" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Жишээ нь: Python" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "%s хэрэглэгч task_status -г устгах эрхгүй байна" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "Одоогоор тус материалыг харуулах боломжгүй." +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Зөвшөөрөгдөөгүй байна." -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Дэлгэрэнгүй мэдээллийг энд дарж үзнэ үү." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "%s хэрэглэгч нь эдгээр багцуудыг унших эрхгүй байна." -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Материал татах" +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Хэрэглэгч %s нь %s багцыг унших эрхгүй байна." -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Таны интернет хөтөч iframes -г дэмжих боломжгүй." +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "%s хэрэглэгч %s материалыг унших эрхгүй байна" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Урьдчилж харах боломжгүй." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Илүү дэлгэрэнгүй..." +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "" +"Та өөрийн хяналтын самбартаа хандахын тулд нэвтэрсэн байх шаардлагатай." -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:39 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Дараах өгөгдлийн төрлийг боловсруулах боломжгүй: %(type)s." +msgid "User %s not authorized to edit package %s" +msgstr "%s хэрэглэгч нь %s багцыг өөрчлөх эрхгүй байна." -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Стандарт" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "%s хэрэглэгч %s материалд өөрчлөлт хийх эрхгүй байна" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Стандарт оролт" +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "%s хэрэглэгч %s багцын төлвийг өөрчлөх эрхгүй байна" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Дундаж" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "%s хэрэглэгч %s байгууллагыг өөрчлөх эрхгүй байна" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Оролтын дундаж өргөн" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "%s хэрэглэгч %s бүлгийн төлвийг өөрчлөх эрхгүй байна" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Дүүрэн" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "%s хэрэглэгч %s бүлэгт хамаарах зөвшөөрлүүдийг өөрчлөх эрхгүй байна" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Оролтын бүтэн өргөн" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Хэрэглэгчийг өөрчлөхийн тулд нэвтэрсэн байх шаардлагатай." -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Том" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "%s хэрэглэгч %s хэрэглэгчийг өөрчлөх эрхгүй байна" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Том оролт" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Зайлшгүй талбар" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr " %s хэрэглэгч засварын төлвийг өөрчлөх эрхгүй." -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Толгой оролт" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr " %s хэрэглэгч task_status хүснэгтийг өөрчлөх эрхгүй." -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Тохиргооны талбар (хоосон)" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr " %s хэрэглэгч term_translation хүснэгтийг өөрчлөх эрхгүй." -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Тохиргооны талбар" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Багцыг засварлахын тулд хүчин төгөлдөр API түлхүүр хэрэгтэй." -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Доош тэмдэглэгээ" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Бүлгийг засварлахад хүчин төгөлдөр API түлхүүр хэрэгтэй." -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Текст оруулах талбар" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Сонгох" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Үйл ажиллагааны урсгал" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: 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/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Бүлэг нэмэх" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Бүлгийн маягт" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: 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/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "Та {name} бүлгийг устгахдаа итгэлтэй байна уу?" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Үнэгүй гарын авлагын лиценз." -#: 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/model/license.py:301 +msgid "Other (Open)" +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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Удирдах" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Бусад (Нээлттэй домайн)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Бүлгийг засварлах" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +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/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "Английн Нээлттэй засгийн газрын лиценз (OGL)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Дагагчид" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Энгийн иргэдийн арилжааны бус бүтээл (Ямар нэгэн)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Түүх" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Бусад (Арилжааны бус)" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Бүлэг нэмэх" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Бусад (Нээлттэй биш)" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Бүлгүүд хайх..." +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "%s-аас хамаардаг" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Нэр өсөх дарааллаар" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "нь %s-тай хамааралтай " -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Нэр буурах дарааллаар" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "%s-с удамшсан" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "Энэ сайтад одоогоор ямарч бүлэг байхгүй байна" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "Гаргалгаа %s байна" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Нэгийг үүсгэх үү?" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "%s - н холбоосууд." -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "Гишүүдийн жагсаалт руу буцах" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "%s -с холбогдсон" -#: 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/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "%s - ийн хүүхэд." -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Гишүүн нэмэх" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "%s - ийн эцэг." -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Өмнө нь байсан хэрэглэгч" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "Ах дүү %s байна" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Хэрэв та бүртгэлтэй хэрэглэгч нэмэхийг хүсч байвал дараах талбарт " -"хэрэглэгчийн нэрийг бичиж хайна уу." +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Тус материалыг ачааллах API өгөгдөл байхгүй байна" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "эсвэл" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Өгөгдлийн API мэдээллийг ачааллахад алдаа гарлаа" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Шинэ хэрэглэгч" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Бичиж эхлэнэ үү..." -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "Та шинэ хэрэглэгч урих бол имэйл хаягийг нь оруулна уу" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Тохирох зүйл олдсонгүй" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Хэрэглэгчийн төрөл" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Та энэ гишүүнийг устгахдаа итгэлтэй байна уу?" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Энэ маягтанд хадгалагдаагүй өөрчлөлтүүд байна." -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Устгах" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Үйлдлээ баталгаажуулна уу" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Хадгалах" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Та тус үйлдлийг гүйцэтгэхдээ итгэлтэй байна уу?" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Хэрэглэгчийн төрөл гэж юу вэ?" - -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

Админ нь: Байгууллагын хэрэглчдийн тохиргоог хийхээс " -"гадна бүлгийн мэдээллийг засварлах боломжтой.

Хэрэглэгч " -"нь: групын өгөгдлийн бүрдлийг нэмэх болон устгах боломжтой.

" - -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" -msgstr "Бүлэг үүсгэх" - -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Бүлэг засварлах" - -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Бүлэг үүсгэх" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Зөвшөөрөх" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Хамаарал" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Сүүлд өөрчлөгдсөн" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Дагахаа болих" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Түгээмэл" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Дагах" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Өгөгдлийн бүрдлүүдийг хайх..." +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Холбоос" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr " {group} бүлгийн өгөгдлийн бүрдлүүд" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Интернетэд байрлах замтай холбох (мөн API-тай холбож болно)" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Засварын сүүлийн түүх" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Хуулах" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Нэр" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Устгах" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Миний бүлэг" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Компьютерээс файл хуулах" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "миний бүлэг" +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Тайлбар" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Файл" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Миний бүлгийн тухай товч мэдээлэл..." +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Дарааллыг хадгалах" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Та энэ бүлгийг устгахдаа итгэлтэй байна уу?" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Хадгалж байна.." -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Бүлэг хадгалах" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Файл хуулах" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} Өгөгдлийн бүрдэл" -msgstr[1] "{num} Өгөгдлийн бүрдлүүд" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Алдаа гарлаа" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Өгөгдлийн бүрдлүүд" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Файлыг хуулах боломжгүй байна" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "{name} -г харах" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Хуулах эрхийг баталгаажуулах боломжгүй байна" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Тус бүлгээс өгөгдлийн бүрдлийг устгах" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Материал хуулагдлаа" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Бүлгүүд гэж юу вэ?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Хуулсан файлын мэдээллийг авах боломжгүй" -#: ckan/templates/group/snippets/helper.html:8 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 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. " +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" msgstr "" -"Өгөгдлийн бүрдлийн цуглуулгыг үүсгэх болон зохион байгуулахад CKAN-н Бүлгийг" -" ашиглах боломжтой. Ангилсан өгөгдлийн бүрдлийг ашиглах хэрэгцээтэй төслийн " -"баг, хэлэлцүүлгийн сэдэв, хувь хүн болон та өөрөө нээлттэй өгөгдлийн " -"бүрдлээс хялбараар хайх боломж олгоно." +"Та яг одоо файл хуулж байна. Хуулж байгаа файлаа зогсоогоод гарахдаа " +"итгэлтэй байна уу." -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Харьцуулах" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Устсан" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "цааш унших" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Засварлах" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Засвар" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Дэлгэрэнгүй" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Хугацааны тамга" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Нуух" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Зохиогч" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Алдаа %(error_code)s" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Бүртгэлийн зурвас" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "{0} -ийн тухай" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Тавтай морилно уу?" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" -#: ckan/templates/home/snippets/about_text.html:1 +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 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/

" +"Powered by CKAN" 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" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "CKAN-д тавтай морил" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +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 ны талаарх хураангуй мэдээлэл байна. Бидэнд энэ мэдээний хуулбар" -" байхгүй байна гэхдээ удахгүй хуулбартай болох болно." +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Хувийн мэдээлэл үзэх" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Энэ бол онцлох хэсэг." +#: ckan/templates/header.html:26 +#, 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/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Хяналтын самбар" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Тохиргоог өөрчлөх" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" +#: ckan/templates/header.html:37 +msgid "Settings" msgstr "" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} статистик" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Системээс гарах" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "өгөгдлийн бүрдэл" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Нэвтрэх" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "өгөгдлийн бүрдлүүд" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Бүртгүүлэх" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "байгууллагууд" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Өгөгдлийн бүрдлүүд" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "бүлгүүд" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Өгөгдлийн бүрдлүүдийг хайх" -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Хайх" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Тус талбарыг бөглөх шаардлагатай" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Дурын" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Хураангуй" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Тус маягтанд тохирохгүй агуулгууд байна:" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Дэлгэрэнгүй" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Шаардлагатай талбар" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Үйл ажиллагааны урсгалд ямар нэгэн үйл ажиллагаа байхгүй байна" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Удирдлага" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "Зургийн URL" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Системийн админууд" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Файлуудыг цэвэрлэх" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Тохиргоо" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Байгууллагын маягт" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Хогын сав" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Өгөгдлийн бүрдлүүдийг өөрчлөх" +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Та тохиргоог дахин шинэчлэхдээ итгэлтэй байна уу?" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Өгөгдлийн бүрдэл нэмэх" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Шинэчлэх" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "\"{query}\" -н үр дүн олдлоо" +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Тохиргоог шинэчлэх" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Уучлаарай, \"{query}\" - д хамаарах өгөгдлийн бүрдэл олдсонгүй." +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN тохиргооны сонголтууд" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Нээлттэй болгох" +#: ckan/templates/admin/config.html:33 +#, 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/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Хаалттай болгох" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Шинэчлэхийг зөвшөөрөх" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Төсөл" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Хувийн" +#: 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/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Тус байгууллагад хамааралтай өгөгдлийн бүрдэл алга байна" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "Та {name} байгууллагыг устгахдаа итгэлтэй байна уу?" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +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/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Одоогоор тус материалыг харуулах боломжгүй." -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Байгууллага нэмэх" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Дэлгэрэнгүй мэдээллийг энд дарж үзнэ үү." -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "Байгууллагууд хайх..." +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Материал татах" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "Одоогоор тус сайтад ямар ч байгууллага байхгүй байна." +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Урьдчилж харах боломжгүй." -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Хэрэглэгчийн нэр" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Илүү дэлгэрэнгүй..." -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -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/organization/member_new.html:62 -msgid "Update Member" -msgstr "Гишүүн шинэчлэх" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Стандарт" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

Админ нь: Байгууллагын гишүүдийг тохируулахаас гадна " -"өгөгдлийн бүрдлүүдийг нэмэх болон устгах боломжтой.

" -"

Засварлагч нь: Өгөгдлийн бүрдлийг нэмэх болон устгах " -"боломжтой боловч байгууллагын гишүүдийг тохируулах боломжгүй.

" -"

Гишүүн нь: Байгууллагын хаалттай өгөгдлийн бүрдлийг үзэх" -" боломжтой боловч шинээр нэмэх боломжгүй.

" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Стандарт оролт" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Байгууллага үүсгэх" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Дундаж" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Зохион байгуулалт шинэчлэх" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Оролтын дундаж өргөн" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Байгууллага үүсгэх" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Дүүрэн" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Өгөгдлийн бүрдэл нэмэх" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Оролтын бүтэн өргөн" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Том" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Байгууллага гэж юу вэ?" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +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).

" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Зайлшгүй талбар" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Толгой оролт" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Тохиргооны талбар (хоосон)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Тохиргооны талбар" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Доош тэмдэглэгээ" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Текст оруулах талбар" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Сонгох" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Үйл ажиллагааны урсгал" + +#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 +#: ckan/templates/organization/admins.html:3 +#: ckan/templates/organization/admins.html:6 +msgid "Administrators" +msgstr "Удирдагчид" + +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Бүлэг нэмэх" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Бүлгийн маягт" + +#: ckan/templates/group/confirm_delete.html:3 +#: ckan/templates/group/confirm_delete.html:15 +#: ckan/templates/group/confirm_delete_member.html:3 +#: ckan/templates/group/confirm_delete_member.html:16 +#: ckan/templates/organization/confirm_delete.html:3 +#: ckan/templates/organization/confirm_delete.html:15 +#: ckan/templates/organization/confirm_delete_member.html:3 +#: ckan/templates/organization/confirm_delete_member.html:16 +#: ckan/templates/package/confirm_delete.html:3 +#: ckan/templates/package/confirm_delete.html:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +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:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Удирдах" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Бүлгийг засварлах" + +#: ckan/templates/group/edit_base.html:23 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/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Түүх" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Бүлэг нэмэх" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Бүлгүүд хайх..." + +#: ckan/templates/group/index.html: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:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Гишүүн нэмэх" + +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Өмнө нь байсан хэрэглэгч" + +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" +"Хэрэв та бүртгэлтэй хэрэглэгч нэмэхийг хүсч байвал дараах талбарт " +"хэрэглэгчийн нэрийг бичиж хайна уу." + +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "эсвэл" + +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Шинэ хэрэглэгч" + +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Та шинэ хэрэглэгч урих бол имэйл хаягийг нь оруулна уу" + +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Хэрэглэгчийн төрөл" + +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Та энэ гишүүнийг устгахдаа итгэлтэй байна уу?" + +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Устгах" + +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Хэрэглэгчийн төрөл гэж юу вэ?" -#: ckan/templates/organization/snippets/helper.html:8 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" msgstr "" -"CKAN дахь байгууллагууд нь өгөгдлийн бүрдлийг үүсгэх, зоион байгуулах болон " -"нийтлэхэд ашиглагдана. Өгөгдлийн бүрдлийг үүсгэх, засварлах болон нийтлэх " -"эрхээс хамаарч байгууллагын хэрэглэгчдийн төрөл өөр байж болно." - -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Миний байгууллага" +"

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

Хэрэглэгч " +"нь: групын өгөгдлийн бүрдлийг нэмэх болон устгах боломжтой.

" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "миний байгууллага" +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Бүлэг үүсгэх" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Миний байгууллагийн талаар товч мэдээлэл" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Бүлэг засварлах" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" -"Та тус байгууллагыг устгахдаа итгэлтэй байна уу? Ингэснээр тухайн " -"байгууллагад хамааралтай нээлттэй болон хаалттай өгөгдлийн бүрдлүүд устана." +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Бүлэг үүсгэх" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Байгууллага хадгалах" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Өгөгдлийн бүрдлүүдийг хайх..." -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Харагдац {organization_name}" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr " {group} бүлгийн өгөгдлийн бүрдлүүд" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Өгөгдлийн бүрдэл үүсгэх" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Засварын сүүлийн түүх" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Өгөгдлийн бүрдэл гэж юу вэ?" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Нэр" -#: ckan/templates/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/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Миний бүлэг" -#: ckan/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "Та {name} өгөгдлийн бүрдлийг устгахдаа итгэлтэй байна уу?" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "миний бүлэг" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "Та {name} материалыг устгахдаа итгэлтэй байна уу?" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Миний бүлгийн тухай товч мэдээлэл..." -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Өгөгдлийн бүрдлийг харах" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Та энэ бүлгийг устгахдаа итгэлтэй байна уу?" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Мета-өгөгдөлийг өөрчлөх" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "{name} -г харах" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Урьдчилан харах" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Тус бүлгээс өгөгдлийн бүрдлийг устгах" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Шинэчлэх" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Бүлгүүд гэж юу вэ?" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -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/package/group_list.html:14 -msgid "Add to group" -msgstr "Бүлэгт нэмэх" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Харьцуулах" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "Энэхүү өгөгдлийн бүрдэлтэй холбоотой бүлэг алга байна." +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Устсан" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Өгөгдлийн бүрдлийг шинэчлэх" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "цааш унших" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Өгөгдлийн бүрдэлд өгөгдөл нэмэх" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Засвар" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "Шинэ материал нэмэх" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Хугацааны тамга" -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "Материал нэмэх" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Зохиогч" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Шинэ материал" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Бүртгэлийн зурвас" -#: ckan/templates/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/home/index.html:4 +msgid "Welcome" +msgstr "Тавтай морилно уу?" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/home/snippets/about_text.html:1 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"

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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Нэмэх" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "CKAN-д тавтай морил" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"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 "" -"Энэ нь өгөгдлийн бүрдлийн өмнөх засвар бөгөөд %(timestamp)s -д " -"засварлагдсан. Иймд одоогийн хувилбараас зөрүүтэй " -"байж болно." - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Өгөгдлийн нөөцөд байршуулах" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Серверт хуулах үед гарсан алдаа:" +"Энэ нь CKAN ны талаарх хураангуй мэдээлэл байна. Бидэнд энэ мэдээний хуулбар" +" байхгүй байна гэхдээ удахгүй хуулбартай болох болно." -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Алдаа:" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Энэ бол онцлох хэсэг." -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" msgstr "" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Төлөв" - -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Сүүлд шинэчлэгдсэн" - -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Хэзээ ч үгүй" - -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Бүртгэл оруулах" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Дэлгэрэнгүй байдал" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "Бүртгэлийн төгсгөл" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} статистик" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Бүх материалууд" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "өгөгдлийн бүрдэл" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Материал харах" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "өгөгдлийн бүрдлүүд" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Материал засварлах" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "байгууллагууд" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "Өгөгдлийн агуулах" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "бүлгүүд" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" msgstr "" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API - н төгсгөлийн цэг" - -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Материал руу очих" - -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Татах" - -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" - -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Өгөгдлийн бүрдэлийн товчлолоос" - -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Эх сурвалж нь: %(dataset)s" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." +msgid "" +"You can use Markdown formatting here" msgstr "" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Тус талбарыг бөглөх шаардлагатай" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Дурын" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Тус маягтанд тохирохгүй агуулгууд байна:" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Шаардлагатай талбар" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Нэмэлт мэдээлэл" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "Зургийн URL" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Талбар" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Файлуудыг цэвэрлэх" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Утга" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Байгууллагын маягт" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "Тодорхой бус" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Өгөгдлийн бүрдлүүдийг өөрчлөх" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Үүссэн" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Өгөгдлийн бүрдэл нэмэх" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Хэлбэр" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "\"{query}\" -н үр дүн олдлоо" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Ашиглах зөвшөөрөл" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Уучлаарай, \"{query}\" - д хамаарах өгөгдлийн бүрдэл олдсонгүй." -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Нээлттэй болгох" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Хаалттай болгох" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Шинэ нөөц үүсгэх" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Төсөл" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

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

" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Хувийн" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Тус байгууллагад хамааралтай өгөгдлийн бүрдэл алга байна" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API бичиг баримтууд" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Та {name} байгууллагыг устгахдаа итгэлтэй байна уу?" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "бүтэн {format} хэлбэрээр гаргаж авах" +#: 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/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/organization/index.html:29 +msgid "There are currently no organizations for this site" +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 "" -"Та %(api_link)s -ийг ашиглан бүртгүүлж болно (%(api_doc_link)s -ээс харна " -"уу)." +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Хэрэглэгчийн нэр" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" msgstr "" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Гишүүн шинэчлэх" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" +#: ckan/templates/organization/member_new.html:81 +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/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/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Байгууллага үүсгэх" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Хувилбар" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Зохион байгуулалт шинэчлэх" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Төлөв байдал" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Байгууллага үүсгэх" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Өгөгдлийн бүрдэл нэмэх" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Байгууллага гэж юу вэ?" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Өгөгдлийн API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Миний байгууллага" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Гарчиг" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "миний байгууллага" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "жишээ нь: Жишээ гарчиг" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Миний байгууллагийн талаар товч мэдээлэл" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "жишээ нь: Миний - өгөгдлийн бүрдэл" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Та тус байгууллагыг устгахдаа итгэлтэй байна уу? Ингэснээр тухайн " +"байгууллагад хамааралтай нээлттэй болон хаалттай өгөгдлийн бүрдлүүд устана." -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "жишээ нь: Өгөгдлийн зарим хэрэгцээтэй тэмдэглэл" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Байгууллага хадгалах" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"Лицензийн тодорхойлолт болон нэмэлт мэдээлллийг opendefinition.org-с авах " -"боломжтой." - -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Байгууллага" +"CKAN Өгөгдлийн бүрдэл гэж тайлбар болон бусад дэлгэрэнгүй мэдээлэл бүхий " +"материалууд (файл гэх мэт) бөгөөд тогтсон зам дээр байршуулсан цуглуулга " +"юм. Хэрэглэгч өгөгдөл хайж байхдаа үзэх боломжтой зүйлийг өгөгдлийн бүрдэл " +"гэнэ." -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Зохион байгуулалтгүй" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Та {name} өгөгдлийн бүрдлийг устгахдаа итгэлтэй байна уу?" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Харагдац" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Та {name} материалыг устгахдаа итгэлтэй байна уу?" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Нээлттэй" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Өгөгдлийн бүрдлийг харах" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Идэвхитэй" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +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." +#: 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/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "Та тус өгөгдлийн бүрдлийг устгахдаа итгэлтэй байна уу?" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Урьдчилан харах" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Дараагийн: Өгөгдөл нэмэх" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +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/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Энэ бүлгийг тус өгөгдлийн бүрдэлтэй холбох" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Өгөгдлийн бүрдлийг шинэчлэх" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Зохиогчийн имэйл" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Шинэ материал нэмэх" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Материалыг шинэчлэх" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Шинэ материал" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: 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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: 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/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "Ж-нь: 2011-01 Алны үнэ" - -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Өгөгдлийн тухай зарим ашигтай тэмдэглэл" - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "Жишээ нь: CSV, XML эсвэл JSON" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Нэмэх" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Энэ нь өгөгдлийн бүрдлийн өмнөх засвар бөгөөд %(timestamp)s -д " +"засварлагдсан. Иймд одоогийн хувилбараас зөрүүтэй " +"байж болно." -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "Жишээ нь: 2012-06-05" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Бүх материалууд" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Файлын хэмжээ" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Материал харах" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "Жишээ нь: 1024" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Материал засварлах" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr " MIME Төрөл" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "Ж-нь: application/json" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API - н төгсгөлийн цэг" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Тус материалыг устгахдаа итгэлтэй байна уу?" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Материал руу очих" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Өмнөх" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Татах" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Хадгалах мөн өөрийг нэмэх" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Дуусгах" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Өгөгдлийн бүрдэлийн товчлолоос" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Материал гэж юу вэ?" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Эх сурвалж нь: %(dataset)s" -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." msgstr "" -"Материал нь хэрэгцээтэй өгөгдөл агуулж буй файл эсвэл файлын холбоосыг " -"хэлнэ." -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Шинжих" - -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Дэлгэрэнгүй мэдээлэл" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Шигтгэх" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 +#: ckan/templates/package/resource_read.html:122 msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +"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/snippets/resource_view.html:69 -msgid "Width" -msgstr "" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Нэмэлт мэдээлэл" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Талбар" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Код" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Утга" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Өгөгдөл ба материал" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "Тодорхой бус" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "%s -ийн өгөгдлийн бүрдэлийг унших" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Үүссэн" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Өгөгдлийн бүрдэл үүсгэх" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +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/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Ашиглах зөвшөөрөл" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" msgstr "" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Шинэ нөөц үүсгэх" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, 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/snippets/view_form_filters.html:28 -msgid "Remove Filter" +#: 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/snippets/view_form_filters.html:46 -msgid "Filters" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" msgstr "" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" msgstr "" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" msgstr "" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Ялгаа" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Засварын ялгаа" - -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Ялгаа" - -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Ялгаагүй" - -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Засварын түүх" - -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Засварууд" - -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Сэргээх" - -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Өөрчлөлтүүд" - -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Өгөгдлийн бүрдлүүдийн шошго" - -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Хуулийн этгээд" - -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Шинэ үйл ажиллагааны нэгж" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Нэмэлт мэдээлэл" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Шигтгэсэн өгөгдөл харагч" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Эх сурвалж" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -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/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Пикселээр өндөр болон өргөнийг сонгох" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Хувилбар" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Өргөн:" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Төлөв байдал" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Өндөр:" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Өгөгдөл оруулагчийн төлөв: {status}." +#: 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/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Мөшгих зам" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Дэлгэрэнгүй харуулах {facet_type}" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Зөвхөн түгээмлийг харуулах {facet_type}" +#: 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/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Тус хайлтанд таарах {facet_type} байхгүй байна." +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Гарчиг" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Нүүр" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "жишээ нь: Жишээ гарчиг" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Хэл" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "жишээ нь: Миний - өгөгдлийн бүрдэл" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Гүйцэтгэ." +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "жишээ нь: Өгөгдлийн зарим хэрэгцээтэй тэмдэглэл" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "Ямар ч лиценз өгөгдөөгүй" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "жишээ нь: эдийн засаг, сэтгэцийн эрүүл мэнд, засаг" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " msgstr "" -"Энэ өгөгдлийн бүрдэл нь Нээлттэй тодорхойлолтын шаардлагыг хангаж байна." - -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Энэхүү байгууллагын тухай тайлбар байхгүй байна" +"Лицензийн тодорхойлолт болон нэмэлт мэдээлллийг opendefinition.org-с авах " +"боломжтой." -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Тус өгөгдлийн бүрдэл тайлбаргүй байна" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Байгууллага" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Батлах" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Зохион байгуулалтгүй" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Дараахаар эрэмбэлэх" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Харагдац" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Үр дүнг шүүх" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Нээлттэй" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

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

" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Идэвхитэй" -#: ckan/templates/snippets/search_form.html:86 +#: ckan/templates/package/snippets/package_form.html:28 msgid "" -"

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

" +"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/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/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Та тус өгөгдлийн бүрдлийг устгахдаа итгэлтэй байна уу?" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "\"{query}\" - д тохирох өгөгдлийн багц олдсонгүй." +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Дараагийн: Өгөгдөл нэмэх" -#: 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/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/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Өгөгдлийн бүрдэл олдсонгүй" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +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/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/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "\"{query}\" холбогдолтой ямар ч бүлэг олдсонгүй" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Хариуцагчийн имэйл" -#: 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/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Материалыг шинэчлэх" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Бүлэг олдсонгүй" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +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/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "\"{query}\" -н үр дүнд байгууллага олдсонгүй" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "Ж-нь: 2011-01 Алны үнэ" -#: 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/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Өгөгдлийн тухай зарим ашигтай тэмдэглэл" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Ямарч байгууллага олдсонгүй" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "Жишээ нь: CSV, XML эсвэл JSON" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Олон нийтийн" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Захиалах" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "Жишээ нь: 2012-06-05" -#: 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:82 -msgid "Email" -msgstr "Имэйл" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Файлын хэмжээ" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "Жишээ нь: 1024" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Өөрчлөлтүүд" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr " MIME Төрөл" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Хайлтын шошгууд" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "Ж-нь: application/json" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Мэдээний сурвалж" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Тус материалыг устгахдаа итгэлтэй байна уу?" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Миний өгөгдлийн бүрдлүүд" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Өмнөх" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Миний байгууллагууд" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Хадгалах мөн өөрийг нэмэх" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Миний бүлгүүд" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Дуусгах" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Миний дагаж буй зүйлсийн үйл ажиллагаа" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Материал гэж юу вэ?" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -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/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Та одоо үүсгэх үү?" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Шинжих" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "Та аль ч бүлгийн гишүүн биш. " +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Дэлгэрэнгүй мэдээлэл" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Та аль ч байгуулагын гишүүн биш." +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +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/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Бүртгэлийн мэдээлэл" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "" -#: ckan/templates/user/edit.html:19 +#: ckan/templates/package/snippets/resource_view.html:66 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" msgstr "" -"Таны мэдээлэл CKAN-ын хэрэглэгчдэд таны хэн болох, юу хийдэг талаарх " -"мэдээлэл олгож өгнө." -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Дэлгэрэнгүйг өөрчлөх" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Овог нэр " +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "Жишээ нь: Joe Bloggs" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Код" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "Жишээ нь: joe@example.com" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Таны тухай товч мэдээлэл" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Өгөгдөл ба материал" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Шинэ мэдэгдэл хүлээж авах e-mail хаяг" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Нууц үг өөрчлөх" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "%s -ийн өгөгдлийн бүрдэлийг унших" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Өгөгдлийн бүрдэл үүсгэх" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Нууц үг" +#: ckan/templates/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/user/edit_user_form.html:39 -msgid "Confirm Password" -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/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Тус хэрэглэгчийг устгахдаа итгэлтэй байна уу?" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" msgstr "" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Профайл аа шинчлэх" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Ялгаа" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Бүх хэрэглэгчид" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Засварын ялгаа" -#: ckan/templates/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/revision/diff.html:44 +msgid "Difference" +msgstr "Ялгаа" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Хэрэглэгч болох уу?" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Ялгаагүй" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "Тэгвэл бүртгүүлэхэд ердөө ганц хором л шаардлагатай." +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Засварын түүх" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Бүртгүүлэх" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Засварууд" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Нууц үгээ мартсан уу?" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Сэргээх" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "Тэгвэл нууц үг солих маягтыг ашиглан шинэчлээрэй." +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Өөрчлөлтүүд" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Та нууц үгээ мартсан уу?" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Өгөгдлийн бүрдлүүдийн шошго" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Системээс гарах" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Хуулийн этгээд" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Та одоо системээс гарсан байна." +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Шинэ үйл ажиллагааны нэгж" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Та {user} хэрэглэгчээр нэвтэрсэн байна." +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Шигтгэсэн өгөгдөл харагч" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Гарах" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Өөрийн веб хуудсанд уг харагдаж буй хэсгийг хуулж оруулна уу:" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Намайг санах" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Пикселээр өндөр болон өргөнийг сонгох" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Та нэвтэрсэн байна" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Өргөн:" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "Өөр бүртгэлээр нэвтрэхийн тулд, эхлээд системээс гарах хэрэгтэй" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Өндөр:" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Яг одоо системээс гарах" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Өгөгдөл оруулагчийн төлөв: {status}." -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Бүртгэл" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Мөшгих зам" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Бүртгэл үүсгэх" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Дэлгэрэнгүй харуулах {facet_type}" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Яагаад бүртгүүлэх ёстой вэ?" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Зөвхөн түгээмлийг харуулах {facet_type}" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "Өгөгдлийн бүрдэл, бүлэг болон бусад хэрэгцээтэй зүйлсийг үүсгэх" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Тус хайлтанд таарах {facet_type} байхгүй байна." -#: ckan/templates/user/new_user_form.html:5 -msgid "username" +#: 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:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Гүйцэтгэ." + +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Ямар ч лиценз өгөгдөөгүй" + +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." msgstr "" +"Энэ өгөгдлийн бүрдэл нь Нээлттэй тодорхойлолтын шаардлагыг хангаж байна." -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Бүтэн нэр" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Энэхүү байгууллагын тухай тайлбар байхгүй байна" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Бүртгэл үүсгэх" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Тус өгөгдлийн бүрдэл тайлбаргүй байна" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Өөрийн нууц үг сэргээх" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Батлах" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Нууц үг сэргээх" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Дараахаар эрэмбэлэх" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Нууц үг шинэчлэх" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Үр дүнг шүүх" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Энэ яаж ажилладаг бэ?" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

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

" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "Шинэ нууц үгийг оруулсанаар бид таны мэдээллийг шинэчилнэ" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Таны намтар тодорхой бус байна." +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "\"{query}\" - д тохирох өгөгдлийн багц олдсонгүй." -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Энэ хэрэглэгч нь намтаргүй байна." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Нээлттэй ID" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Өгөгдлийн бүрдэл олдсонгүй" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Зөвхөн та үүнийг харах болно гэсэн утгатай" +#: ckan/templates/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/user/read_base.html:87 -msgid "Member Since" -msgstr "Гишүүн болсон" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Бүлэг олдсонгүй" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API Key" +#: 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/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Нууц үгээ сэргээх" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "\"{query}\" -н үр дүнд байгууллага олдсонгүй" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" +#: 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/user/request_reset.html:19 -msgid "Request reset" -msgstr "" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Ямарч байгууллага олдсонгүй" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Тус талбарт хэрэглэгчийн нэрийг оруулснаар шинэ нууц үг оруулах боломж бүхий" -" холбоосыг таны имэйл хаяг руу илгээнэ." +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Олон нийтийн" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Үйл ажиллагаа нь:" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Захиалах" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -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:82 +msgid "Email" +msgstr "Имэйл" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Та хэнийг ч дагаагүй байна" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Дагагчгүй" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Өөрчлөлтүүд" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Хэрэглэгчид хайх" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Хайлтын шошгууд" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Бүрэн дуусах" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Мэдээний сурвалж" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Хүлээгдэж байна" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Миний өгөгдлийн бүрдлүүд" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Илгээж байна" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Миний байгууллагууд" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Хараахан байршуулагдаагүй байна" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Миний бүлгүүд" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Өгөгдлийн агуулахын нөөц олдсонгүй" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Миний дагаж буй зүйлсийн үйл ажиллагаа" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Та ямар ч өгөгдлийн бүрдэл үүсгээгүй байна." -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "Нөөц \"{0}\" олдсонгүй." +#: 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:16 +msgid "Create one now?" +msgstr "Та одоо үүсгэх үү?" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "Хэрэглэгч {0} нөөц {1}-г шинэчлэх эрхгүй байна" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Та аль ч бүлгийн гишүүн биш. " -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Та аль ч байгуулагын гишүүн биш." -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -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 "Хэрэглэгчид" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Бүртгэлийн мэдээлэл" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/edit.html:19 +msgid "" +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" +"Таны мэдээлэл CKAN-ын хэрэглэгчдэд таны хэн болох, юу хийдэг талаарх " +"мэдээлэл олгож өгнө." -#: 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 "Дурын текст" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Дэлгэрэнгүйг өөрчлөх" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "дурын текст" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Овог нэр " -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Улсын код" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "Жишээ нь: Joe Bloggs" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "Жишээ нь: joe@example.com" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Таны тухай товч мэдээлэл" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Бүлэг танилцуулгагүй байна" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Шинэ мэдэгдэл хүлээж авах e-mail хаяг" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Нууц үг өөрчлөх" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Нууц үг" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Нууц үгээ баталгаажуулах" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Тус хэрэглэгчийг устгахдаа итгэлтэй байна уу?" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Профайл аа шинчлэх" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Бүх хэрэглэгчид" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -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 "Нэвтрэх" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Хэрэглэгч болох уу?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Тэгвэл бүртгүүлэхэд ердөө ганц хором л шаардлагатай." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Бүртгүүлэх" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Нууц үгээ мартсан уу?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "Тэгвэл нууц үг солих маягтыг ашиглан шинэчлээрэй." -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Та нууц үгээ мартсан уу?" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Системээс гарах" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Та одоо системээс гарсан байна." -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Та {user} хэрэглэгчээр нэвтэрсэн байна." -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Гарах" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Намайг санах" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Өгөгдлийн бүрдлийн нийт тоо" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Та нэвтэрсэн байна" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Огноо" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." +msgstr "Өөр бүртгэлээр нэвтрэхийн тулд, эхлээд системээс гарах хэрэгтэй" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Нийт өгөгдлийн бүрдлүүд" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Яг одоо системээс гарах" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "7 хоног бүрийн өгөгдлийн бүрдлийн засварууд" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Бүртгэл" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Өгөгдлийн нийт засварууд" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Бүртгэл үүсгэх" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Шинэ өгөгдлийн бүрдлүүд" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Яагаад бүртгүүлэх ёстой вэ?" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Өндөр үнэлгээтэй өгөгдлийн бүрдлүүд" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Өгөгдлийн бүрдэл, бүлэг болон бусад хэрэгцээтэй зүйлсийг үүсгэх" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Дундаж үнэлгээ" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Үнэлгээ хийгдсэн тоо" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Бүтэн нэр" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Үнэлгээ байхгүй" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Бүртгэл үүсгэх" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Их засварлагдсан өгөгдлийн бүрдлүүд" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Өөрийн нууц үг сэргээх" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Засварлагдсан тоо" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Нууц үг сэргээх" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Засварлагдаагүй өгөгдлийн бүрдлүүд" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Нууц үг шинэчлэх" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Хамгийн том бүлгүүд" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Энэ яаж ажилладаг бэ?" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Өгөгдлийн бүрдлүүд" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Шинэ нууц үгийг оруулсанаар бид таны мэдээллийг шинэчилнэ" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Бүлэг байхгүй" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Хэрэглэгч өгөгдлийн багц үүсгээгүй." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Шилдэг шошгууд" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Таны намтар тодорхой бус байна." -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Шошгын нэр" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Энэ хэрэглэгч нь намтаргүй байна." -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Өгөгдлийн бүрдлийн тоо" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Нээлттэй ID" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Зөвхөн та үүнийг харах болно гэсэн утгатай" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Статистикийн цэс" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Гишүүн болсон" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Нийт өгөгдлийн бүрдлийн тоо" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API Key" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Нууц үгээ сэргээх" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Тус талбарт хэрэглэгчийн нэрийг оруулснаар шинэ нууц үг оруулах боломж бүхий" +" холбоосыг таны имэйл хаяг руу илгээнэ." -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Үйл ажиллагаа нь:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Хайлтын жагсаалт..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Та хэнийг ч дагаагүй байна" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Дагагчгүй" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Хэрэглэгчид хайх" diff --git a/ckan/i18n/ne/LC_MESSAGES/ckan.mo b/ckan/i18n/ne/LC_MESSAGES/ckan.mo index 3b0c9f2e4e5..df0b88147f7 100644 Binary files a/ckan/i18n/ne/LC_MESSAGES/ckan.mo and b/ckan/i18n/ne/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/ne/LC_MESSAGES/ckan.po b/ckan/i18n/ne/LC_MESSAGES/ckan.po index 29fd30a2e83..009bbcb8101 100644 --- a/ckan/i18n/ne/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ne/LC_MESSAGES/ckan.po @@ -1,4568 +1,4561 @@ # Nepali translations for ckan. -# Copyright (C) 2015 ORGANIZATION +# Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2016. # -# Translators: -# manish dangol , 2015 -# Ngima Sherpa , 2015 +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: CKAN\n" +"Project-Id-Version: ckan 2.6.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" -"PO-Revision-Date: 2015-11-26 14:18+0000\n" -"Last-Translator: dread \n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Adrià Mercader , 2016\n" "Language: ne\n" -"Language-Team: Nepali (http://www.transifex.com/okfn/ckan/language/ne/)\n" +"Language-Team: Nepali (https://www.transifex.com/okfn/teams/11162/ne/)\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.3.4\n" +"Generated-By: Babel 2.4.0\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "प्रमाणीकरण कार्य फेला परेन: %s" - -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "व्यवस्थापक" - -#: ckan/authz.py:195 -msgid "Editor" -msgstr "सम्पादक" - -#: ckan/authz.py:199 -msgid "Member" -msgstr "सदस्य" - -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" msgstr "" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "साइट शीर्षक" - -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "शैली" - -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "साइट ट्याग रेखा" - -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "साइट ट्याग लोगो" - -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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 -msgid "About page text" -msgstr "पृष्ठ पाठ बारे" - -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "पहिचान पाठ" - -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "घर पेजमा पाठ" - -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Custom CSS" - -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "पृष्ठ हेडर मा सम्मिलित Customisable css गरियो" - -#: ckan/controllers/admin.py:57 -msgid "Homepage" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" msgstr "" -#: ckan/controllers/admin.py:160 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" msgstr "" -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" msgstr "" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" msgstr "" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" msgstr "" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 #: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" msgstr "" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" msgstr "" -#: ckan/controllers/api.py:134 -msgid "Bad request" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" msgstr "" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" msgstr "" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" msgstr "" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" msgstr "" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" msgstr "" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" msgstr "" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" msgstr "" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" msgstr "" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" msgstr "" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" +#: ckanext/datastore/controller.py:46 +#, python-format +msgid "format: must be one of %s" msgstr "" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" msgstr "" -#: ckan/controllers/api.py:498 -msgid "No revision specified" +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" msgstr "" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +" " msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" msgstr "" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" msgstr "" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." msgstr "" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" msgstr "" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." msgstr "" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" msgstr "" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" msgstr "" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" msgstr "" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" msgstr "" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" msgstr "" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" msgstr "" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." msgstr "" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" msgstr "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" msgstr "" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" msgstr "" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" msgstr "" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" msgstr "" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" msgstr "" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" msgstr "" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" msgstr "" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" msgstr "" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" msgstr "" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" msgstr "" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" +#: 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 "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" +#: 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/controllers/package.py:577 -msgid "Unauthorized to edit this resource" +#: 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 "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" +#: 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/controllers/package.py:654 -msgid "Unauthorized to update dataset" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" msgstr "" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" msgstr "" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" msgstr "" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" msgstr "" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" msgstr "" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" msgstr "" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" msgstr "" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" msgstr "" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" msgstr "" -#: ckan/controllers/package.py:1167 -msgid "No download is available" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" msgstr "" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" msgstr "" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" msgstr "" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" msgstr "" -#: ckan/controllers/package.py:1495 -msgid "View not found" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" msgstr "" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" msgstr "" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" msgstr "" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" msgstr "" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" msgstr "" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" msgstr "" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" msgstr "" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" msgstr "" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" msgstr "" -#: ckan/controllers/tag.py:60 -msgid "Other" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" msgstr "" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" msgstr "" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" msgstr "" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" msgstr "" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" msgstr "" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" msgstr "" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" msgstr "" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" msgstr "" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" msgstr "" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" msgstr "" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" msgstr "" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" msgstr "" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" msgstr "" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" msgstr "" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" msgstr "" -#: ckan/controllers/user.py:386 -msgid "incorrect password" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" msgstr "" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" msgstr "" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" msgstr "" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" msgstr "" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" msgstr "" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" msgstr "" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" msgstr "" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" msgstr "" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" msgstr "" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" msgstr "" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" msgstr "" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" msgstr "" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" msgstr "" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." msgstr "" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "प्रमाणीकरण कार्य फेला परेन: %s" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "व्यवस्थापक" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "सम्पादक" + +#: ckan/authz.py:202 +msgid "Member" +msgstr "सदस्य" + +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" msgstr "" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "साइट शीर्षक" + +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "शैली" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "साइट ट्याग रेखा" + +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "साइट ट्याग लोगो" + +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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:55 +msgid "About page text" +msgstr "पृष्ठ पाठ बारे" + +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "पहिचान पाठ" + +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "घर पेजमा पाठ" + +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Custom CSS" + +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "पृष्ठ हेडर मा सम्मिलित Customisable css गरियो" + +#: ckan/controllers/admin.py:58 +msgid "Homepage" msgstr "" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" msgstr "" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" msgstr "" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" msgstr "" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." msgstr "" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" msgstr "" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" msgstr "" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" +#: ckan/controllers/api.py:136 +msgid "Bad request" msgstr "" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" msgstr "" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" msgstr "" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" msgstr "" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" msgstr "" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" msgstr "" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" msgstr "" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" msgstr "" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" msgstr "" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" msgstr "" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" msgstr "" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" +#: ckan/controllers/api.py:500 +msgid "No revision specified" msgstr "" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" msgstr "" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" msgstr "" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" msgstr "" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" 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/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "" -#: ckan/lib/formatters.py:19 -msgid "January" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." msgstr "" -#: ckan/lib/formatters.py:23 -msgid "February" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" msgstr "" -#: ckan/lib/formatters.py:27 -msgid "March" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" msgstr "" -#: ckan/lib/formatters.py:31 -msgid "April" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" msgstr "" -#: ckan/lib/formatters.py:35 -msgid "May" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" msgstr "" -#: ckan/lib/formatters.py:39 -msgid "June" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 ckan/templates/group/edit_base.html:10 +#: 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:105 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" msgstr "" -#: ckan/lib/formatters.py:43 -msgid "July" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" msgstr "" -#: ckan/lib/formatters.py:47 -msgid "August" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" msgstr "" -#: ckan/lib/formatters.py:51 -msgid "September" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" msgstr "" -#: ckan/lib/formatters.py:55 -msgid "October" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" msgstr "" -#: ckan/lib/formatters.py:59 -msgid "November" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/lib/formatters.py:63 -msgid "December" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" msgstr "" -#: ckan/lib/formatters.py:116 -msgid "Just now" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" msgstr "" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" msgstr "" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" msgstr "" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." msgstr "" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." msgstr "" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." msgstr "" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" msgstr "" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/lib/formatters.py:189 -msgid "{n}" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/lib/formatters.py:191 -msgid "{k}k" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." msgstr "" -#: ckan/lib/formatters.py:193 -msgid "{m}M" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." msgstr "" -#: ckan/lib/formatters.py:195 -msgid "{g}G" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" msgstr "" -#: ckan/lib/formatters.py:197 -msgid "{t}T" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " msgstr "" -#: ckan/lib/formatters.py:199 -msgid "{p}P" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " msgstr "" -#: ckan/lib/formatters.py:201 -msgid "{e}E" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" msgstr "" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" msgstr "" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " msgstr "" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." msgstr "" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" msgstr "" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" msgstr "" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/mailer.py:39 +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 #, python-format -msgid "%s <%s>" +msgid "Invalid revision format: %r" msgstr "" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" msgstr "" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" msgstr "" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " msgstr "" -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" msgstr "" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" msgstr "" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" msgstr "" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." msgstr "" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." msgstr "" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." msgstr "" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." msgstr "" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" msgstr "" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" msgstr "" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" +#: ckan/controllers/package.py:1159 +msgid "No download is available" msgstr "" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" msgstr "" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" msgstr "" -#: ckan/logic/validators.py:199 -msgid "Resource" +#: ckan/controllers/package.py:1486 +msgid "View not found" msgstr "" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" msgstr "" -#: ckan/logic/validators.py:267 -msgid "Activity type" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" msgstr "" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" msgstr "" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." msgstr "" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "" + +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." msgstr "" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/revision.py:110 #, python-format -msgid "Name must be a maximum of %i characters long" +msgid "Datasets affected: %s.\n" msgstr "" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these " -"symbols: -_" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" msgstr "" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." +#: ckan/controllers/tag.py:60 +msgid "Other" msgstr "" -#: ckan/logic/validators.py:365 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" msgstr "" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." msgstr "" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" msgstr "" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." msgstr "" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" msgstr "" -#: ckan/logic/validators.py:415 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Tag \"%s\" length is less than minimum %s" +msgid "Unauthorized to edit user %s" msgstr "" -#: ckan/logic/validators.py:419 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" msgstr "" -#: ckan/logic/validators.py:427 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" msgstr "" -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:245 #, python-format -msgid "Tag \"%s\" must not be uppercase" +msgid "Unauthorized to create user %s" msgstr "" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." msgstr "" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." +#: ckan/controllers/user.py:265 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." msgstr "" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" +#: ckan/controllers/user.py:320 +#, python-format +msgid "User %s not authorized to edit %s" msgstr "" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" msgstr "" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" msgstr "" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." +#: ckan/controllers/user.py:386 +msgid "incorrect password" msgstr "" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." msgstr "" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." msgstr "" -#: ckan/logic/validators.py:633 +#: ckan/controllers/user.py:490 #, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" - -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." +msgid "\"%s\" matched several users" msgstr "" -#: ckan/logic/validators.py:655 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag %s does not belong to vocabulary %s" +msgid "No such user: %s" msgstr "" -#: ckan/logic/validators.py:661 -msgid "No tag name" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." msgstr "" -#: ckan/logic/validators.py:674 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag %s already belongs to vocabulary %s" +msgid "Could not send reset link: %s" msgstr "" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." msgstr "" -#: ckan/logic/validators.py:711 -msgid "role does not exist." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." msgstr "" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." msgstr "" -#: ckan/logic/validators.py:746 -msgid "Not a list" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." msgstr "" -#: ckan/logic/validators.py:749 -msgid "Not a string" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." msgstr "" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" msgstr "" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" msgstr "" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" +#: ckan/controllers/user.py:640 +msgid "{0} not found" msgstr "" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" +#: ckan/controllers/user.py:654 +msgid "Everything" msgstr "" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" msgstr "" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." msgstr "" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" msgstr "" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" msgstr "" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" msgstr "" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" msgstr "" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" msgstr "" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" msgstr "" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" msgstr "" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" msgstr "" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" msgstr "" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" msgstr "" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" msgstr "" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" msgstr "" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" msgstr "" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" msgstr "" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" msgstr "" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" msgstr "" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" msgstr "" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." +#: 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:19 +msgid "January" msgstr "" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" +#: ckan/lib/formatters.py:23 +msgid "February" msgstr "" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" +#: ckan/lib/formatters.py:27 +msgid "March" msgstr "" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." +#: ckan/lib/formatters.py:31 +msgid "April" msgstr "" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." +#: ckan/lib/formatters.py:35 +msgid "May" msgstr "" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" +#: ckan/lib/formatters.py:39 +msgid "June" msgstr "" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" +#: ckan/lib/formatters.py:43 +msgid "July" msgstr "" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." +#: ckan/lib/formatters.py:47 +msgid "August" msgstr "" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." +#: ckan/lib/formatters.py:51 +msgid "September" msgstr "" -#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 -#, python-format -msgid "User %s not authorized to create packages" +#: ckan/lib/formatters.py:55 +msgid "October" msgstr "" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" +#: ckan/lib/formatters.py:59 +msgid "November" msgstr "" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" +#: ckan/lib/formatters.py:63 +msgid "December" msgstr "" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." +#: ckan/lib/formatters.py:114 +msgid "Just now" msgstr "" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" msgstr "" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" msgstr "" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" msgstr "" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" msgstr "" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" msgstr "" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" msgstr "" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." +#: ckan/lib/formatters.py:187 +msgid "{n}" msgstr "" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" +#: ckan/lib/formatters.py:189 +msgid "{k}k" msgstr "" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" +#: ckan/lib/formatters.py:191 +msgid "{m}M" msgstr "" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" +#: ckan/lib/formatters.py:193 +msgid "{g}G" msgstr "" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" +#: ckan/lib/formatters.py:195 +msgid "{t}T" msgstr "" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" +#: ckan/lib/formatters.py:197 +msgid "{p}P" msgstr "" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." +#: ckan/lib/formatters.py:199 +msgid "{e}E" msgstr "" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" msgstr "" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" msgstr "" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" msgstr "" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" msgstr "" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." msgstr "" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." msgstr "" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." msgstr "" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/auth/get.py:176 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to read group %s" -msgstr "" - -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." +msgid "%s <%s>" msgstr "" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" msgstr "" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" msgstr "" -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" msgstr "" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" msgstr "" -#: ckan/logic/auth/update.py:145 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to change state of group %s" +msgid "The input field %(name)s was not expected." msgstr "" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" msgstr "" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" msgstr "" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" msgstr "" -#: ckan/logic/auth/update.py:216 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to change state of revision" +msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" msgstr "" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" msgstr "" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" msgstr "" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/model/license.py:222 -msgid "License not specified" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" msgstr "" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" msgstr "" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" msgstr "" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" msgstr "" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." msgstr "" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" msgstr "" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:200 +msgid "Resource" msgstr "" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." msgstr "" -#: ckan/model/license.py:301 -msgid "Other (Open)" +#: ckan/logic/validators.py:268 +msgid "Activity type" msgstr "" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" msgstr "" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" msgstr "" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" msgstr "" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" msgstr "" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." msgstr "" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" +msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" +msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" +msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" +msgid "Duplicate key \"%s\"" msgstr "" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" msgstr "" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" +msgid "Tag \"%s\" length is less than minimum %s" msgstr "" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" +msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" +msgid "Tag \"%s\" must not be uppercase" msgstr "" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" msgstr "" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." msgstr "" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" +#: ckan/logic/validators.py:662 +msgid "No tag name" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" +#: ckan/logic/validators.py:712 +msgid "role does not exist." msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" +#: ckan/logic/validators.py:747 +msgid "Not a list" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" +#: ckan/logic/validators.py:750 +msgid "Not a string" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop" -" this upload?" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." msgstr "" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." msgstr "" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" msgstr "" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" msgstr "" -#: ckan/templates/footer.html:9 -msgid "About {0}" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" msgstr "" -#: ckan/templates/footer.html:15 -msgid "CKAN API" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." msgstr "" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." msgstr "" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -#: ckan/templates/header.html:19 -msgid "View profile" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" msgstr "" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" +msgid "REST API: Delete %s" msgstr "" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/templates/header.html:37 -msgid "Settings" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" msgstr "" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 ckan/templates/user/read.html:5 -#: ckan/templates/user/read_base.html:19 ckan/templates/user/read_base.html:53 -msgid "Datasets" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." msgstr "" -#: ckan/templates/header.html:116 -msgid "Search Datasets" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." msgstr "" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/templates/page.html:6 -msgid "Skip to content" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" msgstr "" -#: ckan/templates/admin/base.html:3 -msgid "Administration" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" msgstr "" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." msgstr "" -#: ckan/templates/admin/base.html:9 -msgid "Config" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." msgstr "" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" msgstr "" -#: ckan/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" msgstr "" -#: ckan/templates/admin/config.html:17 -msgid "Reset" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" msgstr "" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." msgstr "" -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:76 #, 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.

" +msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" msgstr "" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" msgstr "" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:129 #, 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

" +msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -" " +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action" -" API." +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:128 #, python-format -msgid "No handler defined for data type: %(type)s." +msgid "User %s not authorized to edit organization %s" msgstr "" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" msgstr "" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" msgstr "" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" msgstr "" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" msgstr "" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" msgstr "" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" msgstr "" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" msgstr "" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" msgstr "" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" +#: ckan/model/license.py:222 +msgid "License not specified" msgstr "" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" msgstr "" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" 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" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" msgstr "" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" msgstr "" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" +#: ckan/model/license.py:301 +msgid "Other (Open)" msgstr "" -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:16 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -msgid "Confirm Delete" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" msgstr "" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" 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}?" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" 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:14 -#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 -#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 -msgid "Manage" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" msgstr "" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" 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" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" msgstr "" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" msgstr "" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" msgstr "" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" msgstr "" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" msgstr "" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" msgstr "" -#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 -msgid "How about creating one?" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" msgstr "" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" 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" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" msgstr "" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" msgstr "" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" msgstr "" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" msgstr "" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, fuzzy, 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/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" msgstr "" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" msgstr "" -#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" msgstr "" -#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" msgstr "" -#: ckan/templates/group/member_new.html:59 ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:61 -msgid "Save" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" msgstr "" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" msgstr "" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" msgstr "" -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" msgstr "" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" msgstr "" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" msgstr "" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" msgstr "" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" msgstr "" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" msgstr "" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." msgstr "" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" msgstr "" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" msgstr "" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" msgstr "" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" msgstr "" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" msgstr "" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" msgstr "" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" msgstr "" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" 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. " +#: ckan/templates/footer.html:9 +msgid "About {0}" msgstr "" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" +#: ckan/templates/footer.html:15 +msgid "CKAN API" msgstr "" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" msgstr "" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" +#: ckan/templates/header.html:19 +msgid "View profile" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" msgstr "" -#: ckan/templates/home/index.html:4 -msgid "Welcome" +#: ckan/templates/header.html:37 +msgid "Settings" 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/

" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" msgstr "" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" 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 " +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" msgstr "" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 ckan/templates/user/read.html:5 +#: ckan/templates/user/read_base.html:19 ckan/templates/user/read_base.html:53 +msgid "Datasets" msgstr "" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" +#: ckan/templates/header.html:116 +msgid "Search Datasets" msgstr "" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" msgstr "" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" +#: ckan/templates/page.html:6 +msgid "Skip to content" msgstr "" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" msgstr "" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" +#: ckan/templates/admin/base.html:3 +msgid "Administration" msgstr "" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" msgstr "" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "" + +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "" + +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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/macros/form.html:265 -msgid "This field is required" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" msgstr "" -#: ckan/templates/macros/form.html:265 -msgid "Custom" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" msgstr "" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" +#: 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/macros/form.html:395 -msgid "Required field" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" msgstr "" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" msgstr "" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." msgstr "" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." msgstr "" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" msgstr "" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." msgstr "" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." msgstr "" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." msgstr "" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" msgstr "" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" msgstr "" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" msgstr "" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" msgstr "" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 -#: ckan/templates/user/read_base.html:96 -msgid "Private" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" msgstr "" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" msgstr "" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" msgstr "" -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" msgstr "" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" msgstr "" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" msgstr "" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" msgstr "" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" msgstr "" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" msgstr "" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" msgstr "" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" msgstr "" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" msgstr "" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" +#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 +#: ckan/templates/organization/admins.html:3 +#: ckan/templates/organization/admins.html:6 +msgid "Administrators" +msgstr "" + +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "" + +#: ckan/templates/group/confirm_delete.html:3 +#: ckan/templates/group/confirm_delete.html:15 +#: ckan/templates/group/confirm_delete_member.html:3 +#: ckan/templates/group/confirm_delete_member.html:16 +#: ckan/templates/organization/confirm_delete.html:3 +#: ckan/templates/organization/confirm_delete.html:15 +#: ckan/templates/organization/confirm_delete_member.html:3 +#: ckan/templates/organization/confirm_delete_member.html:16 +#: ckan/templates/package/confirm_delete.html:3 +#: ckan/templates/package/confirm_delete.html:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" msgstr "" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" msgstr "" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" +#: 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/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 +msgid "Manage" msgstr "" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" 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).

" +#: ckan/templates/group/edit_base.html:23 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" 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. " +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all " -"the public and private datasets belonging to this organization." +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 +msgid "How about creating one?" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" msgstr "" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" +#: 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/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" msgstr "" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" 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. " +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -#: ckan/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" msgstr "" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" msgstr "" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" 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" +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" msgstr "" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" msgstr "" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" +#: ckan/templates/group/member_new.html:80 +msgid "" +"

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

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

" msgstr "" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" +#: 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/package/group_list.html:23 -msgid "There are no groups associated with this dataset" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" msgstr "" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" msgstr "" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." msgstr "" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" msgstr "" -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" msgstr "" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" msgstr "" -#: ckan/templates/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" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" 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. " +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" msgstr "" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." msgstr "" -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It " -"may differ significantly from the current " -"revision." +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" msgstr "" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" msgstr "" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" msgstr "" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" msgstr "" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" msgstr "" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" +#: 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/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" msgstr "" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" msgstr "" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" msgstr "" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" msgstr "" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" msgstr "" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" msgstr "" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" msgstr "" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" +#: ckan/templates/home/index.html:4 +msgid "Welcome" msgstr "" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" +#: 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/package/resource_edit_base.html:28 -msgid "Views" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" msgstr "" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" +#: 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/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" msgstr "" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" msgstr "" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" msgstr "" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" msgstr "" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" msgstr "" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" msgstr "" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" msgstr "" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" msgstr "" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" msgstr "" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" msgstr "" -#: ckan/templates/package/resource_read.html:125 +#: ckan/templates/macros/form.html:126 +#, python-format msgid "" -"If a view requires the DataStore, the DataStore plugin may not be " -"enabled, or the data may not have been pushed to the DataStore, or the " -"DataStore hasn't finished processing the data yet" -msgstr "" - -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" +"You can use Markdown formatting here" msgstr "" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" msgstr "" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" +#: ckan/templates/macros/form.html:265 +msgid "Custom" msgstr "" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" msgstr "" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" +#: ckan/templates/macros/form.html:395 +msgid "Required field" msgstr "" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" msgstr "" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" msgstr "" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" msgstr "" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" msgstr "" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" msgstr "" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" msgstr "" -#: ckan/templates/package/search.html:52 -msgid "API" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" msgstr "" -#: ckan/templates/package/search.html:53 -msgid "API Docs" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" msgstr "" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" 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. " +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" 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). " +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" msgstr "" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 +msgid "Private" msgstr "" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" msgstr "" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" +#: 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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" 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" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." msgstr "" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" +#: ckan/templates/organization/member_new.html:81 +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/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." -msgstr "" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/package/snippets/cannot_create_package.html:19 -msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" msgstr "" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" +#: 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/package/snippets/package_basic_fields.html:41 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -" License definitions and additional information can be found at opendefinition.org " +" 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/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all " +"the public and private datasets belonging to this organization." msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" 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." +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" msgstr "" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" +#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" msgstr "" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" +#: 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/snippets/package_metadata_fields.html:10 -msgid "1.0" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" 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" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" 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" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" +#: 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/snippets/resource_form.html:53 -msgid "eg. 1024" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" +#: 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/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" +#: 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/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" msgstr "" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit 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." +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." msgstr "" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" +#: ckan/templates/package/resource_read.html:122 +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/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" msgstr "" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" 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" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" msgstr "" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" msgstr "" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" msgstr "" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" msgstr "" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" msgstr "" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, python-format +msgid "" +"

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

" msgstr "" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" +#: ckan/templates/package/search.html:52 +msgid "API" msgstr "" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" +#: ckan/templates/package/search.html:53 +msgid "API Docs" msgstr "" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" msgstr "" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" +#: 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/revision/read.html:30 -msgid "Undelete" +#: 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/revision/read.html:64 -msgid "Changes" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" msgstr "" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" msgstr "" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" msgstr "" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" +#: 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/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" msgstr "" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." +#: 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/snippets/disqus_trackback.html:2 -msgid "Trackback URL" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" msgstr "" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." msgstr "" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" +#: 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/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" msgstr "" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" msgstr "" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" msgstr "" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" msgstr "" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" msgstr "" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" msgstr "" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" msgstr "" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" msgstr "" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" msgstr "" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" +#: 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/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" 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/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" msgstr "" -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" +#: 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/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/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" +#: 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/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" 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/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" msgstr "" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" msgstr "" -#: ckan/templates/snippets/social.html:5 -msgid "Social" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" msgstr "" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" 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:82 -msgid "Email" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" msgstr "" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" msgstr "" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" msgstr "" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" msgstr "" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" msgstr "" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" msgstr "" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" msgstr "" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" msgstr "" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" msgstr "" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" msgstr "" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" +#: 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/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" 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" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" msgstr "" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." msgstr "" -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you " -"do. " +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" msgstr "" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" msgstr "" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" msgstr "" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" msgstr "" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" msgstr "" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" msgstr "" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" msgstr "" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" msgstr "" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" +#: 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/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" msgstr "" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" msgstr "" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" msgstr "" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" msgstr "" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" 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" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" msgstr "" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" msgstr "" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." +#: ckan/templates/revision/diff.html:44 +msgid "Difference" msgstr "" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" msgstr "" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" msgstr "" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" msgstr "" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" msgstr "" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" +#: ckan/templates/revision/read.html:64 +msgid "Changes" msgstr "" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" msgstr "" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" msgstr "" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" msgstr "" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" msgstr "" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" msgstr "" -#: ckan/templates/user/new.html:6 -msgid "Registration" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" msgstr "" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." msgstr "" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" msgstr "" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" msgstr "" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" msgstr "" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" msgstr "" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" msgstr "" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" msgstr "" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" msgstr "" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" msgstr "" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." msgstr "" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" msgstr "" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" msgstr "" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" msgstr "" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" msgstr "" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" msgstr "" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" msgstr "" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" msgstr "" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -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/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" msgstr "" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" +#: 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/user/request_reset.html:19 -msgid "Request reset" +#: 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/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a " -"link to enter a new password." +#: 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/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" +#: 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/user/snippets/followee_dropdown.html:23 -msgid "Search list..." +#: 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/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" +#: ckan/templates/snippets/social.html:5 +msgid "Social" msgstr "" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" msgstr "" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" +#: 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:82 +msgid "Email" msgstr "" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" msgstr "" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" msgstr "" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" msgstr "" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" msgstr "" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" msgstr "" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was" -" inserted into a text field)." +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" msgstr "" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" msgstr "" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" +#: 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:16 +msgid "Create one now?" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." 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" +#: 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 "" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" +#: ckan/templates/user/edit.html:19 +msgid "" +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" msgstr "" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" msgstr "" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" msgstr "" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" msgstr "" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" +#: 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 "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" +#: ckan/templates/user/new.html:6 +msgid "Registration" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" msgstr "" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" msgstr "" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" msgstr "" -#~ msgid "Unauthorized to read group %s" -#~ msgstr "" - -#~ msgid "User %r not authorized to edit %r" -#~ msgstr "" - -#~ msgid "Unauthorized to read group {group_id}" -#~ msgstr "" - -#~ msgid "Unauthorized to view View %s" -#~ msgstr "" - -#~ msgid "Unauthorized to read resource view %s" -#~ msgstr "" - -#~ msgid "Unauthorized to read {0} {1}" -#~ msgstr "" - -#~ msgid "" -#~ "{actor} updated the {related_type} " -#~ "{related_item} of the dataset {dataset}" -#~ msgstr "" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "" -#~ msgid "{actor} updated the {related_type} {related_item}" -#~ msgstr "" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." +msgstr "" -#~ msgid "{actor} deleted the related item {related_item}" -#~ msgstr "" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "" -#~ msgid "" -#~ "{actor} added the {related_type} " -#~ "{related_item} to the dataset {dataset}" -#~ msgstr "" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "" -#~ msgid "{actor} added the {related_type} {related_item}" -#~ msgstr "" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "" -#~ msgid "Dear %s," -#~ msgstr "" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "" -#~ msgid "" -#~ "You have requested your password on {site_title} to be reset.\n" -#~ "\n" -#~ "Please click the following link to confirm this request:\n" -#~ "\n" -#~ " {reset_link}\n" -#~ msgstr "" +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "" #~ msgid "" -#~ "You have been invited to {site_title}." -#~ " A user has already been created " -#~ "to you with the username {user_name}." -#~ " You can change it later.\n" -#~ "\n" -#~ "To accept this invite, please reset your password at:\n" -#~ "\n" -#~ " {reset_link}\n" +#~ "Viewing {package_type} datasets in {format}" +#~ " format is not supported (template " +#~ "file {file} not found)." #~ msgstr "" -#~ msgid "Invite for {site_title}" +#~ msgid "Reorder resources" #~ msgstr "" -#~ msgid "A organization must be supplied" +#~ msgid "Reorder resource view" #~ msgstr "" -#~ msgid "Related" -#~ msgstr "" - -#~ msgid "Item was not found." -#~ msgstr "" - -#~ msgid "You must be a sysadmin to create a featured related item" -#~ msgstr "" - -#~ msgid "You must be logged in to add a related item" -#~ msgstr "" - -#~ msgid "Only the owner can delete a related item" -#~ msgstr "" - -#~ msgid "Only the owner can update a related item" -#~ msgstr "" - -#~ msgid "You must be a sysadmin to change a related item's featured field." -#~ msgstr "" - -#~ msgid "show more" -#~ msgstr "" - -#~ msgid "show less" -#~ msgstr "" - -#~ msgid "Open Knowledge Foundation" -#~ msgstr "" - -#~ msgid "Related Media for {dataset}" -#~ msgstr "" - -#~ msgid "No related items" -#~ msgstr "" - -#~ msgid "Add Related Item" -#~ msgstr "" - -#~ msgid "" -#~ "No apps, ideas, news stories or " -#~ "images have been related to this " -#~ "dataset yet." -#~ msgstr "" - -#~ msgid "Add Item" -#~ msgstr "" - -#~ msgid "" -#~ "

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

" +#~ msgid "An error occurred: %(text)s %(error)s" #~ msgstr "" diff --git a/ckan/i18n/nl/LC_MESSAGES/ckan.mo b/ckan/i18n/nl/LC_MESSAGES/ckan.mo index d36be654e37..be5105c0866 100644 Binary files a/ckan/i18n/nl/LC_MESSAGES/ckan.mo and b/ckan/i18n/nl/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/nl/LC_MESSAGES/ckan.po b/ckan/i18n/nl/LC_MESSAGES/ckan.po index 4acf72d53bd..c8248c9f266 100644 --- a/ckan/i18n/nl/LC_MESSAGES/ckan.po +++ b/ckan/i18n/nl/LC_MESSAGES/ckan.po @@ -1,4553 +1,4674 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Peter Vos , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Machtigingsfuncties niet gevonden: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Compleet" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Beheerder" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Wachtend" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Muteerder" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Opsturen" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Lid" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Fout" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Dient rol systeembeheerder te hebben" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Nog niet geupload" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Titel" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Bron niet gevonden" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Stijl" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Niet gemachtigd deze pagina te bekijken" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Site Tag Line" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Upload naar DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Site Tag Logo" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Upload error:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Fout:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Over pagina" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Fout traceback:" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Introductie tekst" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Tekst op de homepage" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Laatst gewijzigd" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Custom CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nooit" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Aanpasbaar CSS ingevoegd in de pagina header" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Upload log" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Start pagina" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Details" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Einde van log" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" -#: ckan/controllers/admin.py:160 +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "vorm moet een van de volgende zijn: %s" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Datastore bron niet gevonden" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Can package %s niet verwijderen omdat revisie %s niet gedelete packages %s " -"bevat" +"De data was ongeldig (bijvoorbeeld een numerieke waarde viel buiten de " +"geldige reeks of was aan een tekstveld toegevoegd)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Probleem bij het verwijderen van revisie %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Bron \"{0}\" is niet gevonden" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Verwijderen afgerond" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Gebruiker {0} heeft geen toestemming om de bron {1} te bewerken" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Actie niet geïmplementeerd" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Niet gemachtigd deze pagina te bekijken" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Toestemming geweigerd" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +" Verdere informatie in de CKAN Data API en DataStore documentatie.

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Niet gevonden" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Eindpunten" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Onjuiste aanvraag" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Actie naam onbekend: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Creëer" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON Error: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Updaten / toevoegen" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Bad request data: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Query" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Kan items van dit type niet laten zien: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Query (via SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Kan een entiteit van dit type niet lezen: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Opvragen" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Kan geen nieuwe entiteit aanmaken van type: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Query voorbeeld (eerste 5 resultaten)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Kan de package niet aan de zoekindex toevoegen" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Query voorbeeld (resultaten die 'jones' bevatten)" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Kan entiteit niet aanpassen van type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Query voorbeeld (via SQL statement)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Kan zoekindex niet actualiseren" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Voorbeeld: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Kan entiteit niet aanpassen van type: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Een eenvoudige ajax (JSONP) aanvraag naar de data API met jQuery." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Geen versie aangegeven" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Voorbeeld: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Er is geen revisie met id: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "Veld {num}" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Ontbrekende zoekterm ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Label" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Kan de volgende parameters niet lezen: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Omschrijving" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Ongeldige zoek optie: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Bewaar" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Onbekend register: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Data woordenboek" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Misvormde qjson waarde: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Kolom" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "" -"Opgevraagde parameters moeten zich bevinden in een json encoded dictionary" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "Type" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "De titel van de dataset." +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Laden..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organisatie niet gevonden" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Data API" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Verkeerde groep type" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tabel" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organisaties" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Responsieve weergave" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Groepen" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Toon kolommen" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Tags" - -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formats" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "Verberg/toon kolommen" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licenties" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datasets per pagina" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Niet gemachtigd om een massale bijwerking te doen" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Test conf" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Groep selectie veld 'user_editable_groups' is niet geinitialiseerd" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevantie" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Gebruiker %r is niet gemachtigd om %s aan te passen" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Integriteits fout" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:600 -#, 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/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Laatst gewijzigd" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Niet de rechten om group %s te verwijderen" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Aangepast veld oplopend" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organisatie is verwijderd" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Aangepast veld aflopend" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Groep is verwijderd" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Populair" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s is verwijderd." +#: 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" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Niet de rechten om lid toe te voegen aan groep %s " +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "aangepaste text" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Niet de rechten om leden te te verwijderen ui groep %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Landcode" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Groepslid is verwijderd" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "Aangepaste brontekst" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Selecteer twee revisies voordat u een vergelijking maakt." +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Dit is een onvertaalde tekst" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "CKAN Groep revisie historie" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Recente wijzigingen in de CKAN groep:" +#: 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/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Logboek bericht: " +#: 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" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Je volgt {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's data previewing tool heeft veel krachtige kenmerken" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Je volgt {0} niet langer" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Volgers" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Niet de rechtend om volgers %s te zien" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Bronnen" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "Deze site is momenteel offline. De database is niet geïnitialiseerd." +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Afbeelding" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "Actualiseer uw profiel en voeg uw emailadres toe." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Afbeelding URL" -#: ckan/controllers/home.py:83 -#, 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." +#: 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)" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Data Explorer" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parameter \"{parameter_name}\" is geen integer" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Grafiek" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Dataset niet gevonden" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Kaart" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Incorrect revisieformat: %r" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "fout bij het laden van de view" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" -"Bekijken {package_type} datasets in {format} formaat is niet ondersteund " -"(template file {file} niet gevonden)." +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "Kon de view niet laden" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Niet gemachtigd om package in te zien %s" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "DataStore gaf een fout terug" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "CKAN dataset revisie geschiedenis" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "DataProxy gaf een fout terug" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Recente wijzigingen aan CKAN dataset:" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "Grid" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Niet gemachtigd om een pakket aan te maken" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filters" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Niet de rechten om deze bron te bewerken" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Rij volgnummer" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Bron niet gevonden" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "bijv.: 0" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Niet de rechten om deze dataset up te daten" +#: 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" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "De dataset {id} is niet gevonden." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "bijv.: 100" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Je moet ten minste een data bron toevoegen" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Grafieksoort" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Fout" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Groep (As 1)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Niet de rechten om deze bron te creëren" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Series (As 2)" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Niet gemachtigd om een bron te creëren voor dit pakket" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Veldsoort" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Kan de package niet toevoegen aan de zoekindex." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Veld voor geografische breedte (lat)" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Kan de zoekindex niet actualiseren." +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Veld voor geografische lengte (lon)" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Dataset is verwijderd" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON veld" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Niet de rechten om dit pakket %s te verwijderen" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Automatische alle objecten in beeld brengen" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Bron is verwijderd" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Objecten samenvoegen (clusteren)" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Niet de rechten om deze bron %s te verwijderen" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Totaal aantal datasets" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Bronoverzicht niet gevonden" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Datum" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Bron data niet gevonden." +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Totaal aantal datasets" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Er is geen download beschikbaar" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Datasets herzieningen per Week" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Niet de rechten om deze dataset te lezen %s" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Alle dataset herzieningen" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Niet gemachtigd om bron %s te lezen" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Nieuwe datasets" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Niet gemachtigd om bron te bewerken" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Hoogst gewaardeerde datasets" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Overzicht niet gevonden" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Gemiddelde score" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Soort overzicht niet gevonden" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Aantal scores" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Fout in bronoverzicht gegevens" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Geen score" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Bronoverzicht niet ingevoerd" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Meest bewerkte dataset" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Er is geen voorbeeld geselecteerd" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Dataset" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "CKAN Repository Revisie Geschiedenis" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Aantal veranderingen" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Recente aanpassingen aan de CKAN repository" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Geen bewerkte datasets" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Datasets geaffecteerd: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Grootste groepen" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Versie bijgewerkt" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Groep" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Andere" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Aantal datasets" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Label niet gevonden" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Geen groepen" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Gebruiker niet gevonden" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Top labels" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Niet gemachtigd om een gebruiker aan te maken" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Tag Naam" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Niet gemachtigd om een gebruiker aan te maken" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Aantal Datasets" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Niet gemachtigd om gebruiker met id \"{user_id}\" te verwijderen." +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "Gebruikers met het hoogste aantal datasets" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Gebruiker niet gegeven" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Gebruiker" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Niet gemachtigd om gebruiker %s te wijzigen" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Statistieken Menu" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profiel geactualiseerd" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Totaal Aantal Datasets" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Niet gemachtigd om gebruiker %s aan te maken" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Tekst" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Captcha mislukt. Probeer het nog eens." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Website" -#: ckan/controllers/user.py:265 -#, 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." +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "url Web Pagina" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Niet gemachtigd om een gebruiker te wijzigen" +#: 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/controllers/user.py:320 +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Uw browser ondersteunt geen i-frames." + +#: ckan/authz.py:182 #, python-format -msgid "User %s not authorized to edit %s" -msgstr "Gebruiker %s niet gemachtigd om %s te wijzigen" +msgid "Authorization function not found: %s" +msgstr "Machtigingsfuncties niet gevonden: %s" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Foutief wachtwoord ingevoerd" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Beheerder" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Oude wachtwoord" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Muteerder" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "Foutief wachtwoord" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Lid" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Inloggen is mislukt. Incorrecte gebruikersnaam of wachtwoord." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Dient rol systeembeheerder te hebben" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Niet gemachtigd om wachtwoord herstel aan te vragen." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Titel" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" kwam overeen met meerdere gebruikers" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Stijl" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Geen gebruiker: %s" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Site Tag Line" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Bekijk uw inbox voor een herstelcode." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Site Tag Logo" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Kon herstel link niet versturen: %s" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Niet gemachtigd om een wachtwoord te herstellen." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Over pagina" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Ongeldige reset toets. Probeert u het nog eens." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Introductie tekst" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Uw wachtwoord is opnieuw ingesteld." +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Tekst op de homepage" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Je wachtwoord moet minimaal 4 karakters bevatten." +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Custom CSS" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "De ingevoerde wachtwoorden komen niet overeen." +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Aanpasbaar CSS ingevoegd in de pagina header" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Je moet een wachtwoord invoeren." +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Start pagina" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Volgend item niet gevonden" +#: ckan/controllers/admin.py:161 +#, 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/user.py:640 -msgid "{0} not found" -msgstr "{0} niet gevonden" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Probleem bij het verwijderen van revisie %s: %s" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Alles" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Verwijderen afgerond" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Missende Waarde" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Actie niet geïmplementeerd" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Het is niet toegestaan door te verwijzen naar externe omgevingen." +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Toestemming geweigerd" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} heeft de tag {tag} toegevoegd aan dataset {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Niet gevonden" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} heeft de groep {group} bijgewerkt" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Onjuiste aanvraag" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} heeft de organisatie {organization} bijgewerkt" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Actie naam onbekend: %s" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} heeft de dataset {dataset} bijgewerkt" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Error: %s" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} heeft de extra {extra} van dataset {dataset} gewijzigd" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Bad request data: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} heeft de bron {resource} in dataset {dataset} bijgewerkt" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Kan items van dit type niet laten zien: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} heeft zijn of haar profiel bijgewerkt" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Kan een entiteit van dit type niet lezen: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} heeft de groep {group} verwijderd" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Kan geen nieuwe entiteit aanmaken van type: %s %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} heeft de organisatie {organization} verwijderd" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Kan de package niet aan de zoekindex toevoegen" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} heeft de dataset {dataset} verwijderd" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Kan entiteit niet aanpassen van type: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} heeft de extra {extra} verwijderd van dataset {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Kan zoekindex niet actualiseren" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} heeft de bron {resource} verwijderd van dataset {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Kan entiteit niet aanpassen van type: %s %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} heeft de groep {group} opgericht" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Geen versie aangegeven" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} heeft de organisatie {organization} gemaakt" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Er is geen revisie met id: %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} heeft de dataset {dataset} gemaakt" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Ontbrekende zoekterm ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} heeft de extra {extra} toegevoegd aan dataset {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Kan de volgende parameters niet lezen: %r" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} heeft de bron {resource} toegevoegd aan dataset {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Ongeldige zoek optie: %s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} heeft zich ingeschreven" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Onbekend register: %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} heeft de tag {tag} verwijderd van dataset {dataset}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Misvormde qjson waarde: %r" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} is volgt nu {dataset}" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" +"Opgevraagde parameters moeten zich bevinden in een json encoded dictionary" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} volgt nu {user}" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "De titel van de dataset." -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} volgt nu {group}" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organisatie niet gevonden" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Bekijk" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Verkeerde groep type" -#: 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/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organisaties" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "januari" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Groepen" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "februari" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Tags" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "maart" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formats" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "april" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licenties" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "mei" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Gebruiker %r is niet gemachtigd om %s aan te passen" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "juni" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Niet gemachtigd om een massale bijwerking te doen" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "juli" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Groep selectie veld 'user_editable_groups' is niet geinitialiseerd" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "augustus" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Integriteits fout" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "september" +#: ckan/controllers/group.py:594 +#, 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/lib/formatters.py:55 -msgid "October" -msgstr "oktober" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Niet de rechten om group %s te verwijderen" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "november" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organisatie is verwijderd" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "december" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Groep is verwijderd" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Enkele seconden geleden" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s is verwijderd." -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} minuut geleden" -msgstr[1] "{mins} minuten geleden" +#: ckan/controllers/group.py:653 +#, 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/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} uur geleden" -msgstr[1] "{hours} uren geleden" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Niet de rechten om lid toe te voegen aan groep %s " -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} dag geleden" -msgstr[1] "{days} dagen geleden" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Niet de rechten om leden te te verwijderen ui groep %s" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} maand geleden" -msgstr[1] "{months} maanden geleden" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Groepslid is verwijderd" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "meer dan {years} jaar geleden" -msgstr[1] "meer dan {years} jaren geleden" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Selecteer twee revisies voordat u een vergelijking maakt." -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "CKAN Groep revisie historie" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{day} {month}, {year}" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Recente wijzigingen in de CKAN groep:" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Logboek bericht: " -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Je volgt {0}" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Je volgt {0} niet langer" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Niet de rechtend om volgers %s te zien" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: 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/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "Actualiseer uw profiel en voeg uw emailadres toe." -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "Ongeldige zoekvraag: {error_message}" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parameter \"{parameter_name}\" is geen integer" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Dataset niet gevonden" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Incorrect revisieformat: %r" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:396 +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/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Niet gemachtigd om package in te zien %s" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "CKAN dataset revisie geschiedenis" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Bewerk je schermafbeelding op gravatar.com" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Recente wijzigingen aan CKAN dataset:" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Onbekend" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Niet gemachtigd om een pakket aan te maken" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Naamloze bron" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Niet de rechten om deze bron te bewerken" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Nieuwe dataset aangemaakt." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Niet de rechten om deze dataset up te daten" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Bronnen gewijzigd." +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "De dataset {id} is niet gevonden." -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Settings gewijzigd." +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Je moet ten minste een data bron toevoegen" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} keer bekeken" -msgstr[1] "{number} keer bekeken" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Niet de rechten om deze bron te creëren" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} keer recent bekeken" -msgstr[1] "{number} keer recent bekeken" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Niet gemachtigd om een bron te creëren voor dit pakket" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Kan de package niet toevoegen aan de zoekindex." -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Geen ontvanger email adres beschikbaar!" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Kan de zoekindex niet actualiseren." -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "Organisatie" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Dataset is verwijderd" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "group" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Niet de rechten om dit pakket %s te verwijderen" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Missende waarde" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Bron is verwijderd" -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1052 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "Het invoerveld %(name)s werd niet verwacht." +msgid "Unauthorized to delete resource %s" +msgstr "Niet de rechten om deze bron %s te verwijderen" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Vul een geheel getal in" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Bronoverzicht niet gevonden" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Bronnen" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Bron data niet gevonden." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Package bron ongeldig" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Er is geen download beschikbaar" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Extra's" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Niet de rechten om deze dataset te lezen %s" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1404 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Label vocabulary \"%s\" bestaat niet" +msgid "Unauthorized to read resource %s" +msgstr "Niet gemachtigd om bron %s te lezen" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Gebruiker" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Niet gemachtigd om bron te bewerken" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Dataset" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Overzicht niet gevonden" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Groep" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Soort overzicht niet gevonden" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Kon niet ontleed worden als valide JSON" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Fout in bronoverzicht gegevens" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Bronoverzicht niet ingevoerd" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Oganisatie bestaat niet" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Er is geen voorbeeld geselecteerd" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Je kan geen dataset aan deze organisatie toevoegen" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "CKAN Repository Revisie Geschiedenis" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Ongeldig geheel getal" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Recente aanpassingen aan de CKAN repository" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Moet een natuurlijk getal zijn" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Datasets geaffecteerd: %s.\n" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Moet een positieve integer zijn" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Versie bijgewerkt" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Datumformaat onjuist" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Andere" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Links zijn niet toegestaan in het logboekbericht" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Label niet gevonden" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Er bestaat al een gegevensset met deze sleutel" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Niet gemachtigd om een gebruiker aan te maken" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Bron" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Niet gemachtigd om een gebruiker aan te maken" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Die groepsnaam of ID bestaat niet. " +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Niet gemachtigd om gebruiker met id \"{user_id}\" te verwijderen." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Soort activiteit" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Gebruiker niet gegeven" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Namen moeten strings zijn" +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Niet gemachtigd om gebruiker %s te wijzigen" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Die naam kan niet worden gebruikt" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Gebruiker niet gevonden" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "Moet tenminste %s tekens bevatten" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profiel geactualiseerd" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Naam mag maximaal %i karakters lang zijn" +msgid "Unauthorized to create user %s" +msgstr "Niet gemachtigd om gebruiker %s aan te maken" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Captcha mislukt. Probeer het nog eens." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "Moet bestaan uit kleine letters (ascii), cijfers en deze symbolen: -_" +"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/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Deze URL is al in gebruik." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Niet gemachtigd om een gebruiker te wijzigen" -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "De lengte van naam \"%s\" is minder dan het minimum %s" +msgid "User %s not authorized to edit %s" +msgstr "Gebruiker %s niet gemachtigd om %s te wijzigen" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "De lengte van naam \"%s\" is meer dan het maximum %s" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Foutief wachtwoord ingevoerd" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Versie mag maximaal %i karakters lang zijn" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Oude wachtwoord" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Dubbele sleutel \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "Foutief wachtwoord" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "De naam van de groep bestaat al in database" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Inloggen is mislukt. Incorrecte gebruikersnaam of wachtwoord." -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Tag \"%s\" lengte is minder dan vereiste %s" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Niet gemachtigd om wachtwoord herstel aan te vragen." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "De lengte van label \"%s\" is langer dan het maximum van %i" +msgid "\"%s\" matched several users" +msgstr "\"%s\" kwam overeen met meerdere gebruikers" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "Tag \"%s\" moet een alfanumeriek karakter zijn of symbolen: -_." +msgid "No such user: %s" +msgstr "Geen gebruiker: %s" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Tag \"%s\" mag geen hoofdletters bevatten" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Bekijk uw inbox voor een herstelcode." -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Gebruikersnamen moeten strings zijn" +#: ckan/controllers/user.py:503 +#, python-format +msgid "Could not send reset link: %s" +msgstr "Kon herstel link niet versturen: %s" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Die loginnaam is niet beschikbaar." +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Niet gemachtigd om een wachtwoord te herstellen." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Voer a.u.b. beide wachtwoorden in" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Ongeldige reset toets. Probeert u het nog eens." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Wachwoorden moeten strings zijn" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Uw wachtwoord is opnieuw ingesteld." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Uw wachtwoord moet 4 of meer karakters hebben" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Je wachtwoord moet minimaal 4 karakters bevatten." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "De wachtwoorden komen niet overeen" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "De ingevoerde wachtwoorden komen niet overeen." -#: ckan/logic/validators.py:610 -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/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Je moet een wachtwoord invoeren." -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Naam moet tenminste %s karakters lang zijn" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Volgend item niet gevonden" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Die vocabulairenaam is al in gebruik." +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} niet gevonden" -#: ckan/logic/validators.py:633 -#, 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/controllers/user.py:654 +msgid "Everything" +msgstr "Alles" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Label vocabulaire niet gevonden." +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Missende Waarde" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Label %s behoort niet tot vocabulaire %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Het is niet toegestaan door te verwijzen naar externe omgevingen." -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Geen label naam" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} heeft de tag {tag} toegevoegd aan dataset {dataset}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Label %s behoort al tot vocabulaire %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} heeft de groep {group} bijgewerkt" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Vul een geldige URL in" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} heeft de organisatie {organization} bijgewerkt" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "Deze rol bestaat niet." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} heeft de dataset {dataset} bijgewerkt" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Gegevenssets zonder organisatie kunnen niet besloten zijn." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} heeft de extra {extra} van dataset {dataset} gewijzigd" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Geen lijst" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} heeft de bron {resource} in dataset {dataset} bijgewerkt" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Geen string" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} heeft zijn of haar profiel bijgewerkt" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Deze ouder zou een oneindige lus in de hiërarchie veroorzaken" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} heeft de groep {group} verwijderd" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" en \"filter_values\" moeten dezelfde lengte hebben" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} heeft de organisatie {organization} verwijderd" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} heeft de dataset {dataset} verwijderd" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" is vereist wanneer \"filter_fields\" is ingevuld" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} heeft de extra {extra} verwijderd van dataset {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Er is een veld in het schema met dezelfde naam" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} heeft de bron {resource} verwijderd van dataset {dataset}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Maak object %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} heeft de groep {group} opgericht" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Maak package relatie: %s %s %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} heeft de organisatie {organization} gemaakt" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: creëer lid object %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} heeft de dataset {dataset} gemaakt" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "U probeert een organisatie als groep te creëren" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} heeft de extra {extra} toegevoegd aan dataset {dataset}" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "Er moet een sleutel of naam worden ingevoerd (parameter \"package\")" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} heeft de bron {resource} toegevoegd aan dataset {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Een waardering is vereist (parameter \"rating\")." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} heeft zich ingeschreven" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Waardering moet hele waarde hebben." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} heeft de tag {tag} verwijderd van dataset {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Waardering moet tussen %i en %i liggen." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} is volgt nu {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} volgt nu {user}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "U moet ingelogd zijn om users te volgen" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} volgt nu {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "U kan niet uzelf volgen" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Bekijk" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "U volgt {0} al" +#: 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/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "U moet ingelogd zijn om een dataset te kunnen volgen." +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "januari" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Gebruiker {username} bestaat niet." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "februari" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "U moet ingelogd zijn om een groep te kunnen volgen." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "maart" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "april" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Verwijder Package: %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "mei" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Verwijder %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "juni" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Verwijder lid: %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "juli" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id niet in data" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "augustus" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Kan vocabulaire %s niet vinden" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "september" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Kan label \"%s\" niet vinden" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "oktober" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "U moet ingelogd zijn om iets te ontvolgen." +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "november" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "U volgd {0} niet" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "december" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Bron niet gevonden." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Enkele seconden geleden" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Niks specificeren wanneer u gebruik maakt van de \"query\" parameter" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} minuut geleden" +msgstr[1] "{mins} minuten geleden" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Moet zijn : pa(a)r(en)" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} uur geleden" +msgstr[1] "{hours} uren geleden" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Veld \"{field}\" niet herkend in resource_search." +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} dag geleden" +msgstr[1] "{days} dagen geleden" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Package is niet gevonden" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} maand geleden" +msgstr[1] "{months} maanden geleden" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Update object %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "meer dan {years} jaar geleden" +msgstr[1] "meer dan {years} jaren geleden" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Bijwerken package relaties: %s %s %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{maand} {dag}, {jaar}, {uur:02}:{min:02} ({tijdzone})" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "Versie bijgewerkt" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{day} {month}, {year}" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organisatie is niet gevonden." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: 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/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Gebruiker %s is niet gemachtigd om deze groepen te wijzigen" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: 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/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "" -"Geen package gevonden voor deze bron, kan autorisatie niet controleren." +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: 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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Niet gemachtigd om gebruikers te maken" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Groep niet gevonden." +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Geldige API key nodig om een package aan te maken" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Geldige API key nodig om een groep aan te maken" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Bewerk je schermafbeelding op gravatar.com" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Gebruiker %s is niet gemachtigd om een lid toe te voegen" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Onbekend" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Gebruiker %s is niet gemachtigd om groep %s te wijzigen" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Naamloze bron" -#: 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/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Nieuwe dataset aangemaakt." -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" -"Bronoverzicht niet gevonden. Machtiging kan niet worden gecontroleerd." +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Bronnen gewijzigd." -#: 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/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Settings gewijzigd." -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} keer bekeken" +msgstr[1] "{number} keer bekeken" -#: 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/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} keer recent bekeken" +msgstr[1] "{number} keer recent bekeken" -#: ckan/logic/auth/delete.py:103 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organizations" -msgstr "Gebruiker %s is niet gemachtigd om een organisatie te verwijderen" +msgid "%s <%s>" +msgstr "%s <%s>" -#: 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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Geen ontvanger email adres beschikbaar!" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "Organisatie" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Geen toegang" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "group" -#: 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/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Missende waarde" -#: ckan/logic/auth/get.py:130 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read package %s" -msgstr "Gebruiker %s is niet gemachtigd om pakket %s te lezen " +msgid "The input field %(name)s was not expected." +msgstr "Het invoerveld %(name)s werd niet verwacht." -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Gebruiker %s is niet gemachtigd om bron %s te lezen " +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Vul een geheel getal in" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "Gebruiker %s is niet gemachtigd om groep %s te lezen " +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "Moet een Unicode string waarde zijn" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "U moet ingelogd zijn om toegang te hebben tot uw dashboard." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Package bron ongeldig" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "Gebruiker %s is niet gemachtigd om pakket %s te wijzigen " +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Extra's" -#: ckan/logic/auth/update.py:71 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Gebruiker %s is niet gemachtigd om bron %s te veranderen" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Label vocabulary \"%s\" bestaat niet" -#: ckan/logic/auth/update.py:100 -#, 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/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Kon niet ontleed worden als valide JSON" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "Gebruiker %s is niet gemachtigd om organisatie %s te veranderen" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "Een organisatie moet worden ingevoerd" -#: ckan/logic/auth/update.py:145 -#, 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/validators.py:47 +msgid "Organization does not exist" +msgstr "Oganisatie bestaat niet" -#: ckan/logic/auth/update.py:162 -#, 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/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Je kan geen dataset aan deze organisatie toevoegen" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "U dient te zijn ingelogd om gebruikersgegevens te wijzigen" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Ongeldig geheel getal" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "Gebruiker %s is niet gemachtigd om gebruiker %s te wijzigen" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Moet een natuurlijk getal zijn" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "" -"Gebruiker {0} heeft geen toestemming om de gebruiker {1} bij te werken" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Moet een positieve integer zijn" -#: ckan/logic/auth/update.py:216 -#, 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/validators.py:130 +msgid "Date format incorrect" +msgstr "Datumformaat onjuist" -#: ckan/logic/auth/update.py:225 -#, 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/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Links zijn niet toegestaan in het logboekbericht" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "Gebruiker %s niet gemachtigd om term_translation tabel te wijzigen" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Er bestaat al een gegevensset met deze sleutel" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Geldige API key nodig om een package te wijzigen" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Bron" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Geldige API key nodig om een groep te wijzigen" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Die groepsnaam of ID bestaat niet. " -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Licentie is niet gespecificeerd" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Soort activiteit" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Namen moeten strings zijn" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" - -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" - -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" - -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" - -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" - -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Other (Open)" - -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Other (Public Domain)" - -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Other (Attribution)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Die naam kan niet worden gebruikt" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Moet tenminste %s tekens bevatten" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Naam mag maximaal %i karakters lang zijn" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Other (Non-Commercial)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "Moet bestaan uit kleine letters (ascii), cijfers en deze symbolen: -_" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Other (Not Open)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Deze URL is al in gebruik." -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "hangt af van %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "De lengte van naam \"%s\" is minder dan het minimum %s" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "is een afhankelijkheid van %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "De lengte van naam \"%s\" is meer dan het maximum %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "vloeit voort uit %s" +msgid "Version must be a maximum of %i characters long" +msgstr "Versie mag maximaal %i karakters lang zijn" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "heeft afgeleide %s" +msgid "Duplicate key \"%s\"" +msgstr "Dubbele sleutel \"%s\"" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "linkt naar %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "De naam van de groep bestaat al in database" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "is naar gelinkt vanaf %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Tag \"%s\" lengte is minder dan vereiste %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "is een kind van %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "De lengte van label \"%s\" is langer dan het maximum van %i" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "is een ouder van %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Tag \"%s\" moet een alfanumeriek karakter zijn of symbolen: -_." -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "heeft broer %s" +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tag \"%s\" mag geen hoofdletters bevatten" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Laden..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Gebruikersnamen moeten strings zijn" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Er is geen API data om deze bron te openen" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Die loginnaam is niet beschikbaar." -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Het laden van de API informatie data is mislukt" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Voer a.u.b. beide wachtwoorden in" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Geen overeenkomsten gevonden" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Wachwoorden moeten strings zijn" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Begin met typen" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Uw wachtwoord moet 4 of meer karakters hebben" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Uw input is te kort, hij moet uit minimaal een karakter bestaan" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "De wachtwoorden komen niet overeen" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Er zijn niet-opgeslagen wijzigingen in dit formulier" +#: ckan/logic/validators.py:611 +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/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Bevestig de actie" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Naam moet tenminste %s karakters lang zijn" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Weet u zeker dat u deze actie uit wil voeren?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Die vocabulairenaam is al in gebruik." -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Bevestig" +#: ckan/logic/validators.py:634 +#, 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/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Afbreken" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Label vocabulaire niet gevonden." -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Volg" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Label %s behoort niet tot vocabulaire %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Ontvolgen" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Geen label naam" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Upload" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Label %s behoort al tot vocabulaire %s" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Link" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Vul een geldige URL in" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Verwijder" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "Deze rol bestaat niet." -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Afbeelding" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Gegevenssets zonder organisatie kunnen niet besloten zijn." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Geen lijst" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Bestand" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Geen string" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Upload een bestand" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Deze ouder zou een oneindige lus in de hiërarchie veroorzaken" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" en \"filter_values\" moeten dezelfde lengte hebben" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Wijzig sortering bronnen" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_values\" is vereist wanneer \"filter_fields\" is ingevuld" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Bewaar sortering" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" is vereist wanneer \"filter_fields\" is ingevuld" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Opslaan..." +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Er is een veld in het schema met dezelfde naam" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Upload een bestand" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "E-mail {email} is geen geldig adres" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Er is een fout opgetreden" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Maak object %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "De bron is geupload" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Maak package relatie: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Kan het bestand niet uploaden" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: creëer lid object %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Kan de upload niet authenticeren" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "U probeert een organisatie als groep te creëren" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Kan geen data vinden voor het geuploaden bestand" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Er moet een sleutel of naam worden ingevoerd (parameter \"package\")" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"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-reorder.js:8 -msgid "Reorder resource view" -msgstr "Wijzig sortering bronnen" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Een waardering is vereist (parameter \"rating\")." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Bijwerk" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Waardering moet hele waarde hebben." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Toon meer" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Waardering moet tussen %i en %i liggen." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "verberg" +#: ckan/logic/action/create.py:1064 +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/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Fout %(error_code)s" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "U moet ingelogd zijn om users te volgen" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "over {0}" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "U kan niet uzelf volgen" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "U volgt {0} al" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "U moet ingelogd zijn om een dataset te kunnen volgen." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Gebruiker {username} bestaat niet." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Sysadmin settings" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "U moet ingelogd zijn om een groep te kunnen volgen." -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "bekijk profiel" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "Verwijder gebruiker: {0}" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:92 #, 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)" +msgid "REST API: Delete Package: %s" +msgstr "REST API: Verwijder Package: %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Dashboard" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Verwijder %s" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "bewerk instellingen" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Verwijder lid: %s" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Instellingen" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id niet in data" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Uitloggen" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Kan vocabulaire %s niet vinden" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Inloggen" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Kan label \"%s\" niet vinden" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Register" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "U moet ingelogd zijn om iets te ontvolgen." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Datasets" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "U volgd {0} niet" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "doorzoek datasets" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Bron niet gevonden." -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Zoek" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Niks specificeren wanneer u gebruik maakt van de \"query\" parameter" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Ga verder naar de inhoud" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Moet zijn : pa(a)r(en)" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "laat minder zien" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Veld \"{field}\" niet herkend in resource_search." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "laat meer zien" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Package is niet gevonden" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "geen resultaten binnen deze activiteit " +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Update object %s" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Beheer" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Bijwerken package relaties: %s %s %s" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Beheerders" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "Versie bijgewerkt" -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "configuratie" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organisatie is niet gevonden." -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Prullenbak" +#: 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/templates/admin/config.html:16 -#: 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/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Gebruiker %s is niet gemachtigd om deze groepen te wijzigen" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "reset" +#: 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/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Updaten configuratie" +#: 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/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN configuratie settings" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Geen package gevonden voor deze bron, kan autorisatie niet controleren." -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:76 #, 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.

" +msgid "User %s not authorized to create resources on dataset %s" 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.

" +"Gebruiker %s is niet gemachtigd om bronnen aan te maken voor gegevensset %s" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Bevestig reset" +#: 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/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Beheer CKAN" +#: 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/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:129 #, 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

" +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/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Definitief verwijderen" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Niet gemachtigd om gebruikers te maken" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "

Onherstelbaar en definitief verwijderen

" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Groep niet gevonden." -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Geldige API key nodig om een package aan te maken" -#: ckan/templates/ajax_snippets/api_info.html:23 -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" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Geldige API key nodig om een groep aan te maken" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Gebruiker %s is niet gemachtigd om een lid toe te voegen" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Eindpunten" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Gebruiker %s is niet gemachtigd om groep %s te wijzigen" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +#: 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 +msgid "Resource view not found, cannot check auth." msgstr "" -"De Data API kan worden benaderd via de volgende acties van de CKAN action " -"API." +"Bronoverzicht niet gevonden. Machtiging kan niet worden gecontroleerd." -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Creëer" +#: 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/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Updaten / toevoegen" +#: 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/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Query" +#: 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/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Query (via SQL)" +#: 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Opvragen" +#: 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/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Query voorbeeld (eerste 5 resultaten)" +#: 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Query voorbeeld (resultaten die 'jones' bevatten)" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Geen toegang" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Query voorbeeld (via SQL statement)" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Gebruiker %s is niet gemachtigd om deze pakketten te lezen" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Voorbeeld: Javascript" +#: 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/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." +#: 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/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Voorbeeld: Python" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Gebruiker %s is niet gemachtigd om groep %s te lezen " -#: 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/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "U moet ingelogd zijn om toegang te hebben tot uw dashboard." -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Klik hier voor meer informatie." +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Gebruiker %s is niet gemachtigd om pakket %s te wijzigen " -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Download bron" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Gebruiker %s is niet gemachtigd om bron %s te veranderen" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Uw browser ondersteunt geen i-frames." +#: ckan/logic/auth/update.py:100 +#, 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/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Geen voorbeeld aanwezig." +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Gebruiker %s is niet gemachtigd om organisatie %s te veranderen" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Meer details..." +#: ckan/logic/auth/update.py:145 +#, 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/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:162 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Geen toepassing beschikbaar voor dit data type: %(type)s." +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/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Standaard" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "U dient te zijn ingelogd om gebruikersgegevens te wijzigen" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Standaard invoer" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Gebruiker %s is niet gemachtigd om gebruiker %s te wijzigen" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Middel" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "" +"Gebruiker {0} heeft geen toestemming om de gebruiker {1} bij te werken" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Medium Width Input" +#: ckan/logic/auth/update.py:217 +#, 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/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Vol" +#: ckan/logic/auth/update.py:226 +#, 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/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Volledige breedte input" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Gebruiker %s niet gemachtigd om term_translation tabel te wijzigen" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Groot" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Geldige API key nodig om een package te wijzigen" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Grote input" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Geldige API key nodig om een groep te wijzigen" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Voorzetten" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Licentie is niet gespecificeerd" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Voorafgaande input" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Aangepast veld (leeg)" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Aangepast veld" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "afprijzen" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "tekst gebied" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "selecteren" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Activiteiten stroom" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: 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/model/license.py:301 +msgid "Other (Open)" +msgstr "Other (Open)" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Voeg een groep toe" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Other (Public Domain)" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "groep formulier" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Other (Attribution)" -#: 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/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: 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/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: 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/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Other (Non-Commercial)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Beheer" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Other (Not Open)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Bewerk Groep" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "hangt af van %s" -#: 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/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "is een afhankelijkheid van %s" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Volgers" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "vloeit voort uit %s" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Geschiedenis" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "heeft afgeleide %s" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Groep toevoegen" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "linkt naar %s" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Zoek groepen..." +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "is naar gelinkt vanaf %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Naam oplopend" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "is een kind van %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Naam aflopend" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "is een ouder van %s" -#: 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/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "heeft broer %s" -#: 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/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Er is geen API data om deze bron te openen" -#: 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/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Het laden van de API informatie data is mislukt" -#: 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/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Begin met typen" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Voeg lid toe:" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Geen overeenkomsten gevonden" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Bestaande gebruiker" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Als je een nieuwe gebruiker wil toevoegen, zoek dan zijn gebruikersnaam " -"hieronder." +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Er zijn niet-opgeslagen wijzigingen in dit formulier" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "of" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Bevestig de actie" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Nieuwe gebruiker" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Weet u zeker dat u deze actie uit wil voeren?" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Als je een nieuwe gebruiker wil uitnodigen, vul dan zijn mailadres in." +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Bevestig" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Rol" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Weet u zeker dat u dit lid wil verwijderen?" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Ontvolgen" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Verwijderen" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Volg" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Bewaar" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Link" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Wat zijn de rollen?" +#: ckan/public/base/javascript/modules/image-upload.js:61 +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/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

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

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

" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Upload" -#: 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/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Verwijder" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Bewerk Groep" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Upload een bestand" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Maak Groep" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevantie" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Bestand" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Laatst gewijzigd" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Bewaar sortering" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Populair" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Opslaan..." -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Doorzoeken datasets..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Upload een bestand" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Datasets in groep: {group}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Er is een fout opgetreden" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Recent bewerkt geschiedenis" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Kan het bestand niet uploaden" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Naam" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Kan de upload niet authenticeren" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Mijn Groep" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "De bron is geupload" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "mijn-groep" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Kan geen data vinden voor het geuploaden bestand" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Omschrijving" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +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/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Informatie over mijn groep..." +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Filter toevoegen" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Weet je zeker dat je deze Groep wilt verwijderen?" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "Kies een veld" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Groep Opslaan" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Bijwerk" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} Dataset" -msgstr[1] "{num} Datasets" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Toon meer" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Datasets" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "verberg" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Bekijk {name}" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Fout %(error_code)s" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Verwijder dataset van deze groep" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "over {0}" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Wat zijn groepen?" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" -#: ckan/templates/group/snippets/helper.html:8 +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" + +#: ckan/templates/footer.html:24 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. " +"Powered by CKAN" 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." +"Powered by CKAN" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Vergelijk" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Sysadmin settings" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Verwijderd" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "bekijk profiel" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "lees meer" +#: ckan/templates/header.html:26 +#, 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/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Revisie" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Dashboard" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Datum stempel" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "bewerk instellingen" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Auteur" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Instellingen" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Logboekbericht" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Uitloggen" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Welkom" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Inloggen" -#: 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/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Register" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Welkom bij CKAN" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Datasets" -#: 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/header.html:116 +msgid "Search Datasets" +msgstr "doorzoek datasets" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Dit is een gekenmerkte sectie" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Zoek" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "Bijv. omgeving" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Ga verder naar de inhoud" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Zoek gegevens" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "laat minder zien" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Veel gebruikte labels" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "laat meer zien" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} statistieken" +#: 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/home/snippets/stats.html:11 -msgid "dataset" -msgstr "dataset" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Beheer" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "datasets" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Beheerders" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organisaties" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "configuratie" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "groepen" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Prullenbak" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/admin/config.html:16 +#: 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:16 +msgid "Reset" +msgstr "reset" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Updaten configuratie" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN configuratie settings" + +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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/macros/form.html:265 -msgid "This field is required" -msgstr "Dit veld is verplicht" - -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Op maat gemaakt" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Bevestig reset" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Het formulier bevat onjuiste informatie:" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Beheer CKAN" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Verplicht veld" +#: 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/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Definitief verwijderen" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "Image URL" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "

Onherstelbaar en definitief verwijderen

" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Ruim upload op" +#: 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/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Organisatie Vorm" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Klik hier voor meer informatie." -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Wijzig datasets" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Download bron" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Voeg dataset toe" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Geen voorbeeld aanwezig." -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "gevonden voor \"{query}\"" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Meer details..." -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Excuses, geen datasets gevonden voor \"{query}\"" +#: 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/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Maak publiek" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standaard" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Maak prive" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standaard invoer" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Schets" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Middel" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Privë" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Medium Width Input" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Deze organisatie heeft geen datasets" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Vol" -#: 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/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Volledige breedte input" -#: 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/development/snippets/form.html:8 +msgid "Large" +msgstr "Groot" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Organisatie toevoegen" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Grote input" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "Zoek organisaties" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Voorzetten" -#: 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/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Voorafgaande input" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Gebruikersnaam" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Aangepast veld (leeg)" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "E-mail adres" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Aangepast veld" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "Bijwerken lid" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "afprijzen" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/development/snippets/form.html:23 +msgid "Textarea" +msgstr "tekst gebied" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Creëer een Organisatie" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "selecteren" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Update Organisatie" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Activiteiten stroom" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Creëer Organisatie" +#: 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/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Dataset toevoegen" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Voeg een groep toe" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Datasets in organisatie: {group}" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "groep formulier" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Wat zijn organisaties?" +#: 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/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).

" +#: 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:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Beheer" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Bewerk Groep" + +#: ckan/templates/group/edit_base.html:23 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/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Geschiedenis" + +#: 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:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Voeg lid toe:" + +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Bestaande gebruiker" + +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"

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

" +"Als je een nieuwe gebruiker wil toevoegen, zoek dan zijn gebruikersnaam " +"hieronder." -#: 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. " +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "of" + +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Nieuwe gebruiker" + +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -"CKAN 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." +"Als je een nieuwe gebruiker wil uitnodigen, vul dan zijn mailadres in." -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Mijn Organisatie" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Rol" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "mijn-organisatie" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Verwijderen" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Informatie over de organisatie..." +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Wat zijn de rollen?" -#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/group/member_new.html:80 msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +"

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

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

" msgstr "" -"Weet u zeker dat u deze organisatie wilt verwijderen? Hierdoor worden ook de" -" publieke en prive datasets van deze organisatie verwijderd." +"

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

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

" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Organisatie opslaan" +#: 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/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Bekijk {organization_name}" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Bewerk Groep" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Creëer Dataset" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Maak Groep" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Wat zijn datasets?" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Doorzoeken 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/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Datasets in groep: {group}" -#: 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/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Recent bewerkt geschiedenis" -#: 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/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Naam" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Bekijk dataset" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Mijn Groep" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Wijzigen metadata" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "mijn-groep" -#: 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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Informatie over mijn groep..." -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Preview" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Weet je zeker dat je deze Groep wilt verwijderen?" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "updaten" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Groep Opslaan" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Link deze groep aan deze dataset" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Bekijk {name}" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Voeg toe aan groep" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Verwijder dataset van deze 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/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Wat zijn groepen?" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Update Dataset" +#: 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/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Data toevoegen aan de dataset" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Vergelijk" -#: 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/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Verwijderd" -#: 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/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "lees meer" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Nieuwe bron" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Revisie" -#: 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/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Datum stempel" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Auteur" + +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Logboekbericht" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Welkom" + +#: ckan/templates/home/snippets/about_text.html:1 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"

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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Toevoegen" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Welkom bij CKAN" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"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 oude revisie van de dataset zoals bewerkt op %(timestamp)s. Het " -"kan aanzienlijk verschillen van de huidige revisie." +"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/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Upload naar DataStore" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Dit is een gekenmerkte sectie" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Upload error:" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Bijv. omgeving" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Fout:" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Zoek gegevens" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Veel gebruikte labels" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Status" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistieken" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Laatst gewijzigd" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "dataset" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Nooit" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datasets" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Upload log" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisaties" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Details" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "groepen" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "Einde van log" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Site logo" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Alle bronnen" +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"U kan hiet Markdown formatting gebruiken" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Bekijk bron" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Dit veld is verplicht" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Wijzig bron" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Op maat gemaakt" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Het formulier bevat onjuiste informatie:" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Overzichten" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Verplicht veld" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API endpoint" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Ga naar bron" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "Image URL" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Download" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Ruim upload op" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Organisatie Vorm" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Uit de dataset abstract" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Wijzig datasets" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "Bron: %(dataset)s" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Voeg dataset toe" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Er zijn nog geen overzichten voor deze bron." +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "gevonden voor \"{query}\"" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Excuses, geen datasets gevonden voor \"{query}\"" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Maak publiek" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Maak prive" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Schets" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Privë" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Additionele informatie" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Deze organisatie heeft geen datasets" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Veld" +#: 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/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Waarde" +#: 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/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "Onbekend" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Organisatie toevoegen" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Gecreëerd" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Zoek organisaties" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Formaat" +#: 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/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licentie" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Gebruikersnaam" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Nieuw overzicht" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "E-mail adres" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Deze bron heeft geen overzichten" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Bijwerken lid" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Voeg een nieuwe bron toe" +#: ckan/templates/organization/member_new.html:81 +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 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Creëer een Organisatie" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

Deze dataset heeft geen data, Voeg " -"toe

" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Update Organisatie" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Creëer Organisatie" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API documentatie" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Dataset toevoegen" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "volledige {format} dump" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Datasets in organisatie: {group}" -#: ckan/templates/package/search.html:56 -#, python-format +#: 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 "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " +"

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 "" -" U kunt ook het register raadplegen met behulp van de %(api_link)s (see " -"%(api_doc_link)s) of download een %(dump_link)s. " +"

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/package/search.html:60 -#, python-format +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " +" 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 "" -"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 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/package/view_edit_base.html:12 -msgid "View view" -msgstr "Overzicht bekijken" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Mijn Organisatie" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Voorbeeld bekijken" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "mijn-organisatie" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Extra Informatie" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Informatie over de organisatie..." -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Bron" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Weet u zeker dat u deze organisatie wilt verwijderen? Hierdoor worden ook de" +" publieke en prive datasets van deze organisatie verwijderd." -#: 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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Organisatie opslaan" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Versie" +#: 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/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Provincie" +#: ckan/templates/package/base.html:22 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/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Laatst gewijzigd" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Wat zijn datasets?" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: 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/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: 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/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." -msgstr "" +#: 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/snippets/cannot_create_package.html:19 -msgid "" -"Ask a system administrator to create an organization before you can " -"continue." -msgstr "" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Bekijk dataset" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Data API" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Wijzigen metadata" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Titel" +#: 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/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "vb. Een beschrijvende titel" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Preview" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "vb. mijn-dataset" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "updaten" -#: 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/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Link deze groep aan deze dataset" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "vb. Economie, geestelijke gezondheidszorg, overheid" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Voeg toe aan groep" -#: ckan/templates/package/snippets/package_basic_fields.html:41 -msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" -"Defenities van licenties en aanvullende informatie is te vinden op opendefinition.org" +#: ckan/templates/package/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/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organisaties" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Update Dataset" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Geen organisatie" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Data toevoegen aan de dataset" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Zichtbaarheid" +#: 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/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Publiek" +#: 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/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Actief" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Toevoegen" -#: ckan/templates/package/snippets/package_form.html:28 +#: ckan/templates/package/read_base.html:32 +#, python-format 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." +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Dit is een oude revisie van de dataset zoals bewerkt op %(timestamp)s. Het " +"kan aanzienlijk verschillen van de huidige revisie." -#: 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/resource_edit_base.html:17 +msgid "All resources" +msgstr "Alle bronnen" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Volgende: Data toevoegen" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Bekijk bron" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: 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/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Overzichten" -#: 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/resource_read.html:39 +msgid "API Endpoint" +msgstr "API endpoint" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Auteur Email" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Ga naar bron" -#: 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/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Download" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Beheerder Email" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Werk een bron bij" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Uit de dataset abstract" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" -msgstr "" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Bron: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "Er zijn nog geen overzichten voor deze bron." -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "vb. Januari 2011 Gouden Prijzen" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Ziet u niet de views die u verwacht?" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Enkele nuttige informatie over de data" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "vb. CSV, XML of JSON" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/resource_read.html:121 +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/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "vb. 2012-06-05" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Bestands grootte" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "vb. 1024" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME type" +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "vb. applicatie/json" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Additionele informatie" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Weet u zeker dat u deze bron wilt verwijderen" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Veld" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Vorige" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Waarde" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Opslaan & een nieuwe toevoegen" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "Data laatst gewijzigd" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Einde" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "Onbekend" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Wat is een bron?" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "Metadata laatst gewijzigd" -#: 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/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Gecreëerd" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Ontdek" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Formaat" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Meer informatie" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licentie" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Insluiten" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nieuw overzicht" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Deze bron heeft geen overzichten" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Voeg een nieuwe bron toe" -#: ckan/templates/package/snippets/resource_view.html:66 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, python-format msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +"

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

" msgstr "" +"

Deze dataset heeft geen data, Voeg " +"toe

" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Breedte" - -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Hoogte" - -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Code" - -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Voorbeeld van de bron" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Data en bronnen" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API documentatie" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Deze gegevensset heeft geen inhoud" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "volledige {format} dump" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/search.html:56 #, python-format -msgid "Read dataset as of %s" -msgstr "Lees dataset als van %s" - -#: 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" +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/snippets/view_form.html:8 -msgid "eg. My View" +#: 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/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "b.v. informatie over mijn overzicht" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Alle overzichten" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Filter toevoegen" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Overzicht bekijken" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Filter verwijderen" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Voorbeeld bekijken" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filters" +#: 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/view_help.html:2 -msgid "What's a view?" -msgstr "Wat is een overzicht?" +#: 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/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/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/revision/diff.html:6 -msgid "Differences" -msgstr "Verschillen" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versie" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Revisie verschillen" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Provincie" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Verschil" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Laatst gewijzigd" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Geen verschillen" +#: 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/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Revisie Historie" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Maak een nieuwe organisatie" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Revisies" +#: 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/revision/read.html:30 -msgid "Undelete" -msgstr "Herstellen" +#: 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/revision/read.html:64 -msgid "Changes" -msgstr "Veranderingen" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titel" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Labels van de dataset" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "vb. Een beschrijvende titel" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entiteit" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "vb. mijn-dataset" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Nieuw activiteiten item" +#: 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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Ingebedde Data Kijker" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "vb. Economie, geestelijke gezondheidszorg, overheid" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Sluit deze mening in door het te kopiëren in uw webpagina:" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Defenities van licenties en aanvullende informatie is te vinden op opendefinition.org" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Kies de breedte en hoogte in pixels:" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisaties" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Breedte:" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Geen organisatie" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Hoogte:" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Zichtbaarheid" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Datapusher status: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Publiek" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Trackback URL" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Actief" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Toon meer {facet_type}" +#: 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/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Toon enkel populaire {facet_type}" +#: 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/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Er zijn geen {facet_type} die overeenkomen met het gezochte" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Volgende: Data toevoegen" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Home" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Taal" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Ga" +#: 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/snippets/license.html:14 -msgid "No License Provided" -msgstr "Geen licentie verstrekt" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Auteur Email" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Deze dataset voldoet aan de Open definitie." +#: 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/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Er is geen beschrijving voor deze organisatie" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Beheerder Email" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Deze dataset heeft geen beschrijving" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Werk een bron bij" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Voorleggen" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Data" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Sorteer op" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filter Resultaten" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "vb. Januari 2011 Gouden Prijzen" + +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Enkele nuttige informatie over de data" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Probeer een andere zoekopdracht.

" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "vb. CSV, XML of JSON" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" 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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "vb. 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "Geen datasets gevonden voor \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Bestands grootte" -#: 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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "vb. 1024" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Geen datasets gevonden" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME type" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "vb. applicatie/json" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Geen groepen gevonden voor \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Weet u zeker dat u deze bron wilt verwijderen" -#: 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/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Vorige" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Geen groepen gevonden" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Opslaan & een nieuwe toevoegen" -#: 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/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Einde" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "Geen organisaties gevonden voor \"{query}\"" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Wat is een bron?" -#: 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/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/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Geen organisatie gevonden" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Ontdek" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Sociaal" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Meer informatie" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Abonneren" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Insluiten" -#: 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:82 -msgid "Email" -msgstr "Email" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Wijzigingen" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Zoeklabels" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Breedte" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "News feed" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Hoogte" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Mijn Datasets" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Code" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Mijn organisaties" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Voorbeeld van de bron" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Mijn groepen" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Data en bronnen" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Activiteit van paginas die ik volg" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Deze gegevensset heeft geen inhoud" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Je hebt geen datasets aangemaakt." +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Lees dataset als van %s" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Nu een aanmaken?" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Creëer dataset" -#: 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/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/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "U bent lid van geen enkele organisatie" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +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 "Gebruikers" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "b.v. informatie over mijn overzicht" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Accountinformatie" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Filter verwijderen" -#: 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/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Wat is een overzicht?" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Wijzigen details" +#: 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/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Volledige naam" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Verschillen" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "Bijvoorbeeld: Joe Bloggs" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Revisie verschillen" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "Bijvoorbeeld: joe@voorbeeld.com" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Verschil" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Informatie over jou" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Geen verschillen" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Notificatie e-mails ontvangen?" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Revisie Historie" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Wijzigen wachtwoord" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Revisies" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Herstellen" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Wachtwoord" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Veranderingen" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Bevestig wachtwoord" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Labels van de dataset" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Weet u zeker dat u deze gebruiker wilt verwijderen?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entiteit" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Nieuw activiteiten item" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Vernieuw API key" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Ingebedde Data Kijker" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Profiel bewerken" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Sluit deze mening in door het te kopiëren in uw webpagina:" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Alle gebruikers" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Kies de breedte en hoogte in pixels:" -#: 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/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Breedte:" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Heb je een Account nodig?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Hoogte:" -#: 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/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher status: {status}." -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Account aanmaken" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Wachtwoord vergeten?" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Toon meer {facet_type}" -#: 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/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Toon enkel populaire {facet_type}" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Wachtwoord vergeten?" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Er zijn geen {facet_type} die overeenkomen met het gezochte" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Uitgelogd" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Home" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Je bent nu uitgelogd." +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Taal" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Je bent al ingelogd als {user}." +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Ga" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Uitloggen" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Geen licentie verstrekt" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Inloggegevens onthouden" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Deze dataset voldoet aan de Open definitie." -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Je bent al ingelogd" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Er is geen beschrijving voor deze organisatie" -#: ckan/templates/user/logout_first.html:24 -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/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Deze dataset heeft geen beschrijving" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Uitloggen" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Voorleggen" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Inschrijving" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Sorteer op" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Registreren voor een nieuwe Account" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filter Resultaten" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Waarom aanmelden?" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Probeer een andere zoekopdracht.

" -#: 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/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "gebruikersnaam" +#: 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/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Volledige naam" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Geen datasets gevonden voor \"{query}\"" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Account aanmaken" +#: 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/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Wachtwoord Herstellen" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Geen datasets gevonden" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Wachtwoord Herstel" +#: 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/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Wachtwoord Bijwerken" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Geen groepen gevonden voor \"{query}\"" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Hoe werkt dit?" +#: 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/user/perform_reset.html:40 -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/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Geen groepen gevonden" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Gebruiker heeft geen datasets aangemaakt." +#: 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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Je hebt geen biografie aangemaakt." +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Geen organisaties gevonden voor \"{query}\"" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Deze gebruiker heeft geen biografie." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Geen organisatie gevonden" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Dit betekent dat alleen jij het kan zien" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Sociaal" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Lid sinds" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Abonneren" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API key" +#: 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:82 +msgid "Email" +msgstr "Email" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Herstel uw wachtwoord" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Wachtwoord herstellen" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Wijzigingen" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Herstel aanvragen" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Zoeklabels" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Voor je gebruikersnaam in en wij sturen je een e-mail met een link naar een " -"nieuw wachtwoord." +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "News feed" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Activiteit op: " +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Mijn Datasets" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Zoek resultaten..." +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mijn organisaties" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Je volgt op dit moment niets" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mijn groepen" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Geen volgers" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Activiteit van paginas die ik volg" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Zoek Gebruikers" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Je hebt geen datasets aangemaakt." -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Compleet" +#: 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:16 +msgid "Create one now?" +msgstr "Nu een aanmaken?" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Wachtend" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "U bent lid van geen enkele groep" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Opsturen" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "U bent lid van geen enkele organisatie" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Nog niet geupload" +#: 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" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Datastore bron niet gevonden" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Accountinformatie" -#: ckanext/datastore/db.py:663 +#: ckan/templates/user/edit.html:19 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +" 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." -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -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" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Wijzigen details" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Volledige naam" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "Bijvoorbeeld: Joe Bloggs" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "Bijvoorbeeld: joe@voorbeeld.com" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Informatie over jou" -#: 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" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Notificatie e-mails ontvangen?" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "aangepaste text" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Wijzigen wachtwoord" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Landcode" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "Systeembeheer wachtwoord" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Wachtwoord" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Bevestig wachtwoord" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Deze groep heeft geen beschrijving" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Weet u zeker dat u deze gebruiker wilt verwijderen?" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "Afbeelding URL" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Vernieuw API key" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Profiel bewerken" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Alle gebruikers" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Tabel" +#: 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" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Grafiek" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Heb je een Account nodig?" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Kaart" +#: 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." -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: 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?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "bijv.: 0" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" -#: 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" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Uitgelogd" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "bijv.: 100" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Je bent nu uitgelogd." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Grafieksoort" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Je bent al ingelogd als {user}." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Groep (As 1)" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Uitloggen" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Series (As 2)" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Inloggegevens onthouden" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Veldsoort" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Je bent al ingelogd" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Veld voor geografische breedte (lat)" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Veld voor geografische lengte (lon)" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Uitloggen" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "GeoJSON veld" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Inschrijving" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Automatische alle objecten in beeld brengen" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registreren voor een nieuwe Account" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Objecten samenvoegen (clusteren)" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Waarom aanmelden?" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Totaal aantal datasets" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Dreëer datasets, groepen en andere interessante dingen" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Datum" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "gebruikersnaam" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Totaal aantal datasets" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Volledige naam" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Datasets herzieningen per Week" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Account aanmaken" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Alle dataset herzieningen" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Wachtwoord Herstellen" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Nieuwe datasets" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Wachtwoord Herstel" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Hoogst gewaardeerde datasets" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Wachtwoord Bijwerken" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Gemiddelde score" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Hoe werkt dit?" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Aantal scores" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Voor een nieuw wachtwoord in en wij werken je account bij" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Geen score" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Gebruiker heeft geen datasets aangemaakt." -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Meest bewerkte dataset" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Je hebt geen biografie aangemaakt." -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Aantal veranderingen" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Deze gebruiker heeft geen biografie." -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Geen bewerkte datasets" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Grootste groepen" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Dit betekent dat alleen jij het kan zien" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Aantal datasets" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Lid sinds" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Geen groepen" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API key" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Top labels" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Herstel uw wachtwoord" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Tag Naam" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Wachtwoord herstellen" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Aantal Datasets" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Herstel aanvragen" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Voor je gebruikersnaam in en wij sturen je een e-mail met een link naar een " +"nieuw wachtwoord." -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Statistieken Menu" - -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Totaal Aantal Datasets" - -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Tekst" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Activiteit op: " -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" -msgstr "" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Zoek resultaten..." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Website" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Je volgt op dit moment niets" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Geen volgers" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Zoek Gebruikers" diff --git a/ckan/i18n/no/LC_MESSAGES/ckan.mo b/ckan/i18n/no/LC_MESSAGES/ckan.mo index d493f827d2a..2b090b06cda 100644 Binary files a/ckan/i18n/no/LC_MESSAGES/ckan.mo and b/ckan/i18n/no/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/no/LC_MESSAGES/ckan.po b/ckan/i18n/no/LC_MESSAGES/ckan.po index 2cfb6faa95e..29874ca7b33 100644 --- a/ckan/i18n/no/LC_MESSAGES/ckan.po +++ b/ckan/i18n/no/LC_MESSAGES/ckan.po @@ -1,4578 +1,4678 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Hilde Austlid , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: no\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Autoriseringsfunksjonen ikke funnet: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Fullførstikkorauthori" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Admin" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Venter" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Redaktør" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Sender inn" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Medlem" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Feil" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Du må være systemadministrator for å forvalte" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Ikke lastet opp ennå" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Nettstedets tittel" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Ressursen ikke funnet" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Stil" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Ikke tilgang til å se denne siden" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Nettstedets slagord" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Last opp til DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Logo" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Feil ved opplasting:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Feil:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Tekst til om-siden" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Sporing av feil: " -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Introtekst" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Tekst på hjemmesiden" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Sist endret" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Egendefinert CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Aldri" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Egendefinert CSS som settes inn på hver side" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Last opp logg" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Hjemmeside" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detaljer" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Slutt på logg" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" -#: ckan/controllers/admin.py:160 +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "format: må være en av %s" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Fant ikke DataStore-ressurs" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Kan ikke tømme pakken %s fordi tilknyttet versjon %s inkluderer ikke-" -"slettede datakilder %s" +"Ugyldige data (f.eks. et tall utenfor tillatt verdi eller tekst i et felt " +"for tall)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Feil på sletting av versjon %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Fant ikke ressursen \"{0}\"" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Tømming komplett" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Brukeren {0} har ikke tillatelse til å oppdatere ressursen {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Handling ikke implementert." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN data-API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Ikke autorisert til å se denne siden" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Ingen tilgang" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Les mer i dokumentasjonen for data-API i CKAN og DataStore.

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Ikke funnet" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Endpoints" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Feilaktig forespørsel" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Handlingsnavn ukjent: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Opprett" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON-feil: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Oppdater/legg til" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Feil på dataene i forespørselen: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Spørring" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Kan ikke liste enhet av denne typen: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Spørring (via SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Kan ikke lese enhet av denne typen: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Spør" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Kan ikke opprette ny enhet av denne typen: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Eksempel på spørring (første fem resultater)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Kan ikke legge datakilde til søkeindeksen" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Eksempel på spørring (resultater inneholder 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Kan ikke oppdatere enhet av denne typen: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Eksempel på spørring (via SQL-statement)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Kan ikke oppdatere søkeindeksen" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Eksempel: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Kan ikke slette enhet av denne typen: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +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" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Ingen versjon spesifisert" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Eksempel: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Det finnes ingen versjon med id: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "Felt {num}." -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Søkestreng mangler ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Merkelapp" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Kunne ikke lese parametere: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Beskrivelse" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Feil i søkebegrep: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Lagre" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Ukjent register: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Dataordbok" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Feil utformet qjson-verdi: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Kolonne" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Forespurte parametere må være i formen til en json-kodet ordbok." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "Type" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Fant ikke gruppen" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Laster..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Fant ikke organisasjon." +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Data-API" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Feil gruppetype" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tabell" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organisasjoner" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Responsiv visning" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Grupper" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Vis kolonner" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Stikkord (tags)" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "Skjul/vis kolonner" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formater" - -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Lisenser" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datasett per side" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Ikke autorisert til å utføre bulk-oppdatering" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testkonfigurasjon" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Ikke autorisert til å opprette en ny gruppe" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevans" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Bruker %r ikke autorisert til å redigere %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Integritetsfeil" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Bruker %r ikke autorisert til å redigere rettighetene til %s" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Sist endret" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Ikke autorisert til å slette gruppen %s" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Egendefinert felt stigende" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organisasjonen er blitt slettet." +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Egendefinert felt synkende" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Gruppen har blitt slettet." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Populære" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s har blitt slettet." +#: 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" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Ikke autorisert til å legge medlem til gruppen %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "egendefinert tekst" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Ikke autorisert til å slette medlemmer fra gruppen %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Landkode" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Gruppemedlem er blitt slettet." +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "egendefinert ressurstekst" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Velg to versjoner før du gjør sammenligningen." +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Denne teksten er ikke oversatt" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Endringshistorikk for gruppe" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Nylige endringer i gruppen:" +#: 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/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Loggmelding:" +#: 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" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Du følger nå {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 har mange nyttige verktøy for forhåndsvisning av data" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Du følger ikke lenger {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Følgere" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Ikke autorisert til å se følgere %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ressurser" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "Dette nettstedet er frakoblet. Databasen er ikke startet." +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Bilde" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "Oppdater profilen din og legg til e-postadressen din." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL til bilde" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -"%s bruker e-postadressen din i tilfelle du trenger å tilbakestille passordet" -" ditt." +"f.eks. http://example.com/image.jpg (hvis denne er tom brukes URL til " +"ressursen)" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Data Explorer" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parameteren \"{parameter_name}\" er ikke et heltall" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Graf" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Datasett ikke funnet" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Kart" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Ugyldig versjonsformat: %r" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "feil ved lasting av visning" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" -"Visning av datasett av typen {package_type} i formatet {format} er ikke " -"støttet. (Finner ikke malfil for {file}.)" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "Klarte ikke å laste visning" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Har ikke rettigheten til å lese datakilden %s" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "Feilmelding fra DataStore" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Endringshistorikk for datasett." +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "Feilmelding fra DataProxy" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Siste endringer i CKAN-datasettet:" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "Rutenett" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Ikke autorisert til å opprette en datakilde" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filtere" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Ikke autorisert til å redigere denne ressursen" - -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Ressursen ikke funnet" +#: 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" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Ikke autorisert til å oppdatere datasettet" +#: 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" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Fant ikke datasettet {id}." +#: 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" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Du må legge til minst en dataressurs" +#: 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" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Feil" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Type graf" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Ikke autorisert til å opprette en ressurs" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Gruppe (akse 1)" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Ikke tilgang til å lage en ressurs for denne pakken" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Serie (akse 2)" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Kan ikke legge datakilden til søkeindeksen." +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Felttype" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Kan ikke oppdatere søkeindeksen." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Breddegrad" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Datasettet har blitt slettet." +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Lengdegrad-felt" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Ikke autorisert til å slette datakilde %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON-felt" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Ressursen har blitt slettet." +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Automatisk zoom til funksjoner" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Ikke autorisert til å slette ressursen %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Markører for klynger" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Fant ikke ressursvisning" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Totalt antall datasett" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Fant ikke ressursdata" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Dato" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Materiale til nedlasting ikke tilgjengelig." +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Totalt antall datasett" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Ikke autorisert til å lese datasettet %s" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Datasettversjoner per uke" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Ingen tillatelse å lese ressursen %s" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Alle datasettversjoner" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Ikke tlgang til å redigere ressurs" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Nye datasett" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Fant ikke visning" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Best vurderte datasett" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Fant ikke visningstype" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Gjennomsnittlig vurdering" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Feil i data for ressursvisning" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Antall vurderinger" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Ressursvisning finnes ikke" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Ingen vurderinger" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Ingen forhåndsvisning er definert." +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Oftest redigerte datasett" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Arkivhistorikk" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Datasett" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Siste endringer i datakildearkivet." +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Antall endringer" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Datasett påvirket: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Ingen redigerte datasett" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Versjon oppdatert" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Største grupper" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Annet" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Gruppe" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Stikkord ikke funnet" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Antall datasett" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Bruker ikke funnet" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Ingen grupper" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Ikke autorisert til å registrere som bruker." +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Mest brukte stikkord" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Ikke autorisert til å opprette en brukerkonto" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Stikkordnavn" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Har ikke tillatelse til å slette brukeren \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Antall datasett" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Ingen bruker spesifisert" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "Brukere som har opprettet flest datasett" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Ikke autorisert til å redigere brukeren %s" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Bruker" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profil oppdatert" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Statistikkmeny" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Ikke autorisert til å opprette bruker %s" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Totalt antall datasett" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Feil i captcha. Prøv igjen." +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Tekst" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +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 "" -"Bruker \"%s\" er nå registrert, men du er fortsatt logget inn som \"%s\" fra" -" før" +"f.eks. http://example.com (hvis denne er tom brukes URL til ressursen)" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Ikke autorisert til å redigere en bruker." +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Din nettleser støtter ikke iframes." -#: ckan/controllers/user.py:320 +#: ckan/authz.py:182 #, python-format -msgid "User %s not authorized to edit %s" -msgstr "Bruker %s ikke autorisert til å redigere %s" - -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Feil passord" +msgid "Authorization function not found: %s" +msgstr "Autoriseringsfunksjonen ikke funnet: %s" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Gammelt passord" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Admin" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "feil passord" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Redaktør" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Innlogging mislyktes. Galt brukernavn eller passord." +#: ckan/authz.py:202 +msgid "Member" +msgstr "Medlem" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Ikke autorisert til å be om tilbakestilling av passord." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Du må være systemadministrator for å forvalte" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" passer med flere brukere" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Nettstedets tittel" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Brukeren finnes ikke: %s" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Stil" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Sjekk innboksen din for en tilbakestillingskode." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Nettstedets slagord" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Kunne ikke sende tilbakestillings-lenke: %s" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Logo" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Ikke autorisert til å tilbakestille passord." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Ugyldig tilbakestillingskode. Prøv igjen." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Tekst til om-siden" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Ditt passord har blitt tilbakestilt." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Introtekst" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Passordet må bestå av 4 tegn eller mer." +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Tekst på hjemmesiden" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Passordene du skrev inn stemmer ikke overens." +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Egendefinert CSS" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Du må oppgi et passord" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Egendefinert CSS som settes inn på hver side" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Fant ikke materiale" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Hjemmeside" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} ikke funnet" +#: ckan/controllers/admin.py:161 +#, 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/user.py:654 -msgid "Everything" -msgstr "Alt" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Feil på sletting av versjon %s: %s" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Manglende verdi" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Tømming komplett" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Videresending til eksternt nettsted er ikke tillatt." +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Handling ikke implementert." -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} la stikkordet {tag} til datasettet {dataset}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Ingen tilgang" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} oppdaterte gruppen {group}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Ikke funnet" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} oppdaterte organisasjonen {organization}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Feilaktig forespørsel" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} oppdaterte datasettet {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Handlingsnavn ukjent: %s" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} endret extra {extra} til datasettet {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON-feil: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} oppdaterte ressursen {resource} i datasettet {dataset}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Feil på dataene i forespørselen: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} oppdaterte profilen sin" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Kan ikke liste enhet av denne typen: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} slettet gruppen {group}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Kan ikke lese enhet av denne typen: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} slettet organisasjonen {organization}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Kan ikke opprette ny enhet av denne typen: %s %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} slettet datasettet {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Kan ikke legge datakilde til søkeindeksen" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} slettet extra {extra} fra datasettet {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Kan ikke oppdatere enhet av denne typen: %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} slettet ressursen {resource} fra datasettet {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Kan ikke oppdatere søkeindeksen" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} opprettet gruppen {group}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Kan ikke slette enhet av denne typen: %s %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} opprettet organisasjonen {organization}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Ingen versjon spesifisert" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} opprettet datasettet {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Det finnes ingen versjon med id: %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} la extra {extra} til datasettet {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Søkestreng mangler ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} la ressursen {resource} til datasettet {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Kunne ikke lese parametere: %r" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} registrert" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Feil i søkebegrep: %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} fjernet stikkordet {tag} fra datasettet {dataset}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Ukjent register: %s" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} følger nå {dataset}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Feil utformet qjson-verdi: %r" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} følger nå {user}" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Forespurte parametere må være i formen til en json-kodet ordbok." -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} følger nå {group}" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Fant ikke gruppen" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Se" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Fant ikke organisasjon." -#: 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/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Feil gruppetype" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "januar" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organisasjoner" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "februar" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Grupper" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "mars" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Stikkord" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "april" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formater" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "mai" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Lisenser" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "juni" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Bruker %r har ikke tillatelse til å redigere %s" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "juli" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Ikke tilgang til å utføre bulk-oppdatering" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "august" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Ikke tilgang til å opprette en ny gruppe" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "september" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Integritetsfeil" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "oktober" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Bruker %r har ikke tilgang til å redigere rettighetene til %s" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "november" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Ikke tillatelse til å slette gruppen %s" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "desember" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organisasjonen er blitt slettet." -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "akkurat nå" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Gruppen har blitt slettet." -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} minutt siden" -msgstr[1] "{mins} minutter siden" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s har blitt slettet." -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} time siden" -msgstr[1] "{hours} timer siden" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "Brukeren %r har ikke tilgang til å redigere medlemmer av %s" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} dag siden" -msgstr[1] "{days} dager siden" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Ikke tilgang til å legge medlem til gruppen %s" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} måned siden" -msgstr[1] "{months} måneder siden" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Ikke tilgang til å slette medlemmer fra gruppen %s" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "mer enn {years} år siden" -msgstr[1] "mer enn {years} år siden" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Gruppemedlem er blitt slettet." -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Velg to versjoner før du gjør sammenligningen." -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Endringshistorikk for gruppe" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Nylige endringer i gruppen:" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Loggmelding:" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Du følger nå {0}" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Du følger ikke lenger {0}" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Ikke tilgang til å se følgere %s" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: 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/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "Oppdater profilen din og legg til e-postadressen din." -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "Ugyldig søk: {error_message}" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parameteren \"{parameter_name}\" er ikke et heltall" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Datasett ikke funnet" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Ugyldig versjonsformat: %r" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:396 +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/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Har ikke tilgang til å lese datakilden %s" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Oppdater din avatar på gravatar.com" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Endringshistorikk for datasett." -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Ukjent" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Siste endringer i CKAN-datasettet:" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Ressurs mangler navn" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Ikke tilgang til å opprette en datakilde" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Opprettet nytt datasett." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Ikke tilgang til å redigere denne ressursen" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Redigerte ressurser." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Ikke tilgang til å oppdatere datasettet" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Redigerte innstillinger." +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Fant ikke datasettet {id}." -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} visning" -msgstr[1] "{number} visninger" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Du må legge til minst en dataressurs" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} nylig visning" -msgstr[1] "{number} nylige visninger" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Ikke tilgang til å opprette en ressurs" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Ikke tilgang til å lage en ressurs for denne pakken" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Ingen e-postadresse for mottaker tilgjengelig" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Kan ikke legge datakilden til søkeindeksen." -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organisasjon" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Kan ikke oppdatere søkeindeksen." -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "gruppe" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Datasettet har blitt slettet." -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Manglende verdi" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Ikke tilgang til å slette datakilde %s" -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Ressursen har blitt slettet." + +#: ckan/controllers/package.py:1052 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "Feltet %(name)s er uventet." +msgid "Unauthorized to delete resource %s" +msgstr "Ikke tilgang til å slette ressursen %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Oppgi et heltall" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Fant ikke ressursvisning" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Ressurser" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Fant ikke ressursdata" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Ugyldige ressurser for datakilde" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Materiale til nedlasting ikke tilgjengelig." -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Ekstra" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Ikke tilgang til å lese datasettet %s" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1404 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Stikkordtype \"%s\" eksisterer ikke" +msgid "Unauthorized to read resource %s" +msgstr "Ikke tilgang til å lese ressursen %s" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Bruker" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Ikke tlgang til å redigere ressurs" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Datasett" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Fant ikke visning" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Gruppe" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Fant ikke visningstype" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Klarte ikke å tolke som gyldig JSON" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Feil i data for ressursvisning" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Ressursvisning finnes ikke" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organisasjonen eksisterer ikke" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Ingen forhåndsvisning er definert." -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Du kan ikke legge et datasett til denne organisasjonen" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Arkivhistorikk" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Ugyldig heltall" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Siste endringer i datakildearkivet." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Må være et heltall" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Datasett påvirket: %s.\n" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Må være et positivt heltall" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Versjon oppdatert" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Feil i datoformat" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Annet" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Ingen lenker er tillatt i log_message." +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Stikkord ikke funnet" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Datasett-ID finnes allerede" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Ikke tilgang til å registrere som bruker." -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Ressurs" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Ikke tilgang til å opprette en brukerkonto" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Dette gruppenavnet eller ID eksisterer ikke." +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Har ikke tillatelse til å slette brukeren \"{user_id}\"." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Aktivitetstype" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Ingen bruker spesifisert" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Navn må være tekststrenger" +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Ikke tilgang til å redigere brukeren %s" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Navnet kan ikke brukes" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Bruker ikke funnet" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "Må være på minst %s tegn" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profil oppdatert" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Navnet må inneholde maksimalt %i tegn" +msgid "Unauthorized to create user %s" +msgstr "Ikke tilgang til å opprette bruker %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Feil i captcha. Prøv igjen." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "Må bestå av små bokstaver, tall og og disse symbolene: -_" +"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/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Denne URL er allerede i bruk." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Ikke tilgang til å redigere en bruker." -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Navnet \"%s\" inneholder mindre enn %s tegn" +msgid "User %s not authorized to edit %s" +msgstr "Bruker %s ikke tilgang til å redigere %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Navnet \"%s\" inneholder flere enn %s tegn" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Feil passord" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Versjon må inneholde maksimalt %i tegn" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Gammelt passord" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Dupliser nøkkel \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "feil passord" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "En gruppe med dette navnet finnes allerede i databasen" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Innlogging mislyktes. Galt brukernavn eller passord." -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Lengden til stikkordet \"%s\" er kortere enn minimum %s" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Ikke tilgang til å be om tilbakestilling av passord." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Lengden til stikkordet \"%s\" er mer enn maksimalt %i" +msgid "\"%s\" matched several users" +msgstr "\"%s\" passer med flere brukere" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" -"Stikkordet \"%s\" må skrives med alfanumeriske tegn (ascii) og symboler: -_." +msgid "No such user: %s" +msgstr "Brukeren finnes ikke: %s" + +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Sjekk innboksen din for en tilbakestillingskode." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Stikkordet \"%s\" kan ikke skrives med store bokstaver" +msgid "Could not send reset link: %s" +msgstr "Kunne ikke sende tilbakestillings-lenke: %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Brukernavn må være tekststrenger" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Ikke tilgang til å tilbakestille passord." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Brukernavnet er ikke tilgjengelig." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Ugyldig tilbakestillingskode. Prøv igjen." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Skriv inn begge passordene" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Ditt passord har blitt tilbakestilt." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Passord må være tekststrenger" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Passordet må bestå av 4 tegn eller mer." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Ditt passord må være 4 tegn eller mer" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Passordene du skrev inn stemmer ikke overens." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Passordene du skrev inn stemmer ikke overens" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Du må oppgi et passord" -#: ckan/logic/validators.py:610 -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/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Fant ikke materiale" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Navnet må være minst %s tegn langt" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} ikke funnet" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Dette navnet er allerede i bruk." +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Alt" -#: ckan/logic/validators.py:633 -#, 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/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Manglende verdi" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Fant ikke stikkordvokabular." +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Videresending til eksternt nettsted er ikke tillatt." -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Stikkord %s tilhører ikke vokabularet %s" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} la stikkordet {tag} til datasettet {dataset}" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Intet stikkordnavn" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} oppdaterte gruppen {group}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Stikkord %s tilhører allerede vokabular %s" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} oppdaterte organisasjonen {organization}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Oppgi en gyldig URL" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} oppdaterte datasettet {dataset}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "rollen eksisterer ikke." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} endret extra {extra} til datasettet {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Datasett uten organisasjon kan ikke være private." +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} oppdaterte ressursen {resource} i datasettet {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "ikke en liste" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} oppdaterte profilen sin" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "ikke en streng" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} slettet gruppen {group}" -#: ckan/logic/validators.py:781 -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/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} slettet organisasjonen {organization}" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" og \"filter_values\" må ha samme lengde" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} slettet datasettet {dataset}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" er nødvendig når \"filter_values\" er oppgitt" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} slettet extra {extra} fra datasettet {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" er nødvendig når \"filter_fields\" er oppgitt" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} slettet ressursen {resource} fra datasettet {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Det finnes et skjema-felt med samme navn" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} opprettet gruppen {group}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Opprett objekt %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} opprettet organisasjonen {organization}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Opprett relasjon til datakilde: %s %s %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} opprettet datasettet {dataset}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Opprett medlemsobjekt %s" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} la extra {extra} til datasettet {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Prøver å opprette en organisasjon som en gruppe" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} la ressursen {resource} til datasettet {dataset}" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "Du må angi et navn eller id for datakilden (parameter \"pakke\")." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} registrert" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Du må angi en rangering (parameter \"rating\")." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} fjernet stikkordet {tag} fra datasettet {dataset}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Rangeringen må være et heltall" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} følger nå {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Rangeringen må være mellom %i og %i." +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} følger nå {user}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} følger nå {group}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Du må være innlogget for å kunne følge brukere" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Se" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Du kan ikke følge deg selv" +#: 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/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Du følger allerede {0}" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "januar" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Du må være innlogget for å følge et datasett." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "februar" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Bruker {username} eksisterer ikke." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "mars" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Du må være logget inn for å følge en gruppe." +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "april" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "mai" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Slett datakilde: %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "juni" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Slett %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "juli" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Slett medlem: %s" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "august" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id finnes ikke i data" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "september" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Kan ikke finne vokabular \"%s\"" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "oktober" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Kan ikke finne stikkord \"%s\"" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "november" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Du må være innlogget for å slutte å følge noe." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "desember" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Du følger ikke {0}." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "akkurat nå" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Fant ikke ressursen." +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} minutt siden" +msgstr[1] "{mins} minutter siden" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Ikke spesifiser hvis \"query\"-parameter brukes" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} time siden" +msgstr[1] "{hours} timer siden" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Må være : pair(s)" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} dag siden" +msgstr[1] "{days} dager siden" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Feltet \"{field}\" ikke gjenkjent i resource_search." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} måned siden" +msgstr[1] "{months} måneder siden" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Fant ikke datakilden." +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "mer enn {years} år siden" +msgstr[1] "mer enn {years} år siden" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Oppdater objekt %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{day}. {month} {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Oppdater pakkerelasjon: %s %s %s" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "Fant ikke TaskStatus." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Fant ikke organisasjon." +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: 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 autorisert til å registrere datakilder" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Bruker %s ikke autorisert til å redigere disse gruppene" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" -"Bruker %s ikke autorisert til å legge datasett til denne organisasjonen" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "Datasett-ID ikke oppgitt, kan ikke sjekke autentisering." +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "Ingen datakilde funnet for denne ressursen, kan ikke sjekke aut." +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "Bruker %s ikke autorisert til å redigere disse datakildene" +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "Bruker %s ikke autorisert til å opprette grupper" +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "Bruker %s ikke autorisert til å opprette organisasjoner" +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: 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/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: 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:211 -msgid "Valid API key needed to create a package" -msgstr "Gyldig API-nøkkel kreves for å opprette en datakilde" - -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Gyldig API-nøkkel påkrevet for å opprette en gruppe" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Bruker %s ikke autorisert til å legge til medlemmer" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Bruker %s ikke autorisert til å redigere gruppen %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Oppdater din avatar på gravatar.com" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "Bruker %s ikke autorisert til å slette ressursen %s" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Ukjent" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "Fant ikke ressursvisning, kan ikke sjekke autentisering." +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Ressurs mangler navn" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "Bruker %s ikke autorisert til å slette forhold %s" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Opprettet nytt datasett." -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "Bruker %s ikke autorisert til å slette grupper" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Redigerte ressurser." -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "Bruker %s ikke autorisert til å slette gruppen %s" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Redigerte innstillinger." -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "Bruker %s ikke autorisert til å slette organisasjoner" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} visning" +msgstr[1] "{number} visninger" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "Bruker %s ikke autorisert til å slette organisasjonen %s" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} nylig visning" +msgstr[1] "{number} nylige visninger" -#: ckan/logic/auth/delete.py:120 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete task_status" -msgstr "Bruker %s ikke autorisert til å slette task_status" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Ikke autorisert" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Ingen e-postadresse for mottaker tilgjengelig" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "Bruker %s ikke autorisert til å lese disse datakildene" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organisasjon" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "Bruker %s ikke autorisert til å lese datakilden %s" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "gruppe" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Bruker %s ikke autorisert til å lese ressurs %s" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Manglende verdi" -#: ckan/logic/auth/get.py:176 +#: ckan/lib/navl/validators.py:66 #, 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:258 -msgid "You must be logged in to access your dashboard." -msgstr "Du må være innlogget for å få tilgang til kontrollpanelet ditt." +msgid "The input field %(name)s was not expected." +msgstr "Feltet %(name)s er uventet." -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "Bruker %s ikke autorisert til å redigere datakilden %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Oppgi et heltall" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Bruker %s ikke autorisert til å redigere ressursen %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "Må være en unicode-streng" -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "Bruker %s ikke autorisert til å endre status for datakilden %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Ugyldige ressurser for datakilde" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "Bruker %s ikke autorisert til å redigere organisasjonen %s" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Ekstra" -#: ckan/logic/auth/update.py:145 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "Bruker %s ikke autorisert til å endre status for gruppen %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Stikkordtype \"%s\" eksisterer ikke" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "Bruker %s ikke autorisert til å redigere tillatelsene for gruppen %s" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Klarte ikke å tolke som gyldig JSON" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Må være logget inn for å redigere bruker" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "Du må oppgi en organisasjon" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "Bruker %s ikke autorisert til å redigere bruker %s" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Organisasjonen eksisterer ikke" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "Bruker {0} har ikke tilgang til å oppdatere bruker {1}" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Du kan ikke legge et datasett til denne organisasjonen" -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "Bruker %s ikke autorisert til å endre status for versjonen" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Ugyldig heltall" -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "Bruker %s ikke autorisert til å oppdatere tabellen task_status" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Må være et heltall" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "Bruker %s ikke autorisert til å oppdatere term_translation table" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Må være et positivt heltall" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Gyldig API-nøkkel påkrevet for å redigere en datakilde" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Feil i datoformat" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Gyldig API-nøkkel påkrevet for å redigere en gruppe" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Ingen lenker er tillatt i log_message." -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Lisens ikke oppgitt" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Datasett-ID finnes allerede" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Ressurs" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Dette gruppenavnet eller ID eksisterer ikke." -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Aktivitetstype" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Navn må være tekststrenger" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Navngivelse" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Navnet kan ikke brukes" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Navngivelse-Del på samme vilkår" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Må være på minst %s tegn" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Navnet må inneholde maksimalt %i tegn" -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Annet (åpen)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "Må bestå av små bokstaver, tall og og disse symbolene: -_" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Annet (public domain)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Denne URL er allerede i bruk." -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Annet (navngivelse)" +#: ckan/logic/validators.py:366 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Navnet \"%s\" inneholder mindre enn %s tegn" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:370 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Navnet \"%s\" inneholder flere enn %s tegn" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons ikke-kommersiell" +#: ckan/logic/validators.py:376 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Versjon må inneholde maksimalt %i tegn" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Annet (ikke-kommersiell)" +#: ckan/logic/validators.py:394 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Dupliser nøkkel \"%s\"" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Annet (ikke åpen)" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "En gruppe med dette navnet finnes allerede i databasen" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:416 #, python-format -msgid "depends on %s" -msgstr "avhenger av %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Lengden til stikkordet \"%s\" er kortere enn minimum %s" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a dependency of %s" -msgstr "tilhører %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Lengden til stikkordet \"%s\" er mer enn maksimalt %i" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:428 #, python-format -msgid "derives from %s" -msgstr "avledes fra %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Stikkordet \"%s\" må skrives med alfanumeriske tegn (ascii) og symboler: -_." -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:436 #, python-format -msgid "has derivation %s" -msgstr "har avledningen %s" +msgid "Tag \"%s\" must not be uppercase" +msgstr "Stikkordet \"%s\" kan ikke inneholde store bokstaver" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "lenker til %s" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Brukernavn må være tekststrenger" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "is linked from %s" -msgstr "er lenket fra %s" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Brukernavnet er ikke tilgjengelig." -#: ckan/model/package_relationship.py:57 -#, python-format -msgid "is a child of %s" -msgstr "er underordnet av %s" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Skriv inn begge passordene" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Passord må være tekststrenger" + +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Ditt passord må være 4 tegn eller mer" + +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Passordene du skrev inn stemmer ikke overens" + +#: ckan/logic/validators.py:611 +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:620 #, python-format -msgid "is a parent of %s" -msgstr "er overordnet til %s" +msgid "Name must be at least %s characters long" +msgstr "Navnet må være minst %s tegn langt" -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Dette navnet er allerede i bruk." + +#: ckan/logic/validators.py:634 #, python-format -msgid "has sibling %s" -msgstr "har søsken %s" +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/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Laster..." +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Fant ikke stikkordvokabular." -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Ingen API-data kan lastes for denne ressursen" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Stikkord %s tilhører ikke vokabularet %s" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Kunne ikke laste informasjon om data-API" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Intet stikkordnavn" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Ingen treff" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Stikkord %s tilhører allerede vokabular %s" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Skriv inn..." +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Oppgi en gyldig URL" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "For kort, må være minst ett tegn" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "rollen eksisterer ikke." -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Du har gjort endringer i skjemaet som ikke er lagret" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Datasett uten organisasjon kan ikke være private." -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Bekreft handling" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "ikke en liste" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Er du sikker på at du vil utføre denne handlingen?" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "ikke en streng" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Bekreft" +#: ckan/logic/validators.py:782 +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/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Avbryt" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" og \"filter_values\" må ha samme lengde" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Følg" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" er nødvendig når \"filter_values\" er oppgitt" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Ikke følg" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" er nødvendig når \"filter_fields\" er oppgitt" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Opplasting" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Det finnes et skjema-felt med samme navn" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Lenke" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "E-post-adressa {email} har ikke gyldig format." -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Fjern" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Opprett objekt %s" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Bilde" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Opprett relasjon til datakilde: %s %s %s" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Opprett medlemsobjekt %s" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Fil" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Prøver å opprette en organisasjon som en gruppe" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Last opp en fil til datamaskinen din" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Du må angi et navn eller id for datakilden (parameter \"pakke\")." -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Du må angi en rangering (parameter \"rating\")." -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Forandre rekkefølge på ressurser" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Rangeringen må være et heltall" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Lagre rekkefølge" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Rangeringen må være mellom %i og %i." -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Lagrer..." +#: ckan/logic/action/create.py:1064 +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/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Last opp en fil" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Du må være innlogget for å kunne følge brukere" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "En feil oppsto" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Du kan ikke følge deg selv" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Ressurs lastet opp" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Du følger allerede {0}" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Klarer ikke å laste opp fil" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Du må være innlogget for å følge et datasett." -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Klarer ikke å autentisere opplasting" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Bruker {username} eksisterer ikke." -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Finner ikke data for opplastet fil" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Du må være logget inn for å følge en gruppe." -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Du laster opp en fil. Er du sikker på at du vil forlate siden og stoppe " -"denne opplastingen?" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "Slett bruker: {0}" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Forandre rekkefølgen i ressursvisning" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Slett datakilde: %s" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Rediger" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Slett %s" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Vis mer" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Slett medlem: %s" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Skjul" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id finnes ikke i data" -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 #, python-format -msgid "Error %(error_code)s" -msgstr "Feil %(error_code)s" +msgid "Could not find vocabulary \"%s\"" +msgstr "Kan ikke finne vokabular \"%s\"" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Om {0}" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Kan ikke finne stikkord \"%s\"" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Du må være innlogget for å slutte å følge noe." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Du følger ikke {0}." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Laget med CKAN" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Fant ikke ressursen." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Innstillinger for sysadmin" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Ikke spesifiser hvis \"query\"-parameter brukes" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "vis profil" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Må være : pair(s)" -#: ckan/templates/header.html:26 -#, 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/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Feltet \"{field}\" ikke gjenkjent i resource_search." -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Kontrollpanel" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Fant ikke datakilden." -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Rediger innstillinger" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Oppdater objekt %s" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Innstillinger" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Oppdater pakkerelasjon: %s %s %s" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Logg ut" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "Fant ikke TaskStatus." -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Logg inn" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Fant ikke organisasjon." -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Registrer" +#: 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/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Datasett" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Bruker %s ikke tilgang til å redigere disse gruppene" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Søk datasett" +#: 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/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Søk" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Datasett-ID ikke oppgitt, kan ikke sjekke autentisering." -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Gå til innhold" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "Ingen datakilde funnet for denne ressursen, kan ikke sjekke aut." -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Last mindre" +#: 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/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Last mer" +#: 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/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "Ingen aktiviteter i denne aktivitetsstrømmen" +#: 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/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administrasjon" +#: 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/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Systemadministratorer" +#: 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/templates/admin/base.html:9 -msgid "Config" -msgstr "Oppsett" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Har ikke tillatelse til å opprette brukere" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Søppel" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Fant ikke gruppen." -#: ckan/templates/admin/config.html:16 -#: 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/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Gyldig API-nøkkel kreves for å opprette en datakilde" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Tilbakestill" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Gyldig API-nøkkel påkrevet for å opprette en gruppe" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Oppdater oppsett" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Bruker %s har ikke tilgang til å legge til medlemmer" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "Oppsett-valg for CKAN" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Bruker %s har ikke tilgang til å redigere gruppen %s" -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/delete.py:40 #, 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.

" +msgid "User %s not authorized to delete resource %s" +msgstr "Bruker %s har ikke tilgang til å slette ressursen %s" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Bekreft tilbakestilling" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "Fant ikke ressursvisning, kan ikke sjekke autentisering." -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Administrer CKAN" +#: 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/templates/admin/index.html:20 +#: ckan/logic/auth/delete.py:82 #, 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

" +msgid "User %s not authorized to delete groups" +msgstr "Bruker %s har ikke tilgang til å slette grupper" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Slett" +#: 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/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "

Slettede datasett fjernes for alltid og ugjenkallelig.

" +#: 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/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN data-API" +#: 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/templates/ajax_snippets/api_info.html:23 -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" +#: 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/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" -"Les mer i dokumentasjonen for data-API i CKAN og DataStore.

" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Ikke tilgang" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Endpoints" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Bruker %s har ikke tilgang til å lese disse datakildene" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "Data-APIet kan nås via disse handlingene til CKANs action-API." - -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Opprett" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Oppdater/legg til" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Spørring" +#: 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/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Spørring (via SQL)" +#: 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Spør" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Bruker %s har ikke tilgang til å lese gruppe %s" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Eksempel på spørring (første fem resultater)" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Du må være innlogget for å få tilgang til kontrollpanelet ditt." -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Eksempel på spørring (resultater inneholder 'jones')" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Bruker %s har ikke tilgang til å redigere datakilden %s" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Eksempel på spørring (via SQL-statement)" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Bruker %s har ikke tilgang til å redigere ressursen %s" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Eksempel: Javascript" +#: ckan/logic/auth/update.py:100 +#, 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/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" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Bruker %s har ikke tilgang til å redigere organisasjonen %s" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Eksempel: Python" +#: ckan/logic/auth/update.py:145 +#, 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/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/logic/auth/update.py:162 +#, 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/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Klikk her for mer informasjon." +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Må være logget inn for å redigere bruker" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Last ned ressurs" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Bruker %s har ikke tilgang til å redigere bruker %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Din nettleser støtter ikke iframes." +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "Bruker {0} har ikke tilgang til å oppdatere bruker {1}" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Ingen forhåndsvisning tilgjengelig." +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Bruker %s har ikke tilgang til å endre status for versjonen" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Flere detaljer..." +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Bruker %s har ikke tilgang til å oppdatere tabellen task_status" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:240 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Ingen håndtering definert for datatype: %(type)s." +msgid "User %s not authorized to update term_translation table" +msgstr "Bruker %s har ikke tilgang til å oppdatere term_translation table" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Standard" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Gyldig API-nøkkel påkrevet for å redigere en datakilde" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Standard inndata" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Gyldig API-nøkkel påkrevet for å redigere en gruppe" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Medium" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Lisens ikke oppgitt" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Middels bredde inndata" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Full" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Full bredde inndata" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Stor" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Store inndata" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Navngivelse" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Legg til på begynnelsen" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Navngivelse-Del på samme vilkår" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Legg til på begynnelsen av inndata" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Tilpasset felt (tomt)" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Annet (åpen)" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Tilpasset felt" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Annet (public domain)" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Annet (navngivelse)" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Tekstområde" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Velg" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons ikke-kommersiell" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Aktivitetsstrøm" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Annet (ikke-kommersiell)" -#: 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/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Annet (ikke åpen)" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Legg til en gruppe" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "avhenger av %s" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Gruppeskjema" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "tilhører %s" -#: 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/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "avledes fra %s" -#: 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/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "har avledningen %s" -#: 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/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "lenker til %s" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "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/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "er lenket fra %s" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Følgere" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "er underordnet av %s" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Historikk" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "er overordnet til %s" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Legg til gruppe" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "har søsken %s" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Søk i grupper..." +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Ingen API-data kan lastes for denne ressursen" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Navn nedenfra og opp" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Kunne ikke laste informasjon om data-API" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Navn ovenfra og ned" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Skriv inn..." -#: 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/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Ingen treff" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Hva med å opprette en?" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "Tilbake til alle medlemmer" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Du har gjort endringer i skjemaet som ikke er lagret" -#: 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/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Bekreft handling" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Legg til medlem" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Er du sikker på at du vil utføre denne handlingen?" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Eksisterende bruker" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Bekreft" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Hvis du vil legge til en eksisterende bruker, søk etter brukernavnet " -"nedenfor." +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "eller" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Ikke følg" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Ny bruker" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Følg" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "Hvis du vil invitere en ny bruker, oppgi e-postadressen deres" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Lenke" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Rolle" +#: ckan/public/base/javascript/modules/image-upload.js:61 +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/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Er du sikker på at du vil slette dette medlemmet?" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Opplasting" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Slett" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Fjern" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Lagre" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Last opp en fil til datamaskinen din" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Hva er roller?" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

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

Medlem: " -"Kan legge til og fjerne datasett fra grupper.

" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Fil" -#: 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/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Lagre rekkefølge" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Oppdater gruppen" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Lagrer..." -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Opprett gruppe" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Last opp en fil" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevans" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "En feil oppsto" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Sist endret" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Klarer ikke å laste opp fil" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Populære" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Klarer ikke å autentisere opplasting" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Søk i datasett..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Ressurs lastet opp" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Datasett i gruppen: {group}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Finner ikke data for opplastet fil" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Nylig endringshistorikk" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +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/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Navn" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Opprett filter" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Min gruppe" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "Velg et felt" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "min-gruppe" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Rediger" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Beskrivelse" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Vis mer" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Litt informasjon om min gruppe..." +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Skjul" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Er du sikker på at du vil slette denne gruppen?" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Feil %(error_code)s" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Lagre gruppe" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Om {0}" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} datasett" -msgstr[1] "{num} datasett" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 datasett" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Se {name}" +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Laget med CKAN" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Fjern datasett fra denne gruppen" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Innstillinger for sysadmin" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Hva er grupper?" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "vis profil" -#: 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/header.html:26 +#, 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/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Sammenlign" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Kontrollpanel" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Slettet" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Rediger innstillinger" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "les mer" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Innstillinger" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Versjon" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Logg ut" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Tidsstempel" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Logg inn" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Forfatter" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registrer" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Loggmelding" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Datasett" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Velkommen" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Søk datasett" -#: 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/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Søk" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Gå til innhold" + +#: 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:29 +msgid "Trash" +msgstr "Søppel" + +#: ckan/templates/admin/config.html:16 +#: 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:16 +msgid "Reset" +msgstr "Tilbakestill" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Oppdater oppsett" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Velkommen til CKAN" +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "Oppsett-valg for CKAN" -#: ckan/templates/home/snippets/promoted.html:10 +#: ckan/templates/admin/config.html:33 +#, python-format 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 " +"

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 "" -"Dette er en fin innledning til CKAN eller om nettstedet. Snart har vi en bra" -" tekst klar her." +"

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/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Dette er en framhevet seksjon" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Bekreft tilbakestilling" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "F.eks. miljø" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrer CKAN" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Søk i data" +#: 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/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Populære stikkord" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Slett" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} statistikker" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "

Slettede datasett fjernes for alltid og ugjenkallelig.

" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "datasett" +#: 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/home/snippets/stats.html:11 -msgid "datasets" -msgstr "datasett" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Klikk her for mer informasjon." -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organisasjoner" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Last ned ressurs" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "grupper" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Ingen forhåndsvisning tilgjengelig." -#: ckan/templates/macros/form.html:126 +#: 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 "" -"You can use Markdown formatting here" -msgstr "" -"Du kan bruke Markdown-formatering her" +msgid "No handler defined for data type: %(type)s." +msgstr "Ingen håndtering definert for datatype: %(type)s." -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Dette feltet er obligatorisk" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Tilpasset" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standard inndata" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Skjemaet inneholder ugyldig informasjon:" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medium" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Obligatorisk felt" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Middels bredde inndata" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Full" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL for bilde" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Full bredde inndata" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Fjern opplasting" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Stor" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Organisasjonsskjema" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Store inndata" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Rediger datasett" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Legg til på begynnelsen" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Legg til datasett" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Legg til på begynnelsen av inndata" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "funnet for \"{query}\"" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Tilpasset felt (tomt)" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Beklager, ingen datasett funnet for \"{query}\"" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Tilpasset felt" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Gjør offentlig" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Gjør privat" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Tekstområde" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Utkast" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Velg" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Privat" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Aktivitetsstrøm" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Ingen datasett knyttet til denne organisasjonen" +#: 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/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/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Legg til en gruppe" -#: 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/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Gruppeskjema" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Legg til organisasjon" +#: 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/organization/index.html:20 -msgid "Search organizations..." -msgstr "Søk i organisasjoner..." +#: 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/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/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/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Brukernavn" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Administrer" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "E-post" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Rediger gruppen" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "Oppdater medlem" +#: ckan/templates/group/edit_base.html:23 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/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Historikk" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Opprett en organisasjon" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Legg til gruppe" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Oppdater organisasjon" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Søk i grupper..." -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Opprett organisasjon" +#: 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/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Legg til datasett" +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Hva med å opprette en?" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Datasett i organisasjon: {group}" +#: 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/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Hva er organisasjoner?" +#: 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/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/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Legg til medlem" -#: 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/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Eksisterende bruker" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Min organisasjon" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Hvis du vil legge til en eksisterende bruker, søk etter brukernavnet " +"nedenfor." -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "min-organisasjon" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "eller" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Litt informasjon om min organisasjon..." +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Ny bruker" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" -"Er du sikker på at du vil slette denne organisasjon? Dette vil slette alle " -"de offentlige og private datasettene som er knyttet til denne " -"organisasjonen." +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Hvis du vil invitere en ny bruker, oppgi e-postadressen deres" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Lagre organisasjon" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Rolle" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Vis {organization_name}" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Opprett datasett" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Slett" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Hva er datasett?" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Hva er roller?" -#: ckan/templates/package/base_form_page.html:25 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" 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/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}?" +"

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

Medlem: " +"Kan legge til og fjerne datasett fra grupper.

" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Vis datasett" +#: 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/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Rediger metadata" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Oppdater gruppen" -#: 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/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Opprett gruppe" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Forhåndsvisning" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Søk i datasett..." -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Oppdater" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Datasett i gruppen: {group}" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Knytt denne gruppen til dette datasettet" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Nylig endringshistorikk" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Legg til i gruppe" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Navn" -#: 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/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Min gruppe" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Oppdater datasettet" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "min-gruppe" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Legg data til datasettet" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Litt informasjon om min gruppe..." -#: 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/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Er du sikker på at du vil slette denne gruppen?" -#: 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/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Lagre gruppe" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Ny ressurs" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Se {name}" -#: 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/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Fjern datasett fra denne gruppen" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Hva er grupper?" + +#: ckan/templates/group/snippets/helper.html:8 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +" 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 "" -"Data Explorer-visninger kan være trege og upålitelige hvis ikke DataStore-" -"tillegget er installert. Les mer i dokumentasjonen for Data " -"Explorer. " +"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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Legg til" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Sammenlign" -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" -"Dette er en eldre versjon av dette datasettet, redigert %(timestamp)s. Det " -"kan være forskjellig fra den nåværende versjonen." +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Slettet" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Last opp til DataStore" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "les mer" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Feil ved opplasting:" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Versjon" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Feil:" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Tidsstempel" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Forfatter" + +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Loggmelding" + +#: 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/package/resource_data.html:48 -msgid "Status" -msgstr "Status" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Velkommen til CKAN" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Sist endret" +#: 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/package/resource_data.html:56 -msgid "Never" -msgstr "Aldri" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Dette er en framhevet seksjon" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Last opp logg" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "F.eks. miljø" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Detaljer" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Søk i data" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "Slutt på logg" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Populære stikkord" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Alle ressurser" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistikker" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Vis datasettets ressurser" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "datasett" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Rediger ressurs" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datasett" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisasjoner" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Visninger" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupper" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API Endpoint" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Logo for nettstedet" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Gå til ressurs" +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Du kan bruke Markdown-formatering her" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Nedlasting" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Dette feltet er obligatorisk" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Tilpasset" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Fra sammendrag av datasettet" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Skjemaet inneholder ugyldig informasjon:" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "Kilde: %(dataset)s" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Obligatorisk felt" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Det er ikke laget noen visninger for denne ressursen ennå." +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Ser du ikke de visningene du ventet deg?" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL for bilde" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "Dette er noen mulige grunner til at visningene mangler:" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Fjern opplasting" -#: ckan/templates/package/resource_read.html:123 -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/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Organisasjonsskjema" -#: ckan/templates/package/resource_read.html:124 -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/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Rediger datasett" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"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/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Legg til datasett" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Tilleggsinformasjon" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "funnet for \"{query}\"" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Felt" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Beklager, ingen datasett funnet for \"{query}\"" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Verdi" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Gjør offentlig" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "ukjent" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Gjør privat" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Opprettet" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Utkast" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Format" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Privat" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Lisens" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Ingen datasett knyttet til denne organisasjonen" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Ny visning" +#: 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/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Denne ressursen har ingen visninger" +#: 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/package/resources.html:8 -msgid "Add new resource" -msgstr "Legg til ny ressurs" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Legg til organisasjon" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

Dette datasettet har ingen data, hva" -" med å legge til noen?

" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Søk i organisasjoner..." -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: 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/package/search.html:53 -msgid "API Docs" -msgstr "API-dokumenter" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Brukernavn" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "full {format}-dump" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "E-post" -#: 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/organization/member_new.html:61 +msgid "Update Member" +msgstr "Oppdater medlem" -#: ckan/templates/package/search.html:60 -#, python-format +#: ckan/templates/organization/member_new.html:81 msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " +"

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

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/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Forhåndsvis visning" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} medlem" +msgstr[1] "{count} medlemmer" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Tilleggsinformasjon" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Opprett en organisasjon" -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Kilde" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Oppdater organisasjon" -#: 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/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Opprett organisasjon" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Versjon" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Legg til datasett" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Status" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Datasett i organisasjon: {group}" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Sist oppdatert" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Hva er organisasjoner?" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: 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/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" +#: 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/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." -msgstr "" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Min organisasjon" -#: 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/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "min-organisasjon" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Data-API" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Litt informasjon om min organisasjon..." -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Tittel" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Er du sikker på at du vil slette denne organisasjon? Dette vil slette alle " +"de offentlige og private datasettene som er knyttet til denne " +"organisasjonen." -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "f.eks. en beskrivende tittel" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Lagre organisasjon" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "f.eks. mitt-datasett" +#: 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/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/base.html:22 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Opprett datasett" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "f.eks. økonomi, helse, myndigheter" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Hva er datasett?" -#: ckan/templates/package/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base_form_page.html:25 msgid "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"Definisjoner av lisenser og tilleggsinformasjon kan bil funnet på opendefinition.org" +"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/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organisasjon" +#: 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/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Ingen organisasjon" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Synlighet" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Vis datasett" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Offentlig" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Rediger metadata" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Aktiv" +#: 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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Forhåndsvisning" -#: 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/edit_view.html:21 +msgid "Update" +msgstr "Oppdater" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Neste: Legg til data" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Knytt denne gruppen til dette datasettet" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Legg til i gruppe" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Oppdater datasettet" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Forfatters e-post" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Legg data til datasettet" -#: 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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Legg til ressurser" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Vedlikeholders e-post" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Oppdater ressurs" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Ny ressurs" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: 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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Legg til" + +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Dette er en eldre versjon av dette datasettet, redigert %(timestamp)s. Det " +"kan være forskjellig fra den nåværende versjonen." -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "f.eks. gullpriser i januar 2011" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Alle ressurser" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Noen nyttige notater om dataene" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Vis datasettets ressurser" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "f.eks. CSV, XML eller JSON" +#: 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/snippets/resource_form.html:40 -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/resource_edit_base.html:26 +msgid "Views" +msgstr "Visninger" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "f.eks. 2012-06-05" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API Endpoint" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Filstørrelse" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Gå til ressurs" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "f.eks. 1024" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Nedlasting" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME Type" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "f.eks. application/json" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Fra sammendrag av datasettet" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Er du sikker på at du vil slette denne ressursen?" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Kilde: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Tidligere" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "Det er ikke laget noen visninger for denne ressursen ennå." -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Lagre og legg til et nytt" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Ser du ikke de visningene du ventet deg?" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Avslutt" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Hva er en ressurs?" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -"En ressurs kan være en fil eller lenke til en fil som inneholder nyttige " -"data." +"Nettstedsadministratorene har kanskje ikke aktivert de nødvendige tilleggene" +" for visningen." -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Utforsk" +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_item.html:36 -msgid "More information" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" msgstr "Tilleggsinformasjon" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Inkluder (embed)" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Felt" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "Denne ressurvisninger er ikke tilgjengelig nå." +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Verdi" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Bygg inn ressursvisning" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "Data sist oppdatert" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" -"Du kan kopiere og lime inn koden for innebygging i et " -"nettpubliseringsverktøy (f.eks. en blogg) som tillater HTML." +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "ukjent" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Bredde" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "Metadata sist oppdatert" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Høyde" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Opprettet" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Kode" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Format" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Forhåndsvisning av ressurs" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Lisens" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Data og ressurser" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Ny visning" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Dette datasettet har ingen data" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Denne ressursen har ingen visninger" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: 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:26 #, python-format -msgid "Read dataset as of %s" -msgstr "Les datasett: %s" +msgid "" +"

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

" +msgstr "" +"

Dette datasettet har ingen data, hva" +" med å legge til noen?

" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Opprett et datasett »" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: 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/search.html:53 +msgid "API Docs" +msgstr "API-dokumenter" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "f.eks. Min visning" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "full {format}-dump" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "f.eks. Informasjon om visningen min" +#: 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/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Opprett filter" +#: 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/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Fjern filter" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Se visning" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filtere" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Forhåndsvis visning" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Hva er en visning?" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Tilleggsinformasjon" -#: 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/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Kilde" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Endringer" +#: 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/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Forskjeller mellom versjoner" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versjon" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Forskjell" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Status" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Ingen endringer" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Sist oppdatert" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Endringshistorikk" +#: 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/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Siste endringer" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Opprett ny organisasjon" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Angre sletting" +#: 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/revision/read.html:64 -msgid "Changes" -msgstr "Endringer" +#: 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/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Datasettets stikkord" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Tittel" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Enhet" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "f.eks. en beskrivende tittel" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Nytt aktivitetselement" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "f.eks. mitt-datasett" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Embed Data Viewer" +#: 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/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Inkluder denne visningen ved å kopiere dette til nettstedet ditt:" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "f.eks. økonomi, helse, myndigheter" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Velg bredde og høyde i piksler:" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Definisjoner av lisenser og tilleggsinformasjon kan bil funnet på opendefinition.org" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Bredde:" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisasjon" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Høyde:" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Ingen organisasjon" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Datapusher-status: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Synlighet" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Tilbakesporings-URL" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Offentlig" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Vis mer {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Aktiv" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Vis bare populære {facet_type}" +#: 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/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Det er ingen {facet_type} som passer med dette søket" +#: 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/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Hjem" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Neste: Legg til data" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Språk" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Velg" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "Lisens er ikke oppgitt" +#: 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/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "" -"Dette datasettet tilfredsstiller \"Open Definition\", en definisjon av åpen " -"kunnskap." +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Forfatters e-post" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Det er ingen beskrivelse av denne organisasjonen" +#: 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/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Dette datasettet mangler beskrivelse" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Vedlikeholders e-post" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Send inn" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Oppdater ressurs" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Sorter etter" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Data" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filterresultater" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/eksterne-data.csv" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Prøv et annet søk.

" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "f.eks. gullpriser i januar 2011" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Noen nyttige notater om dataene" + +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "f.eks. CSV, XML eller JSON" -#: 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/package/snippets/resource_form.html:40 +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/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "Fant ingen datasett for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "f.eks. 2012-06-05" -#: 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/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Filstørrelse" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Fant ikke noen datasett" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "f.eks. 1024" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME Type" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Fant ingen grupper for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "f.eks. application/json" -#: 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/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Er du sikker på at du vil slette denne ressursen?" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Fant ingen grupper" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Tidligere" -#: 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/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Lagre og legg til et nytt" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "Fant ingen organisasjoner for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Avslutt" -#: 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/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Hva er en ressurs?" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Fant ingen organisasjoner" +#: 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/snippets/social.html:5 -msgid "Social" -msgstr "Sosiale nettverk" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Utforsk" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Abonner" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Tilleggsinformasjon" -#: 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:82 -msgid "Email" -msgstr "E-post" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Inkluder (embed)" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "Denne ressurvisningen er ikke tilgjengelig nå." -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Endringer" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Bygg inn ressursvisning" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Søk i stikkord" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Du kan kopiere og lime inn koden for innebygging i et " +"nettpubliseringsverktøy (f.eks. en blogg) som tillater HTML." -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Nyhetsstrøm" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Bredde" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Mine datasett" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Høyde" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Mine organisasjoner" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Kode" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Mine grupper" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Forhåndsvisning av ressurs" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Aktiviteter fra elementer jeg følger" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Data og ressurser" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Du har ikke opprettet noen datasett." +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Dette datasettet har ingen data" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Opprette nå?" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Les datasett: %s" -#: 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/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Opprett et datasett »" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Du er ikke medlem av noen organisasjoner." +#: 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/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/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "f.eks. Min visning" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Kontoinformasjon" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "f.eks. Informasjon om visningen min" -#: 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/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Fjern filter" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Endre detaljer" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Hva er en visning?" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Fullt navn" +#: 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/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "f.eks. Kari Nordmann" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Endringer" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "f.eks. kari@example.com" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Forskjeller mellom versjoner" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Litt informasjon om deg selv." +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Forskjell" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Abonner på e-postvarsling" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Ingen endringer" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Endre passord" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Endringshistorikk" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Siste endringer" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Passord" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Angre sletting" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Bekreft passord" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Endringer" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Er du sikker på at du vil slette denne brukeren?" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Datasettets stikkord" -#: ckan/templates/user/edit_user_form.html:51 -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/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Enhet" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Lag en ny API-nøkkel" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Nytt aktivitetselement" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Oppdater profil" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Embed Data Viewer" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Alle brukere" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Inkluder denne visningen ved å kopiere dette til nettstedet ditt:" -#: 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/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Velg bredde og høyde i piksler:" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Trenger du en konto?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Bredde:" -#: 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/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Høyde:" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Opprett konto" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher-status: {status}." -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Har du glemt passordet ditt?" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Tilbakesporings-URL" -#: 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/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Vis flere {facet_type}" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Glemt passordet?" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Vis bare populære {facet_type}" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Logget ut" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Det er ingen {facet_type} som passer med dette søket" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Du er logget ut." +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Hjem" -#: 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/snippets/language_selector.html:3 +msgid "Language" +msgstr "Språk" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Logg ut" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Velg" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Husk meg" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Lisens er ikke oppgitt" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Du er logget inn allerede" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "" +"Dette datasettet tilfredsstiller \"Open Definition\", en definisjon av åpen " +"kunnskap." -#: ckan/templates/user/logout_first.html:24 -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/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Det er ingen beskrivelse av denne organisasjonen" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Logg ut nå" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Dette datasettet mangler beskrivelse" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Registrering" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Send inn" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Opprette brukerkonto" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Sorter etter" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Hvorfor registrere deg?" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filterresultater" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "Opprett datasett, grupper og andre interessante ting" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Prøv et annet søk.

" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "brukernavn" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" +"

Det oppstod en feil under søkinga. " +"Prøv igjen.

" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Fullt navn" +#: 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/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Opprett konto" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Fant ingen datasett for \"{query}\"" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Tilbakestill passordet ditt" +#: 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/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Tilbakestill passord" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Fant ikke noen datasett" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Oppdater passord" +#: 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/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Hvordan virker dette?" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Fant ingen grupper for \"{query}\"" -#: ckan/templates/user/perform_reset.html:40 -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/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/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Brukeren har ikke opprettet noen datasett" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Fant ingen grupper" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Du har ikke skrevet noen biografi." +#: 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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Denne brukeren har ingen biografi." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Fant ingen organisasjoner" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Det betyr at du er den eneste som kan se dette" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Sosiale nettverk" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Medlem siden" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Abonner" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API-nøkkel" +#: 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:82 +msgid "Email" +msgstr "E-post" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Tilbakestill ditt passord" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Tilbakestilling av passord" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Endringer" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Be om tilbakestilling" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Søk i stikkord" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Oppgi brukernavnet ditt, så sender vi deg en e-post med lenke som du kan " -"bruke for å velge nytt passord." +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Nyhetsstrøm" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Aktivitet fra:" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Mine datasett" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Søk i lista..." +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mine organisasjoner" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Du følger ikke noe" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mine grupper" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Ingen følgere" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktiviteter fra elementer jeg følger" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Søk brukere" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Du har ikke opprettet noen datasett." -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Fullfør" +#: 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:16 +msgid "Create one now?" +msgstr "Opprette nå?" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Venter" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Du er ikke medlem av noen grupper." -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Sender inn" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Du er ikke medlem av noen organisasjoner." -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Ikke lastet opp ennå" +#: 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:" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Fant ikke DataStore-ressurs" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Kontoinformasjon" -#: ckanext/datastore/db.py:663 +#: ckan/templates/user/edit.html:19 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -"Ugyldige data (f.eks. et tall utenfor tillatt verdi eller tekst i et felt " -"for tall)." - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -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/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Datasett per side" +"I profilen kan du fortelle andre CKAN-brukere om hvem du er og hva du gjør." -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Testkonfigurasjon" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Endre detaljer" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Egendefinert felt stigende" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Fullt navn" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Egendefinert felt synkende" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "f.eks. Kari Nordmann" -#: 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" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "f.eks. kari@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "egendefinert tekst" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Litt informasjon om deg selv." -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Landkode" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Abonner på e-postvarsling" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "egendefinert ressurstekst" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Endre passord" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "Passord for systemadministrator" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Denne gruppen har ingen beskrivelse" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Passord" -#: ckanext/example_theme/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/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Bekreft passord" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "URL til bilde" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Er du sikker på at du vil slette denne brukeren?" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -"f.eks. http://example.com/image.jpg (hvis denne er tom brukes URL til " -"ressursen)" - -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Data Explorer" +"Er du sikker på at du vil lage ny API-nøkkel? (Den vil erstatte den gamle.)" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Tabell" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Lag en ny API-nøkkel" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Graf" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Oppdater profil" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Kart" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Alle brukere" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -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 "Innlogging" -#: 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" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Trenger du en konto?" -#: 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" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Opprett brukerkonto, det tar bare et øyeblikk." -#: 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" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Opprett konto" -#: 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" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Har du glemt passordet ditt?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Type graf" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Gruppe (akse 1)" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Glemt passordet?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Serie (akse 2)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Logget ut" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Felttype" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Du er logget ut." -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Breddegrad" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Du er allerede logget inn som {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Lengdegrad-felt" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Logg ut" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "GeoJSON-felt" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Husk meg" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Automatisk zoom til funksjoner" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Du er logget inn allerede" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Markører for klynger" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Totalt antall datasett" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Logg ut nå" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Dato" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registrering" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Totalt antall datasett" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Opprette brukerkonto" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Datasettversjoner per uke" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Hvorfor registrere deg?" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Alle datasettversjoner" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Opprett datasett, grupper og andre interessante ting" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Nye datasett" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "brukernavn" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Best vurderte datasett" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Fullt navn" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Gjennomsnittlig vurdering" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Opprett konto" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Antall vurderinger" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Tilbakestill passordet ditt" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Ingen vurderinger" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Tilbakestill passord" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Oftest redigerte datasett" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Oppdater passord" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Antall endringer" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Hvordan virker dette?" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Ingen redigerte datasett" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Oppgi nytt passord, så oppdaterer vi informasjonen for kontoen din" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Største grupper" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Brukeren har ikke opprettet noen datasett" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Antall datasett" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Du har ikke skrevet noen biografi." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Ingen grupper" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Denne brukeren har ingen biografi." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Mest brukte stikkord" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Stikkordnavn" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Det betyr at du er den eneste som kan se dette" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Antall datasett" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Medlem siden" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API-nøkkel" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Statistikkmeny" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Tilbakestill ditt passord" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Totalt antall datasett" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Tilbakestilling av passord" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Tekst" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Be om tilbakestilling" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Oppgi brukernavnet ditt, så sender vi deg en e-post med lenke som du kan " +"bruke for å velge nytt passord." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Nettside" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Aktivitet fra:" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "Nettside-adresse" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Søk i lista..." -#: 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/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" diff --git a/ckan/i18n/pl/LC_MESSAGES/ckan.mo b/ckan/i18n/pl/LC_MESSAGES/ckan.mo index 36b80a8a614..bfab2c6bb23 100644 Binary files a/ckan/i18n/pl/LC_MESSAGES/ckan.mo and b/ckan/i18n/pl/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/pl/LC_MESSAGES/ckan.po b/ckan/i18n/pl/LC_MESSAGES/ckan.po index cc70a585b8d..66bb25d3b21 100644 --- a/ckan/i18n/pl/LC_MESSAGES/ckan.po +++ b/ckan/i18n/pl/LC_MESSAGES/ckan.po @@ -1,38 +1,674 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.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" +"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" -#: ckan/authz.py:179 +#: 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:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Błąd" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Zasób nie został znaleziony" + +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Brak autoryzacji, aby zobaczyć tę stronę" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Błąd:" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Ostatnia modyfikacja" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/controller.py:46 +#, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" + +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: 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:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Opis" + +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Zapisz" + +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Ładowanie..." + +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "" + +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +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:28 +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:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "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:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "" + +#: 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 "" + +#: 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:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "" + +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Zasoby" + +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +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:101 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +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/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Liczba zbiorów danych" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Najlepiej ocenione zbiory danych" + +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Średnia ocena" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Liczba ocen" + +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Brak ocen" + +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Najczęściej edytowane zbiory danych" + +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Zbiór danych" + +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Liczba edycji" + +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Największe grupy" + +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Grupa" + +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Liczba zbiorów danych" + +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Najczęstsze tagi" + +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Użytkownik" + +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "" + +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "" + +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +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:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckan/authz.py:182 #, python-format msgid "Authorization function not found: %s" msgstr "Funkcja autoryzjacji nie została znaleziona: %s" -#: ckan/authz.py:191 ckan/templates/header.html:14 +#: ckan/authz.py:194 ckan/templates/header.html:14 msgid "Admin" msgstr "" -#: ckan/authz.py:195 +#: ckan/authz.py:198 msgid "Editor" msgstr "Edytor" -#: ckan/authz.py:199 +#: ckan/authz.py:202 msgid "Member" msgstr "Członek" @@ -56,7 +692,7 @@ msgstr "" msgid "Site Tag Logo" msgstr "" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 #: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 @@ -65,31 +701,31 @@ msgstr "" msgid "About" msgstr "O serwisie" -#: ckan/controllers/admin.py:54 +#: ckan/controllers/admin.py:55 msgid "About page text" msgstr "Tekst na stronie \"O nas\"" -#: ckan/controllers/admin.py:55 +#: ckan/controllers/admin.py:56 msgid "Intro Text" msgstr "" -#: ckan/controllers/admin.py:55 +#: ckan/controllers/admin.py:56 msgid "Text on home page" msgstr "Tekst na stronie głównej" -#: ckan/controllers/admin.py:56 +#: ckan/controllers/admin.py:57 msgid "Custom CSS" msgstr "Własny CSS" -#: ckan/controllers/admin.py:56 +#: ckan/controllers/admin.py:57 msgid "Customisable css inserted into the page header" msgstr "" -#: ckan/controllers/admin.py:57 +#: ckan/controllers/admin.py:58 msgid "Homepage" msgstr "Strona główna" -#: ckan/controllers/admin.py:160 +#: ckan/controllers/admin.py:161 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " @@ -98,156 +734,147 @@ 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 +#: ckan/controllers/admin.py:183 #, python-format msgid "Problem purging revision %s: %s" msgstr "Wystąpił problem przy usuwaniu wersji %s: %s" -#: ckan/controllers/admin.py:184 +#: ckan/controllers/admin.py:185 msgid "Purge complete" msgstr "Usuwanie zakończone" -#: ckan/controllers/admin.py:186 +#: ckan/controllers/admin.py:187 msgid "Action not implemented." msgstr "Akacja nie jest zaimplementowana." -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Brak autoryzacji, aby zobaczyć tę stronę" - -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 msgid "Access denied" msgstr "Odmowa dostępu" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 #: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 msgid "Not found" msgstr "Nie znaleziono" -#: ckan/controllers/api.py:134 +#: ckan/controllers/api.py:136 msgid "Bad request" msgstr "Nieprawidłowe żądanie" -#: ckan/controllers/api.py:168 +#: ckan/controllers/api.py:170 #, python-format msgid "Action name not known: %s" msgstr "Nieznana nazwa akcji:%s" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 #, python-format msgid "JSON Error: %s" msgstr "Błąd JSON: %s" -#: ckan/controllers/api.py:195 +#: ckan/controllers/api.py:197 #, python-format msgid "Bad request data: %s" msgstr "Błędne żądanie: %s" -#: ckan/controllers/api.py:298 +#: ckan/controllers/api.py:300 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Nie można wyświetlić obiektów typu: %s" -#: ckan/controllers/api.py:327 +#: ckan/controllers/api.py:329 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Nie można wyświetlić obiektu typu: %s" -#: ckan/controllers/api.py:365 +#: ckan/controllers/api.py:367 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Nie można utworzyć obiektu typu: %s %s" -#: ckan/controllers/api.py:398 +#: ckan/controllers/api.py:400 msgid "Unable to add package to search index" msgstr "Nie można dodać pakiet do indeksu wyszukiwania" -#: ckan/controllers/api.py:428 +#: ckan/controllers/api.py:430 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Nie można zaktualizować obiektu typu: %s" -#: ckan/controllers/api.py:452 +#: ckan/controllers/api.py:454 msgid "Unable to update search index" msgstr "Nie można zaktualizować indeks wyszukiwania" -#: ckan/controllers/api.py:475 +#: ckan/controllers/api.py:477 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Nie można usunąć obiektu typu: %s %s" -#: ckan/controllers/api.py:498 +#: ckan/controllers/api.py:500 msgid "No revision specified" msgstr "Nie określono wersji" -#: ckan/controllers/api.py:502 +#: ckan/controllers/api.py:504 #, python-format msgid "There is no revision with id: %s" msgstr "Brak wersji o identyfikatorze: %s" -#: ckan/controllers/api.py:512 +#: ckan/controllers/api.py:514 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/controllers/api.py:524 +#: ckan/controllers/api.py:526 #, python-format msgid "Could not read parameters: %r" msgstr "Nie można odczytać parametrów: %r" -#: ckan/controllers/api.py:585 +#: ckan/controllers/api.py:587 #, python-format msgid "Bad search option: %s" msgstr "Nieprawidłowa opcja wyszukiwania: %s" -#: ckan/controllers/api.py:588 +#: ckan/controllers/api.py:590 #, python-format msgid "Unknown register: %s" msgstr "Nieznany rejestr: %s" -#: ckan/controllers/api.py:597 +#: ckan/controllers/api.py:599 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:607 +#: ckan/controllers/api.py:609 msgid "Request params must be in form of a json encoded dictionary." msgstr "" "Parametry żądania muszą mieć postać tablicy asocjacyjnej w formacie json." -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 msgid "Group not found" msgstr "Grupa nie została znaleziona" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 msgid "Incorrect group type" msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 #: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 @@ -259,22 +886,23 @@ msgstr "" msgid "Organizations" msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 #: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 #: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupy" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 #: 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 @@ -282,280 +910,270 @@ msgstr "Grupy" msgid "Tags" msgstr "Tagi" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 msgid "Formats" msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:448 +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Użytkownik %r nie posiada autoryzacji by edytować %s" + +#: ckan/controllers/group.py:442 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:466 +#: ckan/controllers/group.py:460 msgid "Unauthorized to create a group" msgstr "Brak autoryzacji by utworzyć grupę" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Użytkownik %r nie posiada autoryzacji by edytować %s" - -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 #: ckan/controllers/user.py:249 ckan/controllers/user.py:379 #: ckan/controllers/user.py:548 msgid "Integrity Error" msgstr "Błąd integralności" -#: ckan/controllers/group.py:600 +#: ckan/controllers/group.py:594 #, 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:620 ckan/controllers/group.py:635 +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 #, python-format msgid "Unauthorized to delete group %s" msgstr "" -#: ckan/controllers/group.py:626 +#: ckan/controllers/group.py:620 msgid "Organization has been deleted." msgstr "" -#: ckan/controllers/group.py:628 +#: ckan/controllers/group.py:622 msgid "Group has been deleted." msgstr "" -#: ckan/controllers/group.py:630 +#: ckan/controllers/group.py:624 #, python-format msgid "%s has been deleted." msgstr "" -#: ckan/controllers/group.py:704 +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:705 #, python-format msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 #, python-format msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/controllers/group.py:730 +#: ckan/controllers/group.py:731 msgid "Group member has been deleted." msgstr "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 msgid "Select two revisions before doing the comparison." msgstr "Zaznacz dwie wersje aby móc dokonać porównania." -#: ckan/controllers/group.py:778 +#: ckan/controllers/group.py:779 msgid "CKAN Group Revision History" msgstr "Histora wersji grupy CKAN" -#: ckan/controllers/group.py:782 +#: ckan/controllers/group.py:783 msgid "Recent changes to CKAN Group: " msgstr "Ostanie zmiany w grupie CKAN:" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 msgid "Log message: " msgstr "Wiadomość w logu:" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 #: ckan/controllers/user.py:715 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 #: ckan/controllers/user.py:735 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 #, python-format msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/controllers/home.py:36 +#: 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:81 +#: ckan/controllers/home.py:73 #, 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:83 +#: ckan/controllers/home.py:75 #, 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:290 +#: ckan/controllers/package.py:288 msgid "Invalid search query: {error_message}" msgstr "" -#: ckan/controllers/package.py:307 +#: ckan/controllers/package.py:304 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 msgid "Dataset not found" msgstr "Zbiór danych nie został znaleziony" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 #, python-format msgid "Invalid revision format: %r" msgstr "Nieprawidłowy format wersji: %r" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 #, python-format msgid "Unauthorized to read package %s" msgstr "Brak autoryzacji by wyświetlić pakiet %s" -#: ckan/controllers/package.py:448 +#: ckan/controllers/package.py:444 msgid "CKAN Dataset Revision History" msgstr "Historia zmian zbioru danych CKAN." -#: ckan/controllers/package.py:451 +#: ckan/controllers/package.py:447 msgid "Recent changes to CKAN Dataset: " msgstr "Ostanie zmiany w zbiorze danych CKAN: " -#: ckan/controllers/package.py:507 +#: ckan/controllers/package.py:503 msgid "Unauthorized to create a package" msgstr "Brak autoryzacji by utowrzyć pakiet" -#: ckan/controllers/package.py:577 +#: ckan/controllers/package.py:573 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Zasób nie został znaleziony" - -#: ckan/controllers/package.py:654 +#: ckan/controllers/package.py:644 msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:660 +#: ckan/controllers/package.py:650 msgid "You must add at least one data resource" msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Błąd" - -#: ckan/controllers/package.py:691 +#: ckan/controllers/package.py:681 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:727 +#: ckan/controllers/package.py:714 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:941 +#: ckan/controllers/package.py:928 msgid "Unable to add package to search index." msgstr "Nie można dodać pakiet do indeksu wyszukiwania." -#: ckan/controllers/package.py:989 +#: ckan/controllers/package.py:976 msgid "Unable to update search index." msgstr "Nie można uaktualnić indeksu wyszukiwania." -#: ckan/controllers/package.py:1026 +#: ckan/controllers/package.py:1013 msgid "Dataset has been deleted." msgstr "" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1041 msgid "Resource has been deleted." msgstr "" -#: ckan/controllers/package.py:1060 +#: ckan/controllers/package.py:1052 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1158 +#: ckan/controllers/package.py:1150 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1167 +#: ckan/controllers/package.py:1159 msgid "No download is available" msgstr "" -#: ckan/controllers/package.py:1305 +#: ckan/controllers/package.py:1296 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1413 +#: ckan/controllers/package.py:1404 #, python-format msgid "Unauthorized to read resource %s" msgstr "Brak autoryzacji do odczytania zasobu %s" -#: ckan/controllers/package.py:1477 +#: ckan/controllers/package.py:1468 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1495 +#: ckan/controllers/package.py:1486 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1501 +#: ckan/controllers/package.py:1492 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1557 +#: ckan/controllers/package.py:1548 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1566 +#: ckan/controllers/package.py:1557 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1595 +#: ckan/controllers/package.py:1586 msgid "No preview has been defined." msgstr "" @@ -584,13 +1202,6 @@ msgstr "Inny" msgid "Tag not found" msgstr "Tag nie został znaleziony" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Nie znaleziono użytkownika" - #: ckan/controllers/user.py:161 msgid "Unauthorized to register as a user." msgstr "" @@ -613,6 +1224,13 @@ msgstr "Nie określono użytkownika" msgid "Unauthorized to edit user %s" msgstr "Brak autoryzacji by zmodyfikować użytkownika %s" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Nie znaleziono użytkownika" + #: ckan/controllers/user.py:234 ckan/controllers/user.py:367 msgid "Profile updated" msgstr "Profil zaktualizowany" @@ -814,7 +1432,7 @@ msgstr "" msgid "{actor} started following {group}" msgstr "" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -877,11 +1495,11 @@ msgstr "" msgid "December" msgstr "" -#: ckan/lib/formatters.py:116 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "" -#: ckan/lib/formatters.py:118 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" @@ -889,7 +1507,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ckan/lib/formatters.py:121 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" @@ -897,7 +1515,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ckan/lib/formatters.py:127 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" @@ -905,7 +1523,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ckan/lib/formatters.py:130 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" @@ -913,7 +1531,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ckan/lib/formatters.py:132 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" @@ -921,95 +1539,95 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ckan/lib/formatters.py:148 +#: ckan/lib/formatters.py:146 msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:153 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "" -#: ckan/lib/formatters.py:169 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "" -#: ckan/lib/formatters.py:171 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "" -#: ckan/lib/formatters.py:173 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "" -#: ckan/lib/formatters.py:175 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "" -#: ckan/lib/formatters.py:177 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "" -#: ckan/lib/formatters.py:189 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:191 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:193 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:195 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:197 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:199 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:201 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:203 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:205 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:1018 +#: ckan/lib/helpers.py:1048 msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 msgid "Unknown" msgstr "" -#: ckan/lib/helpers.py:1330 +#: ckan/lib/helpers.py:1361 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1370 +#: ckan/lib/helpers.py:1401 msgid "Created new dataset." msgstr "" -#: ckan/lib/helpers.py:1372 +#: ckan/lib/helpers.py:1403 msgid "Edited resources." msgstr "" -#: ckan/lib/helpers.py:1374 +#: ckan/lib/helpers.py:1405 msgid "Edited settings." msgstr "" -#: ckan/lib/helpers.py:1616 +#: ckan/lib/helpers.py:1648 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" @@ -1017,7 +1635,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ckan/lib/helpers.py:1618 +#: ckan/lib/helpers.py:1650 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1051,7 +1669,8 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:32 #: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 #: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 msgid "Missing value" msgstr "Brakująca wartość" @@ -1064,21 +1683,15 @@ msgstr "" msgid "Please enter an integer value" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Zasoby" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 msgid "Package resource(s) invalid" msgstr "Niepoprawne zasoby pakietu" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 #: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 msgid "Extras" msgstr "Dodatkowe informacje" @@ -1088,174 +1701,155 @@ msgstr "Dodatkowe informacje" msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Użytkownik" - -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Zbiór danych" - -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Grupa" - #: ckan/logic/converters.py:180 msgid "Could not parse as valid JSON" msgstr "" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 msgid "An organization must be provided" msgstr "" -#: ckan/logic/validators.py:46 +#: ckan/logic/validators.py:47 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:51 +#: ckan/logic/validators.py:52 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:91 +#: ckan/logic/validators.py:92 msgid "Invalid integer" msgstr "Niepoprawna liczba całkowita" -#: ckan/logic/validators.py:96 +#: ckan/logic/validators.py:97 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:102 +#: ckan/logic/validators.py:103 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:129 +#: ckan/logic/validators.py:130 msgid "Date format incorrect" msgstr "Nieprawidłowy format danych" -#: ckan/logic/validators.py:138 +#: ckan/logic/validators.py:139 msgid "No links are allowed in the log_message." msgstr "Nie można umieszczać linków w treści logu." -#: ckan/logic/validators.py:158 +#: ckan/logic/validators.py:159 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:199 +#: ckan/logic/validators.py:200 msgid "Resource" msgstr "Zasób" -#: ckan/logic/validators.py:253 +#: ckan/logic/validators.py:254 msgid "That group name or ID does not exist." msgstr "" -#: ckan/logic/validators.py:267 +#: ckan/logic/validators.py:268 msgid "Activity type" msgstr "Typ aktywności" -#: ckan/logic/validators.py:330 +#: ckan/logic/validators.py:331 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:334 +#: ckan/logic/validators.py:335 msgid "That name cannot be used" msgstr "" -#: ckan/logic/validators.py:337 +#: ckan/logic/validators.py:338 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, 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:342 +#: ckan/logic/validators.py:343 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:360 +#: ckan/logic/validators.py:361 msgid "That URL is already in use." msgstr "Ten URL jest już używany." -#: ckan/logic/validators.py:365 +#: ckan/logic/validators.py:366 #, 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:369 +#: ckan/logic/validators.py:370 #, 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:375 +#: ckan/logic/validators.py:376 #, 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:393 +#: ckan/logic/validators.py:394 #, python-format msgid "Duplicate key \"%s\"" msgstr "Zduplikowany klucz \"%s\"" -#: ckan/logic/validators.py:409 +#: ckan/logic/validators.py:410 msgid "Group name already exists in database" msgstr "Grupa o tej nazwie już się występuje w bazie danych" -#: ckan/logic/validators.py:415 +#: ckan/logic/validators.py:416 #, 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:419 +#: ckan/logic/validators.py:420 #, 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:427 +#: ckan/logic/validators.py:428 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Tag \"%s\" musi zawierać znaki alfanumeryczne oraz symbole:-_." -#: ckan/logic/validators.py:435 +#: ckan/logic/validators.py:436 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Tag \"%s\" nie może zawierać wielkich liter" -#: ckan/logic/validators.py:544 +#: ckan/logic/validators.py:545 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:560 +#: ckan/logic/validators.py:561 msgid "That login name is not available." msgstr "Ten login nie jest dostępny." -#: ckan/logic/validators.py:569 +#: ckan/logic/validators.py:570 msgid "Please enter both passwords" msgstr "Proszę wprowadzić oba hasła" -#: ckan/logic/validators.py:577 +#: ckan/logic/validators.py:578 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:581 +#: ckan/logic/validators.py:582 msgid "Your password must be 4 characters or longer" msgstr "Hasło musi zawierać co najmniej 4 znaki" -#: ckan/logic/validators.py:589 +#: ckan/logic/validators.py:590 msgid "The passwords you entered do not match" msgstr "Wprowadzone hasła nie pokrywają się" -#: ckan/logic/validators.py:610 +#: ckan/logic/validators.py:611 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." @@ -1263,224 +1857,228 @@ 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:619 +#: ckan/logic/validators.py:620 #, python-format msgid "Name must be at least %s characters long" msgstr "Nazwa musi posiadać co najmniej %s znaków" -#: ckan/logic/validators.py:627 +#: ckan/logic/validators.py:628 msgid "That vocabulary name is already in use." msgstr "" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:634 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/logic/validators.py:642 +#: ckan/logic/validators.py:643 msgid "Tag vocabulary was not found." msgstr "" -#: ckan/logic/validators.py:655 +#: ckan/logic/validators.py:656 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:661 +#: ckan/logic/validators.py:662 msgid "No tag name" msgstr "" -#: ckan/logic/validators.py:674 +#: ckan/logic/validators.py:675 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:697 +#: ckan/logic/validators.py:698 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:712 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:740 +#: ckan/logic/validators.py:741 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:746 +#: ckan/logic/validators.py:747 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:749 +#: ckan/logic/validators.py:750 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:781 +#: ckan/logic/validators.py:782 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:791 +#: ckan/logic/validators.py:792 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:802 +#: ckan/logic/validators.py:803 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:806 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:820 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Stwórz obiekt %s" -#: ckan/logic/action/create.py:532 +#: ckan/logic/action/create.py:544 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Stwórz relację pomiędzy pakietami: %s %s %s" -#: ckan/logic/action/create.py:573 +#: ckan/logic/action/create.py:585 #, python-format msgid "REST API: Create member object %s" msgstr "" -#: ckan/logic/action/create.py:792 +#: ckan/logic/action/create.py:804 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:881 +#: ckan/logic/action/create.py:893 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:884 +#: ckan/logic/action/create.py:896 msgid "You must supply a rating (parameter \"rating\")." msgstr "Musisz wprowadzić ocenę (parametr \"ocena\")." -#: ckan/logic/action/create.py:889 +#: ckan/logic/action/create.py:901 msgid "Rating must be an integer value." msgstr "Ocena musi być liczbą całkowitą." -#: ckan/logic/action/create.py:893 +#: ckan/logic/action/create.py:905 #, python-format msgid "Rating must be between %i and %i." msgstr "Ocena musi być między %i i %i." -#: ckan/logic/action/create.py:1052 +#: ckan/logic/action/create.py:1064 msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1285 +#: ckan/logic/action/create.py:1297 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1390 +#: ckan/logic/action/create.py:1402 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:45 +#: ckan/logic/action/delete.py:54 msgid " Delete User: {0}" msgstr "" -#: ckan/logic/action/delete.py:86 +#: ckan/logic/action/delete.py:92 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Usuń pakiet %s" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Usuń %s" -#: ckan/logic/action/delete.py:312 +#: ckan/logic/action/delete.py:318 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 msgid "id not in data" msgstr "" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:572 +#: ckan/logic/action/delete.py:578 #, python-format msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:613 +#: ckan/logic/action/delete.py:619 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 msgid "Resource was not found." msgstr "Zasób nie został znaleziony." -#: ckan/logic/action/get.py:2049 +#: ckan/logic/action/get.py:2087 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:2058 +#: ckan/logic/action/get.py:2096 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:2090 +#: ckan/logic/action/get.py:2128 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 msgid "Package was not found." msgstr "Pakiet nie został znaleziony." -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Zaktualizuj obiekt %s" -#: ckan/logic/action/update.py:380 +#: ckan/logic/action/update.py:401 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Zaktualizuj relację między pakietami: %s %s %s" -#: ckan/logic/action/update.py:740 +#: ckan/logic/action/update.py:761 msgid "TaskStatus was not found." msgstr "Nie znaleziono stanu zadania." -#: ckan/logic/action/update.py:1038 +#: ckan/logic/action/update.py:1059 msgid "Organization was not found." msgstr "" @@ -1504,7 +2102,7 @@ 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:143 ckan/logic/auth/update.py:63 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" "Nie znaleziono pakietu dla tego zasobu, nie można sprawdzić autoryzacji." @@ -1537,24 +2135,24 @@ msgstr "" msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:191 +#: ckan/logic/auth/create.py:189 msgid "Group was not found." msgstr "Grupa nie została znaleziona." -#: ckan/logic/auth/create.py:211 +#: ckan/logic/auth/create.py:209 msgid "Valid API key needed to create a package" msgstr "Poprawny klucz API wymagany do utworzenia pakietu." -#: ckan/logic/auth/create.py:219 +#: ckan/logic/auth/create.py:217 msgid "Valid API key needed to create a group" msgstr "Poprawny klucz API wymagany do utworzenia grupy." -#: ckan/logic/auth/create.py:239 +#: ckan/logic/auth/create.py:237 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Użtkownik %s nie jest upoważniony do edycji grupy %s" @@ -1598,31 +2196,31 @@ msgstr "" msgid "User %s not authorized to delete task_status" msgstr "Użytkownik %s nie jest upoważniony by usunąć task_status" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 msgid "Not authorized" msgstr "" -#: ckan/logic/auth/get.py:108 +#: ckan/logic/auth/get.py:109 #, 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:130 +#: 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:149 +#: 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:176 +#: ckan/logic/auth/get.py:170 #, python-format msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:258 +#: ckan/logic/auth/get.py:252 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1656,39 +2254,39 @@ msgstr "Użytkownik %s nie jest upoważniony do zmiany stanu grupy %s" 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:189 +#: ckan/logic/auth/update.py:190 msgid "Have to be logged in to edit user" msgstr "" -#: ckan/logic/auth/update.py:197 +#: ckan/logic/auth/update.py:198 #, 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:208 +#: ckan/logic/auth/update.py:209 msgid "User {0} not authorized to update user {1}" msgstr "" -#: ckan/logic/auth/update.py:216 +#: ckan/logic/auth/update.py:217 #, 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:225 +#: ckan/logic/auth/update.py:226 #, 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:239 +#: ckan/logic/auth/update.py:240 #, python-format msgid "User %s not authorized to update term_translation table" msgstr "" -#: ckan/logic/auth/update.py:261 +#: ckan/logic/auth/update.py:262 msgid "Valid API key needed to edit a package" msgstr "Poprawny klucz API wymagany do edycji pakietu" -#: ckan/logic/auth/update.py:271 +#: ckan/logic/auth/update.py:272 msgid "Valid API key needed to edit a group" msgstr "Poprawny klucz API wymagany do edycji grupy" @@ -1797,57 +2395,52 @@ msgstr "jest rodzicem %s" msgid "has sibling %s" msgstr "ma rodzeństwo %s" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Ładowanie..." - -#: ckan/public/base/javascript/modules/api-info.js:20 +#: ckan/public/base/javascript/modules/api-info.js:96 msgid "There is no API data to load for this resource" msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:21 +#: ckan/public/base/javascript/modules/api-info.js:124 msgid "Failed to load data API information" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:34 +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, python-format msgid "Input is too short, must be at least one character" -msgstr "" +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 msgid "There are unsaved modifications to this form" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:7 +#: ckan/public/base/javascript/modules/confirm-action.js:97 msgid "Please Confirm Action" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:8 +#: ckan/public/base/javascript/modules/confirm-action.js:100 msgid "Are you sure you want to perform this action?" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:9 +#: ckan/public/base/javascript/modules/confirm-action.js:102 #: ckan/templates/user/new_user_form.html:9 #: ckan/templates/user/perform_reset.html:21 msgid "Confirm" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 #: ckan/templates/admin/confirm_reset.html:9 #: ckan/templates/group/confirm_delete.html:14 #: ckan/templates/group/confirm_delete_member.html:15 @@ -1858,39 +2451,42 @@ msgstr "" msgid "Cancel" msgstr "Anuluj" -#: ckan/public/base/javascript/modules/follow.js:23 +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:72 #: ckan/templates/snippets/follow_button.html:14 msgid "Follow" msgstr "" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:16 +#: ckan/public/base/javascript/modules/image-upload.js:68 msgid "Upload" msgstr "Prześlij plik" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:18 +#: ckan/public/base/javascript/modules/image-upload.js:72 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 #: ckan/templates/snippets/search_form.html:68 msgid "Remove" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: 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 @@ -1898,84 +2494,78 @@ msgstr "" msgid "URL" msgstr "URL" -#: ckan/public/base/javascript/modules/image-upload.js:21 +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 msgid "File" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 msgid "Save order" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 msgid "Saving..." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 msgid "Upload a file" msgstr "Prześlij plik" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 msgid "An Error Occurred" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 msgid "Unable to upload file" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 msgid "Unable to authenticate upload" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 msgid "Unable to get data for uploaded file" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" msgstr "" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" msgstr "" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 #: ckan/templates/organization/bulk_process.html:65 #: ckan/templates/organization/edit.html:3 #: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 +#: ckan/templates/organization/members.html:33 #: ckan/templates/package/edit_base.html:11 #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 +#: ckan/templates/package/snippets/resource_item.html:56 msgid "Edit" msgstr "Edycja" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 msgid "Show more" msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 msgid "Hide" msgstr "" @@ -2108,19 +2698,19 @@ msgstr "Kosz" msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:17 +#: ckan/templates/admin/config.html:16 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:18 +#: ckan/templates/admin/config.html:17 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:27 +#: ckan/templates/admin/config.html:26 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:34 +#: ckan/templates/admin/config.html:33 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2165,81 +2755,12 @@ msgstr "" msgid "

Purge deleted datasets forever and irreversibly.

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

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." msgstr "" #: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 +#: ckan/templates/package/resource_read.html:115 #: ckan/templates/package/snippets/resource_view.html:26 msgid "Click here for more information." msgstr "" @@ -2249,12 +2770,6 @@ msgstr "" msgid "Download resource" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." msgstr "" @@ -2387,8 +2902,8 @@ msgstr "" 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/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 @@ -2403,26 +2918,12 @@ msgstr "" msgid "Edit Group" msgstr "" -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 +#: ckan/templates/group/edit_base.html:23 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/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "" - #: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 #: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 msgid "History" @@ -2437,28 +2938,6 @@ msgstr "Dodaj grupę" msgid "Search groups..." msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - #: ckan/templates/group/index.html:29 msgid "There are currently no groups for this site" msgstr "" @@ -2480,11 +2959,11 @@ msgid "Edit Member" msgstr "" #: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 +#: ckan/templates/group/member_new.html:64 ckan/templates/group/members.html:6 #: ckan/templates/organization/member_new.html:7 #: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 +#: ckan/templates/organization/member_new.html:65 +#: ckan/templates/organization/members.html:8 msgid "Add Member" msgstr "" @@ -2514,44 +2993,40 @@ msgid "If you wish to invite a new user, enter their email address." msgstr "" #: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 +#: ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 +#: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" #: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 +#: ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 +#: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 #: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 #: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 #: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 +#: ckan/templates/user/edit_user_form.html:45 msgid "Delete" msgstr "Usuń" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Zapisz" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 msgid "What are roles?" msgstr "" -#: ckan/templates/group/member_new.html:81 +#: ckan/templates/group/member_new.html:80 msgid "" "

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

Member: Can add/remove " @@ -2571,32 +3046,6 @@ msgstr "" msgid "Create Group" msgstr "" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Ostatnia modyfikacja" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." @@ -2625,14 +3074,6 @@ msgstr "" msgid "my-group" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Opis" - #: ckan/templates/group/snippets/group_form.html:20 msgid "A little information about my group..." msgstr "" @@ -2641,28 +3082,10 @@ msgstr "" msgid "Are you sure you want to delete this Group?" msgstr "" -#: ckan/templates/group/snippets/group_form.html:64 +#: ckan/templates/group/snippets/group_form.html:63 msgid "Save Group" msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 msgid "View {name}" @@ -2808,6 +3231,10 @@ msgstr "" msgid "groups" msgstr "" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -2929,11 +3356,11 @@ msgstr "" msgid "Email address" msgstr "" -#: ckan/templates/organization/member_new.html:62 +#: ckan/templates/organization/member_new.html:61 msgid "Update Member" msgstr "" -#: ckan/templates/organization/member_new.html:82 +#: ckan/templates/organization/member_new.html:81 msgid "" "

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

Editor: Can add and " @@ -2942,6 +3369,14 @@ msgid "" "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 @@ -3007,12 +3442,12 @@ msgid "" "public and private datasets belonging to this organization." msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:64 +#: ckan/templates/organization/snippets/organization_form.html:63 msgid "Save Organization" msgstr "" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 msgid "View {organization_name}" msgstr "" @@ -3057,7 +3492,7 @@ msgstr "" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 +#: ckan/templates/package/snippets/resource_item.html:32 #: ckan/templates/snippets/datapreview_embed_dialog.html:16 msgid "Preview" msgstr "Podgląd" @@ -3117,7 +3552,7 @@ msgid "" msgstr "" #: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 +#: ckan/templates/package/snippets/resource_form.html:81 msgid "Add" msgstr "Dodaj" @@ -3128,48 +3563,6 @@ msgid "" "differ significantly from the current revision." msgstr "" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Błąd:" - -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" - -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Ostatnia modyfikacja" - -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "" - #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" msgstr "" @@ -3179,15 +3572,11 @@ msgid "View resource" msgstr "" #: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 +#: ckan/templates/package/resource_edit_base.html:30 msgid "Edit resource" msgstr "" #: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 msgid "Views" msgstr "" @@ -3196,91 +3585,100 @@ msgid "API Endpoint" msgstr "Punkt dostępowy API" #: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 +#: ckan/templates/package/snippets/resource_item.html:47 msgid "Go to resource" msgstr "" #: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 +#: ckan/templates/package/snippets/resource_item.html:44 msgid "Download" msgstr "Pobierz" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 msgid "URL:" msgstr "" -#: ckan/templates/package/resource_read.html:69 +#: ckan/templates/package/resource_read.html:66 msgid "From the dataset abstract" msgstr "" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/package/resource_read.html:68 #, python-format msgid "Source: %(dataset)s" msgstr "" -#: ckan/templates/package/resource_read.html:112 +#: ckan/templates/package/resource_read.html:109 msgid "There are no views created for this resource yet." msgstr "" -#: ckan/templates/package/resource_read.html:116 +#: ckan/templates/package/resource_read.html:113 msgid "Not seeing the views you were expecting?" msgstr "" -#: ckan/templates/package/resource_read.html:121 +#: ckan/templates/package/resource_read.html:118 msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -#: ckan/templates/package/resource_read.html:123 +#: ckan/templates/package/resource_read.html:120 msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/resource_read.html:124 +#: ckan/templates/package/resource_read.html:121 msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/resource_read.html:125 +#: ckan/templates/package/resource_read.html:122 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" msgstr "" -#: ckan/templates/package/resource_read.html:147 +#: ckan/templates/package/resource_read.html:144 msgid "Additional Information" msgstr "Dodatkowe informacje" -#: ckan/templates/package/resource_read.html:151 +#: ckan/templates/package/resource_read.html:148 #: ckan/templates/package/snippets/additional_info.html:6 #: ckan/templates/revision/diff.html:43 #: ckan/templates/snippets/additional_info.html:11 msgid "Field" msgstr "Pole" -#: ckan/templates/package/resource_read.html:152 +#: ckan/templates/package/resource_read.html:149 #: ckan/templates/package/snippets/additional_info.html:7 #: ckan/templates/snippets/additional_info.html:12 msgid "Value" msgstr "Wartość" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 msgid "unknown" msgstr "" -#: ckan/templates/package/resource_read.html:161 +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:162 #: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "" -#: ckan/templates/package/resource_read.html:165 +#: ckan/templates/package/resource_read.html:166 #: ckan/templates/package/snippets/resource_form.html:37 #: ckan/templates/package/snippets/resource_info.html:16 msgid "Format" msgstr "Format" -#: ckan/templates/package/resource_read.html:169 +#: ckan/templates/package/resource_read.html:170 #: ckan/templates/package/snippets/package_basic_fields.html:30 #: ckan/templates/snippets/license.html:21 msgid "License" @@ -3298,8 +3696,8 @@ msgstr "" msgid "Add new resource" msgstr "" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" "

This dataset has no data, why not " @@ -3393,10 +3791,6 @@ msgid "" "continue." msgstr "" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "" - #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 msgid "Title" @@ -3458,7 +3852,7 @@ msgstr "" msgid "Are you sure you want to delete this dataset?" msgstr "" -#: ckan/templates/package/snippets/package_form.html:44 +#: ckan/templates/package/snippets/package_form.html:43 msgid "Next: Add Data" msgstr "" @@ -3544,15 +3938,15 @@ msgstr "" msgid "Are you sure you want to delete this resource?" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:72 +#: ckan/templates/package/snippets/resource_form.html:71 msgid "Previous" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:75 +#: ckan/templates/package/snippets/resource_form.html:74 msgid "Save & add another" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 +#: ckan/templates/package/snippets/resource_form.html:77 msgid "Finish" msgstr "" @@ -3564,11 +3958,11 @@ msgstr "" msgid "A resource can be any file or link to a file containing useful data." msgstr "" -#: ckan/templates/package/snippets/resource_item.html:24 +#: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:36 +#: ckan/templates/package/snippets/resource_item.html:35 msgid "More information" msgstr "" @@ -3610,7 +4004,7 @@ msgstr "" msgid "Data and Resources" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:29 +#: ckan/templates/package/snippets/resources_list.html:30 msgid "This dataset has no data" msgstr "" @@ -3638,18 +4032,10 @@ msgstr "" msgid "eg. Information about my view" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" msgstr "" @@ -3748,11 +4134,11 @@ msgstr "" msgid "Home" msgstr "Strona startowa" -#: ckan/templates/snippets/language_selector.html:4 +#: ckan/templates/snippets/language_selector.html:3 msgid "Language" msgstr "" -#: ckan/templates/snippets/language_selector.html:12 +#: ckan/templates/snippets/language_selector.html:11 #: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 @@ -3929,7 +4315,7 @@ msgstr "" #: ckan/templates/user/dashboard_datasets.html:19 #: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 #: ckan/templates/user/read.html:16 msgid "Create one now?" msgstr "" @@ -3938,7 +4324,7 @@ msgstr "" msgid "You are not a member of any groups." msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 +#: ckan/templates/user/dashboard_organizations.html:21 msgid "You are not a member of any organizations." msgstr "" @@ -3998,492 +4384,208 @@ msgstr "" msgid "Password" msgstr "" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:56 -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:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "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:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "" - -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "" - -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" 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" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" msgstr "" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -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ę" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" msgstr "" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" msgstr "" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." msgstr "" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Zapomniałeś(aś) hasła?" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Wyloguj się" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" +#: ckan/templates/user/new.html:6 +msgid "Registration" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Liczba zbiorów danych" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Najlepiej ocenione zbiory danych" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Średnia ocena" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Liczba ocen" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Brak ocen" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Najczęściej edytowane zbiory danych" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Liczba edycji" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Największe grupy" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Liczba zbiorów danych" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Najczęstsze tagi" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" +#: ckan/templates/user/read_base.html:96 +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:6 +msgid "Password reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" msgstr "" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" msgstr "" diff --git a/ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo b/ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo index f48e2ddea96..75cb2c8f3f7 100644 Binary files a/ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo and b/ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po b/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po index 0925c7e24c3..4c42f00986f 100644 --- a/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po +++ b/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po @@ -1,4620 +1,4719 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Augusto Herrmann , 2016\n" +"Last-Translator: Augusto Herrmann , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Função de autorização não encontrada: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Completo" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administrador" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pendente" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Editor" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Submetendo" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Membro" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Erro" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "É necessário ser administrador do sistema para gerenciar" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Não inserido ainda" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Título do Site" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Recurso não encontrado" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Estilo" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Não autorizado a ver esta página" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Lema do site" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Enviar para DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Logomarca do site" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Erro no envio:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Erro:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Texto na página Sobre" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Rastreamento do erro:" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Texto Introdutório" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Estado" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Texto na Home Page" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Ultima atualização" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "CSS customizado" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nunca" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "CSS customizável foi inserido no header da página" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Enviar Log" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Homepage" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detalhes" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Fim do log" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "formato: deve ser um de %s" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "recurso DataStore não encontrado" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Não foi possível expurgar o pacote %s pois a revisão associada %s inclui " -"pacotes não excluídos %s" +"Os dados são inválidos (por exemplo: um valor numérico está fora dos limites" +" ou foi inserido num campo de texto)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Problema ao expurgar a revisão %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Recurso \"{0}\" não foi encontrado." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Expurgação completa" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Usuário {0} não está autorizado para atualizar o recurso {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Ação não implementada." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "API de Dados do CKAN" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Não autorizado a ver esta página" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "Acesse recursos pela web API com poderoso suporte a consultas" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Acesso negado" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +" Maiores informações no documentação principal da API de dados do CKAN Data API e " +"do DataStore.

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Não encontrado" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Pontos de acesso" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Requisição incorreta" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Nome de ação desconhecido: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Criar" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Erro JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Atualizar / Inserir" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Erro nos dados da requisição: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Consulta" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Não foi possível listar entidade deste tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Consulta (via SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Não foi possível ler entidade deste tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Consultando" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Não foi possível criar nova entidade deste tipo: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Exemplo de consulta (primeiros 5 resultados)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Não é possível adicionar pacote para índice de pesquisa" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Exemplo de consulta (resultados contendo 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Não foi possível atualizar entidade deste tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Exemplo de consulta (via SQL statement)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Não é possível atualizar índice de pesquisa" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Exemplo: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Não foi possível excluir entidade deste tipo: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Uma simples consulta ajax (JSONP) para a data API usando jQuery." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Nenhuma revisão especificada" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Exemplo: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Não há revisão com o id: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "Campo {num}." -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Falta um termo de busca ('since_id=UUID' ou 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Rótulo" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Não foi possível ler os parâmetros: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Descrição" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Opção de busca inválida: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Salvar" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Registro desconhecido: %s" +#: 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" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Valor qjson mal formado: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Coluna" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "" -"Parâmetros de requisição devem estar na forma de um dicionário codificado em" -" json." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "Tipo" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Grupo não encontrado" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Carregando ..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organização não encontrada" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "API de dados" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Tipo de grupo incorreto" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tabela" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organizações" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Tela responsiva" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Grupos" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Mostrar Colunas" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Etiquetas" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "Mostrar/Ocultar Colunas" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formatos" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Conjuntos de dados por página" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licenças" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Configuração teste" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Não autorizado a realizar atualização em lote" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevância" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Não autorizado a criar um grupo" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Usuário %r não autorizado a editar %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Erro de Integridade" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Modificada pela última vez" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Usuário %r não autorizado a editar as autorizações %s" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Campo Personalizado Crescente" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Não autorizado a excluir o grupo %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Campo Personalizado Decrescente" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "A organização foi excluída" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Popular" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "O grupo foi excluído" +#: 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" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s foi excluído(a)." +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "texto personalizado" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Não autorizado a adicionar membro ao grupo %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Código do país" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Não autorizado a excluir membros do grupo %s" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "texto personalizado de recurso" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Membro foi excluído do grupo" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Este é um texto não traduzido" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Selecione duas revisões antes de fazer a comparação." +#: 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/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Histórico de Revisões de Grupos do CKAN" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Alterações recentes no Grupo CKAN:" +#: 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" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Mensagem de log: " +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Você está seguindo {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Seguidores" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Você não está mais seguindo {0}" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Recursos" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Não autorizado a visualizar os seguidores %s" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Imagem" -#: ckan/controllers/home.py:36 -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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Url da imagem" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -"Por favor atualize o seu perfil e adicione o seu endereço" -" de e-mail. " +"ex.: http://exemplo.com/imagem.jpg (se estiver em branco usará a url do " +"recurso)" -#: ckan/controllers/home.py:83 -#, 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." +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Explorador de Dados" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "Consulta de pesquisa inválida: {error_message}" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Gráfico" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parametro \"{parameter_name}\" não é do tipo inteiro" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Mapa" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Conjunto de dados não encontrado" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "erro ao carregar visualização" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Formato inválido de revisão: %r" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "Não foi possível carregar a visão" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" -"Visualizando datasets {package_type} em formato {format} não suportado " -"(arquivo de modelo {file} não encontrado)." +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "DataStore retornou um erro" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Não autorizado a ler o pacote %s" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "DataPorxy retornou um erro" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Histórico de Revisões de Conjuntos de Dados do CKAN" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "Grade" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Alterações recentes a Conjuntos de Dados do CKAN: " +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filtros" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Não autorizado a criar um pacote" +#: 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" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Não autorizado a editar esse recurso" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "ex.: 0" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Recurso não encontrado" +#: 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" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Não autorizado a atualizar o conjunto de dados" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "ex.: 100" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "O conjunto de dados {id} não pôde ser encontrado." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tipo de gráfico" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Você deve adicionar pelo menos um recurso" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupo (Eixo 1)" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Erro" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Série (Eixo 2)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Não autorizado a criar recurso" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tipo de campo" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Não autorizado a criar um recurso para este pacote" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Campo de latitude" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Não é possível adicionar pacote para índice de pesquisa." +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Campo de longitude" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Não é possível atualizar índice de pesquisa." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Campo GeoJSON" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "O conjunto de dados foi excluído." +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Aproximar automaticamente de pontos de interesse" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Não autorizado a excluir o pacote %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Marcadores de algomeração" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "O recurso foi excluído." +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Número total de Conjuntos de Dados" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Não autorizado a excluir o recurso %s" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Data" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Visão de recurso não encontrada" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Total de conjuntos de dados" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Dados de recursos não encontrado" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Revisões de Conjuntos de Dados por semana" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Nenhum arquivo está disponível para baixar." +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Todas as revisões do conjunto de dados" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Não autorizado a ler o conjunto de dados %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Novos conjuntos de dados" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Não autorizado a ler o recurso: %s" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Conjuntos de Dados mais bem avaliados" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Não autorizado a editar o recurso" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Média de avaliação" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Visualização não encontrada" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Número de avaliações" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Tipo de Visualização não encontrado" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Nenhuma avaliação" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Dados para visão do recurso estão defeituosos" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Conjuntos de Dados Mais Editados" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Visão do recurso não fornecida" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Conjunto de dados" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Não foi definida uma pré-visualização." +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Número de edições" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Histórico de Revisão do Repositório CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Sem conjuntos de dados editados" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Atualizações recentes no repositório CKAN." +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Maiores Grupos" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Conjuntos de dados afetados: %s.\n" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Grupo" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Revisão atualizada" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Número de conjuntos de dados" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Outro" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Sem grupos" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Etiqueta não encontrada" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Principais Etiquetas" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Usuário não encontrado" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Nome da etiqueta" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Você não possui autorização para se registar como um usuário." +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Número de conjuntos de dados" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Não autorizado a criar um usuário" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "Usuários que Mais Criaram Conjuntos de Dados" -#: ckan/controllers/user.py:210 -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/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Usuário" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Nenhum usuário especificado" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Estatísticas" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Não autorizado a editar o usuário %s" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Número total de Conjuntos de Dados" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Perfil atualizado" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Texto" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Não autorizado a criar o usuário %s" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Website" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Texto da imagem incorreto. Por favor, tente novamente." +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Url de página Web" -#: ckan/controllers/user.py:265 -#, 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" +#: 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/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Você não possui autorização para editar um usuário." +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Seu browser não suporta iframes." -#: ckan/controllers/user.py:320 +#: ckan/authz.py:182 #, python-format -msgid "User %s not authorized to edit %s" -msgstr "Usuário %s não está autorizado a editar %s" +msgid "Authorization function not found: %s" +msgstr "Função de autorização não encontrada: %s" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "A senha digitada está incorreta" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administrador" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Senha Antiga" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Editor" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "Senha incorreta" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Membro" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Entrada falhou. Nome de usuário ou senha incorretos." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "É necessário ser administrador do sistema para gerenciar" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Você não possui autorização para solicitar redefinição de senha." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Título do Site" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" coincide com vários usuários" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Estilo" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Não existe usuário: %s" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Lema do site" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "" -"Por favor verifique sua caixa de entrada para um código de redefinição." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Logomarca do site" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Não foi possível enviar link para redefinir: %s" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Não autorizado a redefinir senha." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Texto na página Sobre" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Chave de redefinição inválida. Por favor, tente novamente." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Texto Introdutório" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Sua senha foi redefinida." +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Texto na Home Page" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Sua senha deve conter 4 ou mais caracteres." +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "CSS customizado" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "As senhas que você forneceu são diferentes." +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "CSS customizável foi inserido no header da página" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Você deve informar uma senha" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Homepage" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Item de seguimento não encontrado" +#: ckan/controllers/admin.py:161 +#, 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/user.py:640 -msgid "{0} not found" -msgstr "{0} não foi encontrado" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problema ao expurgar a revisão %s: %s" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Tudo" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Expurgação completa" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Faltando valor" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Ação não implementada." -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Redirecionar a um site externo não é permitido." +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Acesso negado" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} adicionou a etiqueta {tag} ao conjunto de dados {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Não encontrado" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} atualizou o grupo {group}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Requisição incorreta" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} atualizou a organização {organization}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Nome de ação desconhecido: %s" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} atualizou o conjunto de dados {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Erro JSON: %s" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} atualizou o campo {extra} do conjunto de dados {dataset}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Erro nos dados da requisição: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} atualizou o recurso {resource} do conjunto de dados {dataset}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Não foi possível listar entidade deste tipo: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} atualizou seu perfil" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Não foi possível ler entidade deste tipo: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} excluiu o grupo {group}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Não foi possível criar nova entidade deste tipo: %s %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} excluiu a organização {organization}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Não é possível adicionar pacote para índice de pesquisa" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} excluiu o conjunto de dados {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Não foi possível atualizar entidade deste tipo: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} excluiu o campo {extra} do conjunto de dados {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Não é possível atualizar índice de pesquisa" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} excluiu o recurso {resource} do conjunto de dados {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Não foi possível excluir entidade deste tipo: %s %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} criou o grupo {group}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Nenhuma revisão especificada" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} criou a organização {organization}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Não há revisão com o id: %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} criou o conjunto de dados {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Falta um termo de busca ('since_id=UUID' ou 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} adicionou o campo {extra} ao conjunto de dados {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Não foi possível ler os parâmetros: %r" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} adicionou o recurso {resource} ao conjunto de dados {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Opção de busca inválida: %s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} registrou-se" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Registro desconhecido: %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} excluiu a etiqueta {tag} do conjunto de dados {dataset}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Valor qjson mal formado: %r" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} começou a seguir {dataset}" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" +"Parâmetros de requisição devem estar na forma de um dicionário codificado em" +" json." -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} começou a seguir {user}" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Grupo não encontrado" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} começou a seguir {group}" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organização não encontrada" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Ver" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Tipo de grupo incorreto" -#: 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/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organizações" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Janeiro" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Grupos" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Fevereiro" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Etiquetas" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Março" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formatos" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Abril" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licenças" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Maio" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Usuário %r não autorizado a editar %s" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Junho" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Não autorizado a realizar atualização em lote" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Julho" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Não autorizado a criar um grupo" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Agosto" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Erro de Integridade" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Setembro" +#: ckan/controllers/group.py:594 +#, 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/lib/formatters.py:55 -msgid "October" -msgstr "Outubro" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Não autorizado a excluir o grupo %s" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Novembro" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "A organização foi excluída" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Dezembro" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "O grupo foi excluído" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Agora há pouco" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s foi excluído(a)." -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} minuto atrás" -msgstr[1] "{mins} minutos atrás" +#: ckan/controllers/group.py:653 +#, 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/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} hora atrás" -msgstr[1] "{hours} horas atrás" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Não autorizado a adicionar membro ao grupo %s" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} dia atrás" -msgstr[1] "{days} dias atrás" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Não autorizado a excluir membros do grupo %s" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "há {months} mês" -msgstr[1] "há {months} meses" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Membro foi excluído do grupo" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "há mais de {years} ano" -msgstr[1] "há mais de {years} anos" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Selecione duas revisões antes de fazer a comparação." -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "{day} de {month} de {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Histórico de Revisões de Grupos do CKAN" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{day}/{month}/{year}" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Alterações recentes no Grupo CKAN:" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Mensagem de log: " -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Você está seguindo {0}" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Você não está mais seguindo {0}" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Não autorizado a visualizar os seguidores %s" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: 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/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/home.py:73 +#, 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/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "Consulta de pesquisa inválida: {error_message}" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametro \"{parameter_name}\" não é do tipo inteiro" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Conjunto de dados não encontrado" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Formato inválido de revisão: %r" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:396 +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/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Não autorizado a ler o pacote %s" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Histórico de Revisões de Conjuntos de Dados do CKAN" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Atualize o seu avatar em gravatar.com" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Alterações recentes a Conjuntos de Dados do CKAN: " -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Desconhecido" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Não autorizado a criar um pacote" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Recurso sem nome" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Não autorizado a editar esse recurso" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Criado um novo conjunto de dados." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Não autorizado a atualizar o conjunto de dados" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Editados os recursos." +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "O conjunto de dados {id} não pôde ser encontrado." -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Editadas as configurações." +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Você deve adicionar pelo menos um recurso" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} visualização" -msgstr[1] "{number} visualizações" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Não autorizado a criar recurso" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} visualização recente" -msgstr[1] "{number} visualizações recentes" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Não autorizado a criar um recurso para este pacote" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Não é possível adicionar pacote para índice de pesquisa." -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Nenhum endereço de destinatário de e-mail disponível!" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Não é possível atualizar índice de pesquisa." -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organização" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "O conjunto de dados foi excluído." -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "grupo" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Não autorizado a excluir o pacote %s" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Faltando valor" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "O recurso foi excluído." -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1052 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "O campo de entrada %(name)s não era esperado." +msgid "Unauthorized to delete resource %s" +msgstr "Não autorizado a excluir o recurso %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Por favor entre com um valor inteiro" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Visão de recurso não encontrada" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Recursos" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Dados de recursos não encontrado" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Recurso(s) do pacote inválido(s)" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Nenhum arquivo está disponível para baixar." -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Extras" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Não autorizado a ler o conjunto de dados %s" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1404 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "O vocabulário de etiquetas \"%s\" não existe" +msgid "Unauthorized to read resource %s" +msgstr "Não autorizado a ler o recurso: %s" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Usuário" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Não autorizado a editar o recurso" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Conjunto de dados" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Visualização não encontrada" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Grupo" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Tipo de Visualização não encontrado" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Não foi possível interpretar como JSON válido" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Dados para visão do recurso estão defeituosos" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "É necessário informar uma organização" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Visão do recurso não fornecida" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "A organização não existe" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Não foi definida uma pré-visualização." -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Você não pode adicionar um conjunto de dados a essa organização" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Histórico de Revisão do Repositório CKAN" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Inteiro inválido" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Atualizações recentes no repositório CKAN." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Precisa ser um número natural" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Conjuntos de dados afetados: %s.\n" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Precisa ser um inteiro positivo" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Revisão atualizada" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Formatação de data incorreta" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Outro" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Links não são permitidos em log_message." +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Etiqueta não encontrada" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Id de conjunto de dados já existe" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Você não possui autorização para se registar como um usuário." -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Recurso" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Não autorizado a criar um usuário" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Esse nome ou ID de grupo não existe." +#: ckan/controllers/user.py:210 +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/logic/validators.py:267 -msgid "Activity type" -msgstr "Tipo de atividade" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Nenhum usuário especificado" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Nomes devem ser strings" +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Não autorizado a editar o usuário %s" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Esse nome não pode ser usado" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Usuário não encontrado" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "Precisa ter pelo menos %s caracteres" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Perfil atualizado" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Nome tem que ter um máximo de %i caracteres" +msgid "Unauthorized to create user %s" +msgstr "Não autorizado a criar o usuário %s" -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Texto da imagem incorreto. Por favor, tente novamente." + +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Precisa conter apenas caracteres alfanuméricos (ascii) e os seguintes " -"símbolos: -_" +"O usuário \"%s\" foi registrado, porém você ainda está identificado como " +"\"%s\" do login anterior" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Essa URL já está em uso." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Você não possui autorização para editar um usuário." -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "O comprimento do nome \"%s\" é menor que o mínimo %s" +msgid "User %s not authorized to edit %s" +msgstr "Usuário %s não está autorizado a editar %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "O comprimento do nome \"%s\" é maior que o máximo %s" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "A senha digitada está incorreta" -#: ckan/logic/validators.py:375 -#, 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/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Senha Antiga" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Chave duplicada \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "Senha incorreta" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Nome do grupo já existe na base de dados" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Entrada falhou. Nome de usuário ou senha incorretos." -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Comprimento da etiqueta \"%s\" é menor que o mínimo %s" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Você não possui autorização para solicitar redefinição de senha." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "O comprimento da etiqueta \"%s\" é maior que o máximo %i" +msgid "\"%s\" matched several users" +msgstr "\"%s\" coincide com vários usuários" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "A etiqueta \"%s\" deve conter caracteres alfanuméricos ou símbolos: -_." +msgid "No such user: %s" +msgstr "Não existe usuário: %s" + +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "" +"Por favor verifique sua caixa de entrada para um código de redefinição." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "A etiqueta \"%s\" não pode ter caixa alta" +msgid "Could not send reset link: %s" +msgstr "Não foi possível enviar link para redefinir: %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Nomes de usuário devem ser strings" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Não autorizado a redefinir senha." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Esse nome de login não está disponível." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Chave de redefinição inválida. Por favor, tente novamente." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Por favor forneça as duas senhas" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Sua senha foi redefinida." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Senhas devem ser strings" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Sua senha deve conter 4 ou mais caracteres." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Sua senha deve conter no mínimo 4 caracteres" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "As senhas que você forneceu são diferentes." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "As senhas que você digitou não são iguais" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Você deve informar uma senha" -#: ckan/logic/validators.py:610 -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/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Item de seguimento não encontrado" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "O nome deve conter pelo menos %s caracteres" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} não foi encontrado" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Esse nome de vocabulário já está sendo utilizado." +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Tudo" -#: ckan/logic/validators.py:633 -#, 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/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Faltando valor" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Vocabulário de etiquetas não encontrado." +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Redirecionar a um site externo não é permitido." -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "A etiqueta %s não pertence ao vocabulário %s" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} adicionou a etiqueta {tag} ao conjunto de dados {dataset}" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Nenhum nome de etiqueta" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} atualizou o grupo {group}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "A etiqueta %s já pertence ao vocabulário %s" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} atualizou a organização {organization}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Por favor forneça uma URL válida" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} atualizou o conjunto de dados {dataset}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "Esse papel não existe" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} atualizou o campo {extra} do conjunto de dados {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Conjuntos de dados sem uma organização não podem ser privados." +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} atualizou o recurso {resource} do conjunto de dados {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Não é uma lista" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} atualizou seu perfil" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Não é uma string" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} excluiu o grupo {group}" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Esse pai criaria um ciclo na hierarquia" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} excluiu a organização {organization}" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" e \"filter_values\" devem ter o mesmo comprimento" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} excluiu o conjunto de dados {dataset}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" é obrigatório quando \"filter_values\" estiver preenchido" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} excluiu o campo {extra} do conjunto de dados {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" é obrigatório quando \"filter_fields\" está preenchido" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} excluiu o recurso {resource} do conjunto de dados {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Há um campo de esquema com o mesmo nome" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} criou o grupo {group}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "API REST: Criar objeto %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} criou a organização {organization}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "API REST: Criar relacionamento de pacotes: %s %s %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} criou o conjunto de dados {dataset}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "API REST: Criar objeto membro %s" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} adicionou o campo {extra} ao conjunto de dados {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Tentando criar uma organização como um grupo" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} adicionou o recurso {resource} ao conjunto de dados {dataset}" -#: ckan/logic/action/create.py:881 -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/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} registrou-se" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Você deve informar uma avaliação (parâmetro \"rating\")." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} excluiu a etiqueta {tag} do conjunto de dados {dataset}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Avaliação deve ser um valor inteiro." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} começou a seguir {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Avaliação deve ser entre %i e %i." +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} começou a seguir {user}" -#: ckan/logic/action/create.py:1052 -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/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} começou a seguir {group}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Você precisa estar autenticado para seguir usuários" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Ver" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Você não pode seguir você mesmo" +#: 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/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Você já está seguindo {0}" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Janeiro" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Você precisa estar autenticado para seguir um conjunto de dados." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Fevereiro" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "O usuário {username} não existe." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Março" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Você precisa estar autenticado para seguir um grupo." +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Abril" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "Excluir Usuário: {0}" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Maio" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "API REST: Excluir Pacote: %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Junho" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "API REST: Excluir %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Julho" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "API REST: Excluir membro: %s" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Agosto" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id não está nos dados" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Setembro" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Não foi possível encontrar o vocabulário \"%s\"" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Outubro" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Não foi possível encontrar a etiqueta \"%s\"" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Novembro" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Você precisa estar autenticado para deixar de seguir algo" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Dezembro" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Você não está seguindo {0}" +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Agora há pouco" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Recurso não foi encontrado." +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} minuto atrás" +msgstr[1] "{mins} minutos atrás" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Não especifique se estiver usando o parâmetro \"query\"." +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} hora atrás" +msgstr[1] "{hours} horas atrás" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Precisa ser par(es) :" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} dia atrás" +msgstr[1] "{days} dias atrás" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Campo \"{field}\" não é reconhecido em resource_search." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "há {months} mês" +msgstr[1] "há {months} meses" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Pacote não foi encontrado." +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "há mais de {years} ano" +msgstr[1] "há mais de {years} anos" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "API REST: Atualiza o objeto %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{day} de {month} de {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "API REST: Atualizar relacionamento entre pacotes: %s %s %s" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{day}/{month}/{year}" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus não foi encontrado." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organização não foi encontrada." +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: 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/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Usuário %s não autorizado a editar esses grupos" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: 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/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: 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/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Não está autorizado a criar usuários" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Grupo não foi encontrado." +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "É necessário uma chave válida da API para criar um pacote" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Atualize o seu avatar em gravatar.com" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "É necessário uma chave válida da API para criar um grupo" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Desconhecido" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Usuário %s não está autorizado a adicionar membros" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Recurso sem nome" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Usuário %s não autorizado a editar o grupo %s" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Criado um novo conjunto de dados." -#: 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/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Editados os recursos." -#: ckan/logic/auth/delete.py:56 -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/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Editadas as configurações." -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} visualização" +msgstr[1] "{number} visualizações" -#: 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/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} visualização recente" +msgstr[1] "{number} visualizações recentes" -#: ckan/logic/auth/delete.py:86 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete group %s" -msgstr "Usuário %s não autorizado a excluir o grupo %s" +msgid "%s <%s>" +msgstr "%s <%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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Nenhum endereço de destinatário de e-mail disponível!" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organização" -#: 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/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grupo" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Não autorizado" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Faltando valor" -#: ckan/logic/auth/get.py:108 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read these packages" -msgstr "Usuário %s não autorizado a ler estes pacotes" +msgid "The input field %(name)s was not expected." +msgstr "O campo de entrada %(name)s não era esperado." -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "Usuário %s não autorizado a ler o pacote %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Por favor entre com um valor inteiro" -#: ckan/logic/auth/get.py:149 -#, 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/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "Deve ser um valor de string Unicode" -#: ckan/logic/auth/get.py:176 -#, 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/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Recurso(s) do pacote inválido(s)" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "" -"Você precisa estar autenticado para acessar o seu painel de controle. " +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Extras" -#: ckan/logic/auth/update.py:39 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit package %s" -msgstr "Usuário %s não autorizado a editar o pacote %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "O vocabulário de etiquetas \"%s\" não existe" -#: ckan/logic/auth/update.py:71 -#, 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/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Não foi possível interpretar como JSON válido" -#: ckan/logic/auth/update.py:100 -#, 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/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "É necessário informar uma organização" -#: ckan/logic/auth/update.py:128 -#, 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/validators.py:47 +msgid "Organization does not exist" +msgstr "A organização não existe" -#: ckan/logic/auth/update.py:145 -#, 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/validators.py:52 +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/auth/update.py:162 -#, 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/validators.py:92 +msgid "Invalid integer" +msgstr "Inteiro inválido" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Precisa estar autenticado para editar usuário" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Precisa ser um número natural" -#: ckan/logic/auth/update.py:197 -#, 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/validators.py:103 +msgid "Must be a postive integer" +msgstr "Precisa ser um inteiro positivo" -#: ckan/logic/auth/update.py:208 -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/validators.py:130 +msgid "Date format incorrect" +msgstr "Formatação de data incorreta" -#: ckan/logic/auth/update.py:216 -#, 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/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Links não são permitidos em log_message." + +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Id de conjunto de dados já existe" + +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Recurso" + +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Esse nome ou ID de grupo não existe." -#: ckan/logic/auth/update.py:225 +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Tipo de atividade" + +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Nomes devem ser strings" + +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Esse nome não pode ser usado" + +#: ckan/logic/validators.py:338 #, python-format -msgid "User %s not authorized to update task_status table" -msgstr "Usuário %s não está autorizado a atualizar a tabela " +msgid "Must be at least %s characters long" +msgstr "Precisa ter pelo menos %s caracteres" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "User %s not authorized to update term_translation table" +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:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" msgstr "" -"O usuário %s não está autorizado a atualizar a tabela term_translation" +"Precisa conter apenas caracteres alfanuméricos (ascii) e os seguintes " +"símbolos: -_" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "É necessário uma chave válida da API para editar um pacote" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Essa URL já está em uso." -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "É necessário uma chave válida da API para editar um grupo" +#: ckan/logic/validators.py:366 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "O comprimento do nome \"%s\" é menor que o mínimo %s" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Licença não especificada" +#: ckan/logic/validators.py:370 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "O comprimento do nome \"%s\" é maior que o máximo %s" -#: ckan/model/license.py:232 -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/logic/validators.py:376 +#, 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/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Licença Aberta para Bases de Dados (ODbL) do Open Data Commons" +#: ckan/logic/validators.py:394 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Chave duplicada \"%s\"" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Licença de Atribuição do Open Data Commons" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Nome do grupo já existe na base de dados" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:416 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Comprimento da etiqueta \"%s\" é menor que o mínimo %s" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Atribuição" +#: ckan/logic/validators.py:420 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "O comprimento da etiqueta \"%s\" é maior que o máximo %i" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Atribuição e Compartilhamento pela mesma Licença" +#: ckan/logic/validators.py:428 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "A etiqueta \"%s\" deve conter caracteres alfanuméricos ou símbolos: -_." -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "Licença GNU para Documentação Livre" +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "A etiqueta \"%s\" não pode ter caixa alta" -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Outra (Aberta)" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Nomes de usuário devem ser strings" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Outra (Domínio Público)" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Esse nome de login não está disponível." -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Outra (Atribuição)" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Por favor forneça as duas senhas" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "Open Government Licence do Reino Unido (OGL)" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Senhas devem ser strings" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Não-Comercial (Qualquer)" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Sua senha deve conter no mínimo 4 caracteres" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Outra (Não-Comercial)" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "As senhas que você digitou não são iguais" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Outra (Não Aberta)" +#: ckan/logic/validators.py:611 +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/model/package_relationship.py:54 +#: ckan/logic/validators.py:620 #, python-format -msgid "depends on %s" -msgstr "depende de %s" +msgid "Name must be at least %s characters long" +msgstr "O nome deve conter pelo menos %s caracteres" -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is a dependency of %s" -msgstr "é uma dependência de %s" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Esse nome de vocabulário já está sendo utilizado." -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:634 #, python-format -msgid "derives from %s" -msgstr "deriva de %s" +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/model/package_relationship.py:55 -#, python-format -msgid "has derivation %s" -msgstr "tem derivação %s" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Vocabulário de etiquetas não encontrado." -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:656 #, python-format -msgid "links to %s" -msgstr "relaciona-se com %s" +msgid "Tag %s does not belong to vocabulary %s" +msgstr "A etiqueta %s não pertence ao vocabulário %s" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "is linked from %s" -msgstr "é relacionado com %s" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Nenhum nome de etiqueta" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:675 #, python-format -msgid "is a child of %s" -msgstr "é filho de %s" +msgid "Tag %s already belongs to vocabulary %s" +msgstr "A etiqueta %s já pertence ao vocabulário %s" -#: ckan/model/package_relationship.py:57 -#, python-format -msgid "is a parent of %s" -msgstr "é pai de %s" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Por favor forneça uma URL válida" -#: ckan/model/package_relationship.py:61 -#, python-format -msgid "has sibling %s" -msgstr "tem irmão %s" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "Esse papel não existe" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Carregando ..." +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Conjuntos de dados sem uma organização não podem ser privados." -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Não existe API de dados para carregar para este recurso" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Não é uma lista" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Falhou em carregar informações sobre a API de dados" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Não é uma string" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Nenhum resultado encontrado" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Esse pai criaria um ciclo na hierarquia" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Comece a digitar ..." +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" e \"filter_values\" devem ter o mesmo comprimento" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Entrada insuficiente. É necessário ao menos um caractere." +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" é obrigatório quando \"filter_values\" estiver preenchido" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Há modificações não salvas neste formulário" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" é obrigatório quando \"filter_fields\" está preenchido" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Favor confirmar a ação" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Há um campo de esquema com o mesmo nome" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Você tem certeza de que deseja executar essa ação?" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "E-mail {email} não está em um formato válido" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Confirme" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "API REST: Criar objeto %s" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Cancelar" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "API REST: Criar relacionamento de pacotes: %s %s %s" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Seguir" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "API REST: Criar objeto membro %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Deixar de seguir" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Tentando criar uma organização como um grupo" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Enviar" +#: ckan/logic/action/create.py:893 +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/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Link" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Você deve informar uma avaliação (parâmetro \"rating\")." -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Remover" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Avaliação deve ser um valor inteiro." -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Imagem" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Avaliação deve ser entre %i e %i." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/action/create.py:1064 +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/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Arquivo" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Você precisa estar autenticado para seguir usuários" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Enviar um arquivo do seu computador" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Você não pode seguir você mesmo" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Você já está seguindo {0}" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Reordenar recursos" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Você precisa estar autenticado para seguir um conjunto de dados." -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Salvar ordem" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "O usuário {username} não existe." -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Salvando..." +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Você precisa estar autenticado para seguir um grupo." -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Carrega um arquivo" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "Excluir Usuário: {0}" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Ocorreu um erro" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "API REST: Excluir Pacote: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Recurso enviado" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "API REST: Excluir %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Não foi possível enviar o arquivo" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "API REST: Excluir membro: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Não foi possível autenticar o envio" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id não está nos dados" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Não foi possível obter os dados do arquivo carregado" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Não foi possível encontrar o vocabulário \"%s\"" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Você está enviando um arquivo. Tem certeza de que quer navegar para outra " -"página e parar esse envio?" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Não foi possível encontrar a etiqueta \"%s\"" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Reordenar visão de recurso" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Você precisa estar autenticado para deixar de seguir algo" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Editar" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Você não está seguindo {0}" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Mostrar mais" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Recurso não foi encontrado." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Ocultar" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Não especifique se estiver usando o parâmetro \"query\"." -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Erro %(error_code)s" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Precisa ser par(es) :" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Sobre {0}" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Campo \"{field}\" não é reconhecido em resource_search." -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "API do CKAN" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Pacote não foi encontrado." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "Associação CKAN" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "API REST: Atualiza o objeto %s" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Impulsionado por CKAN" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "API REST: Atualizar relacionamento entre pacotes: %s %s %s" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Configurações de administração do sistema" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus não foi encontrado." -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Visualizar Perfil" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organização não foi encontrada." -#: ckan/templates/header.html:26 +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 #, 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:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Painel de Controle" +msgid "User %s not authorized to create packages" +msgstr "Usuário %s não autorizado a criar pacotes" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Editar configurações" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Usuário %s não autorizado a editar esses grupos" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Configurações" +#: 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/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Sair" +#: 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/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Entrar" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +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/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Registrar" +#: 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/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Conjuntos de dados" +#: 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/templates/header.html:116 -msgid "Search Datasets" -msgstr "Buscar conjunto de dados" +#: 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/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Pesquisar" +#: 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/templates/page.html:6 -msgid "Skip to content" -msgstr "Pular para o conteúdo" +#: 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/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Carregar menos" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Não está autorizado a criar usuários" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Carregar mais" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Grupo não foi encontrado." -#: 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/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "É necessário uma chave válida da API para criar um pacote" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Administradores" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "É necessário uma chave válida da API para criar um grupo" -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Configuração" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Usuário %s não está autorizado a adicionar membros" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Lixo" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Usuário %s não autorizado a editar o grupo %s" -#: ckan/templates/admin/config.html:16 -#: 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/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/templates/admin/config.html:17 -msgid "Reset" -msgstr "Reinicializar" +#: ckan/logic/auth/delete.py:56 +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/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Atualizar Configuraçã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/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "Opções de configuração do CKAN" +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/delete.py:86 #, 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.

" +msgid "User %s not authorized to delete group %s" +msgstr "Usuário %s não autorizado a excluir o grupo %s" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Confirmar reinicialização" +#: 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/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Administrar o CKAN" +#: 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/templates/admin/index.html:20 +#: ckan/logic/auth/delete.py:120 #, 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.

" +msgid "User %s not authorized to delete task_status" +msgstr "Usuário %s não está autorizado a excluir " -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Expurgar" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Não autorizado" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" -"

Expurgar para sempre e irreversivelmente conjuntos de dados " -"excluídos.

" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Usuário %s não autorizado a ler estes pacotes" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "API de Dados do CKAN" +#: 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/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "Acesse recursos pela web API com poderoso suporte a consultas" +#: 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/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" +#: ckan/logic/auth/get.py:170 +#, 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:252 +msgid "You must be logged in to access your dashboard." msgstr "" -" Maiores informações no documentação principal da API de dados do CKAN Data API e " -"do DataStore.

" +"Você precisa estar autenticado para acessar o seu painel de controle. " -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Pontos de acesso" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Usuário %s não autorizado a editar o pacote %s" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "A Data API pode ser acessada pelas seguintes ações da CKAN action API" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Usuário %s não está autorizado a editar recurso %s" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Criar" +#: ckan/logic/auth/update.py:100 +#, 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/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Atualizar / Inserir" +#: ckan/logic/auth/update.py:128 +#, 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/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Consulta" +#: ckan/logic/auth/update.py:145 +#, 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/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Consulta (via SQL)" +#: ckan/logic/auth/update.py:162 +#, 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Consultando" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Precisa estar autenticado para editar usuário" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Exemplo de consulta (primeiros 5 resultados)" +#: ckan/logic/auth/update.py:198 +#, 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Exemplo de consulta (resultados contendo 'jones')" +#: ckan/logic/auth/update.py:209 +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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Exemplo de consulta (via SQL statement)" +#: ckan/logic/auth/update.py:217 +#, 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/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Exemplo: Javascript" +#: ckan/logic/auth/update.py:226 +#, 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/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." +#: ckan/logic/auth/update.py:240 +#, 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/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Exemplo: Python" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "É necessário uma chave válida da API para editar um pacote" -#: 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/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "É necessário uma chave válida da API para editar um grupo" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Clique aqui para saber mais ..." +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Licença não especificada" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Baixar recurso" +#: ckan/model/license.py:232 +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/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Seu browser não suporta iframes." +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Licença Aberta para Bases de Dados (ODbL) do Open Data Commons" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Não há pré-visualização disponível." +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Licença de Atribuição do Open Data Commons" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Mais detalhes ..." +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: 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/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Atribuição" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Padrão" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Atribuição e Compartilhamento pela mesma Licença" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Entrada padrão" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "Licença GNU para Documentação Livre" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Médio" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Outra (Aberta)" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Entrada de Largura Média" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Outra (Domínio Público)" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Completo" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Outra (Atribuição)" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Entrada de Largura Total" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "Open Government Licence do Reino Unido (OGL)" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Grande" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Não-Comercial (Qualquer)" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Entrada Grande" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Outra (Não-Comercial)" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Prefixar" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Outra (Não Aberta)" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Entrada Prefixada" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "depende de %s" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Campo Personalizado (vazio)" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "é uma dependência de %s" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Campo customizado" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "deriva de %s" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "tem derivação %s" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Área de texto" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "relaciona-se com %s" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Selecionar" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "é relacionado com %s" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Fluxo de Atividades" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "é filho de %s" -#: 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/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "é pai de %s" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Adicionar Um Grupo" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "tem irmão %s" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Formulário Grupo" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Não existe API de dados para carregar para este recurso" -#: 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/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Falhou em carregar informações sobre a API de dados" -#: 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/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Comece a digitar ..." -#: 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/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Nenhum resultado encontrado" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Gerenciar" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Editar Grupo" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Há modificações não salvas neste formulário" -#: 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/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Favor confirmar a ação" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Seguidores" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Você tem certeza de que deseja executar essa ação?" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Histórico" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Confirme" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Adicionar Grupo" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Buscar grupos..." +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Deixar de seguir" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Nome Crescente" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Nome Descrescente" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Seguir" -#: 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/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Link" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Que tal criar um?" +#: ckan/public/base/javascript/modules/image-upload.js:61 +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/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/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Enviar" -#: 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/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Remover" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Adicionar membro" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Enviar um arquivo do seu computador" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Usuário Existente" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Se você quer adicionar um usuário existente, busque pelo nome de usuário " -"dele abaixo." +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Arquivo" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "ou" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Salvar ordem" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Novo Usuário" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Salvando..." -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Se você quer convidar um novo usuário, inclua o endereço de email dele." +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Carrega um arquivo" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Papel" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Ocorreu um erro" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Você tem certeza de que deseja apagar este usuário?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Não foi possível enviar o arquivo" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Excluir" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Não foi possível autenticar o envio" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Salvar" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Recurso enviado" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "O que são papeis?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Não foi possível obter os dados do arquivo carregado" -#: ckan/templates/group/member_new.html:81 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"

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

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

" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" 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

" +"Você está enviando um arquivo. Tem certeza de que quer navegar para outra " +"página e parar esse envio?" -#: 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/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Adicionar Filtro" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Atualizar Grupo" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "Selecione um campo" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Criar Grupo" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Editar" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevância" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Mostrar mais" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Modificada pela última vez" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Ocultar" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Popular" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Erro %(error_code)s" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Pesquisar conjuntos de dados..." +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Sobre {0}" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Conjuntos de dados no grupo: {group}" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API do CKAN" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Histórico de Revisões" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "Associação CKAN" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Nome" +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Impulsionado por CKAN" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Meu Grupo" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Configurações de administração do sistema" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "meu-grupo" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Visualizar Perfil" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Descrição" +#: ckan/templates/header.html:26 +#, 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/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/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Painel de Controle" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Você tem certeza de que deseja apagar este Grupo?" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Editar configurações" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Salvar Grupo" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Configurações" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} Conjunto de dados" -msgstr[1] "{num} Conjuntos de dados" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Sair" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Conjunto de Dados" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Entrar" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Visualizar {name}" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registrar" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Remover conjunto de dados deste grupo" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Conjuntos de dados" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "O que são grupos?" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Buscar conjunto de dados" -#: 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/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Pesquisar" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Comparar" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Pular para o conteúdo" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "excluído" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Carregar menos" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "Leia mais" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Carregar mais" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Revisão" +#: 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/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Registro de tempo" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administração" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Autor" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Administradores" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Mensagem de Log" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Configuração" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Bem vindo" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Lixo" -#: 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/admin/config.html:16 +#: 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/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Bem-vindo ao CKAN" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Reinicializar" -#: ckan/templates/home/snippets/promoted.html:10 +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Atualizar Configuração" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "Opções de configuração do CKAN" + +#: ckan/templates/admin/config.html:33 +#, python-format 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 " +"

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

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/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Esta é uma seção de destaque" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Confirmar reinicialização" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "Ex.: meio ambiente" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrar o CKAN" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Pesquisar dados" +#: 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/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Etiquetas populares" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Expurgar" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} estatísticas" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "" +"

Expurgar para sempre e irreversivelmente conjuntos de dados " +"excluídos.

" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "conjuntos de dados" +#: 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/home/snippets/stats.html:11 -msgid "datasets" -msgstr "conjuntos de dados" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Clique aqui para saber mais ..." -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organizações" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Baixar recurso" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "grupos" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Não há pré-visualização disponível." -#: ckan/templates/macros/form.html:126 +#: 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 "" -"You can use Markdown formatting here" -msgstr "" -"Você pode usar formatação Markdown aqui" +msgid "No handler defined for data type: %(type)s." +msgstr "Não há tratador definido para o tipo de dados: %(type)s." -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Este campo é obrigatório" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Padrão" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Customizar" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Entrada padrão" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "O formulário contém entradas inválidas:" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Médio" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Campo obrigatório" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Entrada de Largura Média" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://exemplo.com.br/minha-imagem.jpg" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Completo" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL da imagem" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Entrada de Largura Total" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Apagar Envio" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Grande" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Formulário da Organização" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Entrada Grande" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Editar conjuntos de dados" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Prefixar" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Adicionar conjunto de dados" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Entrada Prefixada" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "encontrado para \"{query}\"" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Campo Personalizado (vazio)" -#: 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/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Campo customizado" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Tornar público" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Tornar privado" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Área de texto" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Rascunho" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Selecionar" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Privada" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Fluxo de Atividades" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Essa organização não possui conjuntos de dados associados" +#: 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/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/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Adicionar Um Grupo" -#: 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/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Formulário Grupo" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Adicionar uma Organização" +#: 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/organization/index.html:20 -msgid "Search organizations..." -msgstr "Pesquisar organizações..." +#: 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/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/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:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Gerenciar" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nome de usuário" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Editar Grupo" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "Endereço de e-mail" +#: ckan/templates/group/edit_base.html:23 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/organization/member_new.html:62 -msgid "Update Member" -msgstr "Atualizar Membro" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Histórico" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Adicionar Grupo" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Criar uma Organização" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Buscar grupos..." -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Atualizar organização" +#: 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/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Criar Organização" +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Que tal criar um?" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Adicionar Conjunto de Dados" +#: 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/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Conjuntos de dados na organização: {group}" +#: 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/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/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Adicionar membro" -#: 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/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Usuário Existente" -#: 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. " +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"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" +"Se você quer adicionar um usuário existente, busque pelo nome de usuário " +"dele abaixo." -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "minha-organizacao" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "ou" -#: 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/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Novo Usuário" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -"Tem certeza que deseja apagar esta Organização ? Isso irá apagar todos os " -"conjuntos de dados públicos e privados pertencentes a ela." +"Se você quer convidar um novo usuário, inclua o endereço de email dele." -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Salvar Organização" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Papel" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Visualizar {organization_name}" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/package/base.html:22 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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Excluir" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "O que são conjuntos de dados?" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "O que são papeis?" -#: ckan/templates/package/base_form_page.html:25 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" 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/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:16 -msgid "View dataset" -msgstr "Ver conjunto de dados" +"

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/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Editar metadados" +#: 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/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/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Atualizar Grupo" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Pré-visualização" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Criar Grupo" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Atualiza" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Pesquisar conjuntos de dados..." -#: 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/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Conjuntos de dados no grupo: {group}" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Adicionar ao grupo" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Histórico de Revisões" -#: 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/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Nome" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Atualizar conjunto de dados" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Meu Grupo" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Adicionar dados ao conjunto de dados" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "meu-grupo" -#: 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/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/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "Adicionar recurso" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Você tem certeza de que deseja apagar este Grupo?" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Novo recurso" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Salvar Grupo" -#: 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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Visualizar {name}" -#: 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/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Remover conjunto de dados deste grupo" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Adicionar" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "O que são grupos?" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/group/snippets/helper.html:8 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +" 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 "" -"Esta é uma revisão velha deste conjunto de dados, conforme editada em " -"%(timestamp)s. Ela pode diferir significativamente da revisão atual." +"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/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Enviar para DataStore" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Comparar" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Erro no envio:" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "excluído" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Erro:" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "Leia mais" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "Rastreamento do erro:" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Revisão" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Estado" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Registro de tempo" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Ultima atualização" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Autor" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Nunca" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Mensagem de Log" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Enviar Log" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Bem vindo" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Detalhes" +#: 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/package/resource_data.html:81 -msgid "End of log" -msgstr "Fim do log" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Bem-vindo ao CKAN" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Todos os recursos" +#: 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/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Visualizar recurso" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Esta é uma seção de destaque" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Editar recurso" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Ex.: meio ambiente" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Pesquisar dados" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Visões" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Etiquetas populares" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "Ponto de Acesso à API" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} estatísticas" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Ir para recurso" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "conjuntos de dados" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Baixar" +#: 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/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupos" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Do resumo do conjunto de dados" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Logo do site" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Fonte: %(dataset)s" +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Você pode usar formatação Markdown aqui" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Não há visões criadas para este recurso ainda." +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Este campo é obrigatório" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Não está vendo as visões que esperava?" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Customizar" -#: ckan/templates/package/resource_read.html:121 -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/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "O formulário contém entradas inválidas:" -#: ckan/templates/package/resource_read.html:123 -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/macros/form.html:395 +msgid "Required field" +msgstr "Campo obrigatório" -#: ckan/templates/package/resource_read.html:124 -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/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://exemplo.com.br/minha-imagem.jpg" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"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/macros/form.html:411 +msgid "Image URL" +msgstr "URL da imagem" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Informações Adicionais" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Apagar Envio" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Campo" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Formulário da Organização" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Valor" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Editar conjuntos de dados" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "Desconhecido" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Adicionar conjunto de dados" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Criado" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "encontrado para \"{query}\"" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Formato" +#: 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/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licença" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Tornar público" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Nova visão" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Tornar privado" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "O recurso não tem visões" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Rascunho" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Adicionar novo recurso" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Privada" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

Esse conjunto de dados não possui dados, por que não adicionar alguns?

" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Essa organização não possui conjuntos de dados associados" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: 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/package/search.html:53 -msgid "API Docs" -msgstr "Documentação da API" +#: 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/package/search.html:55 -msgid "full {format} dump" -msgstr "dum completo em {format}" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Adicionar uma Organização" -#: 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/organization/index.html:20 +msgid "Search organizations..." +msgstr "Pesquisar organizações..." -#: 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/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/package/view_edit_base.html:9 -msgid "All views" -msgstr "Todas as visões" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nome de usuário" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "Ver visão" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Endereço de e-mail" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Ver pré-visualização" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Atualizar Membro" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Informações Adicionais" +#: ckan/templates/organization/member_new.html:81 +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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Fonte" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} membro" +msgstr[1] "{count} membros" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Criar uma Organização" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Versão" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Atualizar organização" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Estado" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Criar Organização" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Última Atualização" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Adicionar Conjunto de Dados" -#: 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/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Conjuntos de dados na organização: {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "Criar uma nova organização" +#: 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/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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 "" -"Não há organizações para as quais você possa atribuir este conjunto de " -"dados." +"

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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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 "" -"Peça a um administrador do sistema para criar uma organização antes que você" -" possa continuar." +"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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "API de dados" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Minha Organização" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Título" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "minha-organizacao" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "ex.: Um título descritivo" +#: 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/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "Ex.: meu-conjunto-de-dados" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Tem certeza que deseja apagar esta Organização ? Isso irá apagar todos os " +"conjuntos de dados públicos e privados pertencentes a ela." -#: 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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Salvar Organização" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "ex.: economia, saúde mental, governo" +#: 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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -" Definições de licenças e informações adicionais podem ser encontradas em opendefinition.org " +"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/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organização" +#: 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/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Sem organização" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Visibilidade" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Ver conjunto de dados" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Pública" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Editar metadados" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Ativo" +#: 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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Pré-visualização" -#: 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/edit_view.html:21 +msgid "Update" +msgstr "Atualiza" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Próximo: Adicionar Dados" +#: 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/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Adicionar ao grupo" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Atualizar conjunto de dados" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "E-mail do autor" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Adicionar dados ao conjunto de dados" -#: 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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Adicionar novo recurso" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "E-mail do Mantenedor" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Atualizar Recurso" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Novo recurso" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" -msgstr "Dados" +#: 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:81 +msgid "Add" +msgstr "Adicionar" + +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "" +"Esta é uma revisão velha deste conjunto de dados, conforme editada em " +"%(timestamp)s. Ela pode diferir significativamente da revisão atual." -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "http://exemplo.com.br/dados-externos.csv" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Todos os recursos" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "ex.: Preços do Ouro em Janeiro de 2011" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Visualizar recurso" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Algumas notas sobre os dados" +#: 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/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "ex.: CSV, XML ou JSON" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Visões" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "Isto será estimado automaticamente. Deixe em branco se quiser" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "Ponto de Acesso à API" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "ex.: 2012-06-05" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Ir para recurso" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Tamanho do arquivo" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Baixar" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "ex.: 1024" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME Type" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Do resumo do conjunto de dados" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "ex.: application/json" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Fonte: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Você tem certeza de que deseja excluir esse recurso?" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "Não há visões criadas para este recurso ainda." -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Anterior" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Não está vendo as visões que esperava?" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Salvar & adicionar outro" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Finalizar" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "O que é um recurso?" +#: ckan/templates/package/resource_read.html:121 +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/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:122 +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 "" -"Um recurso pode ser um arquivo ou um link para um arquivo que contenha dados" -" úteis" +"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/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Explorar" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Informações Adicionais" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Mais informações" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Campo" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Embutir" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valor" -#: ckan/templates/package/snippets/resource_view.html:24 -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/resource_read.html:154 +msgid "Data last updated" +msgstr "Dado atualizado pela última vez" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Incorporar visão de recurso" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "Desconhecido" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" -"Você pode copiar e colar o código para embutir em um CMS ou software de blog" -" que suporte HTML puro" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "Metadado atualizado pela última vez" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Largura" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Criado" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Altura" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Formato" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Código" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licença" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Pré-visualização do Recurso" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nova visão" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Dados e recursos" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "O recurso não tem visões" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Este conjunto de dados não tem dados" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Adicionar novo recurso" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format -msgid "Read dataset as of %s" -msgstr "Ler conjunto de dados como %s" +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/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Criar um conjunto de dados »" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: 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/search.html:53 +msgid "API Docs" +msgstr "Documentação da API" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "ex.: Minha Visão" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "dum completo em {format}" -#: 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/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/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Adicionar Filtro" +#: 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/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Remover Filtro" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Todas as visões" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filtros" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Ver visão" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "O que é uma visão?" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Ver pré-visualização" + +#: 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/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/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/revision/diff.html:6 -msgid "Differences" -msgstr "Diferenças" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versão" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Diferenças de revisões" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Estado" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Diferença" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Última Atualização" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Sem diferenças" +#: 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/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Histórico de Revisões" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Criar uma nova organização" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Revisões" +#: 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/revision/read.html:30 -msgid "Undelete" -msgstr "Recuperar" +#: 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/revision/read.html:64 -msgid "Changes" -msgstr "Alterações" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Título" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Etiquetas do conjunto de dados" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "ex.: Um título descritivo" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entidade" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "Ex.: meu-conjunto-de-dados" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Novo item de atividade" +#: 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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Embutir Visualizador de 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/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Embuta esta visão copiando isto para a sua página na web:" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +" Definições de licenças e informações adicionais podem ser encontradas em opendefinition.org " -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Escolha largura e altura em pixel:" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organização" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Largura:" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Sem organização" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Altura:" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Visibilidade" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "status do Datapusher: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Pública" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "URL de retorno Trackback" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Ativo" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Mostrar mais {facet_type}" +#: 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/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Mostrar somente {facet_type} popular" +#: 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/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Não há {facet_type} que correspondam a essa busca" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Próximo: Adicionar Dados" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Início" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Idioma" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Ir" +#: 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/snippets/license.html:14 -msgid "No License Provided" -msgstr "Nenhuma Licença Fornecida" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "E-mail do autor" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "" -"Este conjunto de dados satisfaz a Definição de Aberto - Open Definition." +#: 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/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Não há descrição para essa organização" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "E-mail do Mantenedor" -#: 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/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Atualizar Recurso" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Enviar" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Dados" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Ordenar por" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://exemplo.com.br/dados-externos.csv" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filtrar Resultados" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "ex.: Preços do Ouro em Janeiro de 2011" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Por favor tente uma nova pesquisa.

" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Algumas notas sobre os dados" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "" -"

Houve um erro ao pesquisar. Por " -"favor tente novamente.

" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "ex.: CSV, XML ou JSON" -#: 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/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Isto será estimado automaticamente. Deixe em branco se quiser" -#: 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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "ex.: 2012-06-05" -#: 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/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Tamanho do arquivo" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Não foram encontrados conjuntos de dados" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "ex.: 1024" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME Type" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Não foram encontrados grupos para \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "ex.: application/json" -#: 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/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Você tem certeza de que deseja excluir esse recurso?" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Não foram encontrados grupos" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Anterior" -#: 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/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Salvar & adicionar outro" -#: 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/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Finalizar" -#: 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/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "O que é um recurso?" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Não foram encontradas organizações" +#: 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/snippets/social.html:5 -msgid "Social" -msgstr "Social" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Explorar" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Assinar" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Mais informações" -#: 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:82 -msgid "Email" -msgstr "E-mail" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Embutir" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_view.html:24 +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/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Edições" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Incorporar visão de recurso" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Buscar Etiquetas" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Você pode copiar e colar o código para embutir em um CMS ou software de blog" +" que suporte HTML puro" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Feed de notícias" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Largura" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Meus Conjuntos de Dados" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Altura" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Minhas Organizações" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Código" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Meus grupos" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Pré-visualização do Recurso" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Atividade de itens que estou seguindo" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Dados e recursos" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Você não criou nenhum conjunto de dados." +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Este conjunto de dados não tem dados" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Criar um agora?" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Ler conjunto de dados como %s" -#: 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/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Criar um conjunto de dados »" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Você não é membro de nenhuma organização." +#: 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/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/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "ex.: Minha Visão" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Informações da Conta" +#: 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/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/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Remover Filtro" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Mudar detalhes" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "O que é uma visão?" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Nome completo" +#: 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/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "ex.: José da Silva" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Diferenças" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "ex.: jose@exemplo.com.br" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Diferenças de revisões" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Um pouco de informações sobre você" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Diferença" -#: 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/revision/diff.html:54 +msgid "No Differences" +msgstr "Sem diferenças" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Mudar a senha" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Histórico de Revisões" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "Senha do Administrador do Sistema" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Revisões" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Senha" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Recuperar" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Confirme a senha" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Alterações" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Tem certeza que quer apagar este Usuário ?" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Etiquetas do conjunto de dados" -#: ckan/templates/user/edit_user_form.html:51 -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/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entidade" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Gerar Nova Chave para API" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Novo item de atividade" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Atualizar Perfil" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Embutir Visualizador de Dados" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Todos os usuários" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Embuta esta visão copiando isto para a sua página na web:" -#: 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/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Escolha largura e altura em pixel:" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Precisa de uma conta?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Largura:" -#: 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/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Altura:" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Criar uma Conta" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "status do Datapusher: {status}." -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Esqueceu sua senha ?" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "URL de retorno Trackback" -#: 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/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Mostrar mais {facet_type}" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Esqueceu sua senha?" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Mostrar somente {facet_type} popular" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Desconectado" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Não há {facet_type} que correspondam a essa busca" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Você saiu. " +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Início" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Você já está autenticado como {user}." +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Idioma" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Sair" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Ir" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Lembre me" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Nenhuma Licença Fornecida" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Você já está autenticado" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "" +"Este conjunto de dados satisfaz a Definição de Aberto - Open Definition." -#: ckan/templates/user/logout_first.html:24 -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/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Não há descrição para essa organização" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Sair agora" +#: 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/user/new.html:6 -msgid "Registration" -msgstr "Registro" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Enviar" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Registrar uma nova Conta" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Ordenar por" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Por que Cadastrar-se ?" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filtrar Resultados" -#: 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/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Por favor tente uma nova pesquisa.

" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "nome de usuário" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" +"

Houve um erro ao pesquisar. Por " +"favor tente novamente.

" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Nome Completo" +#: 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/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Registar Conta" +#: 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/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Redefinir sua senha" +#: 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/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Redefinir Senha" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Não foram encontrados conjuntos de dados" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Atualizar Senha" +#: 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/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Como isso funciona?" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Não foram encontrados grupos para \"{query}\"" -#: ckan/templates/user/perform_reset.html:40 -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/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/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Usuário não criou nenhum conjunto de dados" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Não foram encontrados grupos" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Você não descreveu quem você é." +#: 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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Este usuário não tem bio." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: 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/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Isso significa que você só pode ver isso" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Não foram encontradas organizações" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Membro desde" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "Chave da API" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Assinar" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Redefinir sua senha" +#: 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:82 +msgid "Email" +msgstr "E-mail" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Redefinir senha" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Solicitação reiniciada" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Edições" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Entre seu nome de usuário para que um email seja enviado com um link para " -"restaurar sua senha" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Buscar Etiquetas" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Atividade de:" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Feed de notícias" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Lista de busca..." +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Meus Conjuntos de Dados" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Você não está seguindo nada" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Minhas Organizações" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Sem seguidores" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Meus grupos" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Buscar Usuários" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Atividade de itens que estou seguindo" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Completo" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Você não criou nenhum conjunto de dados." -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Pendente" +#: 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:16 +msgid "Create one now?" +msgstr "Criar um agora?" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Submetendo" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Você não é membro de nenhum grupo." -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Não inserido ainda" +#: 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." -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "recurso DataStore não encontrado" +#: 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" -#: ckanext/datastore/db.py:663 +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informações da Conta" + +#: ckan/templates/user/edit.html:19 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -"Os dados são inválidos (por exemplo: um valor numérico está fora dos limites" -" ou foi inserido num campo de texto)." - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -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}" +"Seu perfil permite que outros usuários do CKAN saibam quem você é o que você" +" faz." -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Conjuntos de dados por página" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Mudar detalhes" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Configuração teste" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Nome completo" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Campo Personalizado Crescente" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "ex.: José da Silva" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Campo Personalizado Decrescente" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "ex.: jose@exemplo.com.br" -#: 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" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Um pouco de informações sobre você" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "texto personalizado" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Assine o recebimento de notificações por e-mail" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Código do país" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Mudar a senha" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "texto personalizado de recurso" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "Senha do Administrador do Sistema" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "Este é um texto não traduzido" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Senha" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Este grupo está sem descrição" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Confirme a senha" -#: ckanext/example_theme/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/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Tem certeza que quer apagar este Usuário ?" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "Url da imagem" +#: ckan/templates/user/edit_user_form.html:50 +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?" -#: 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)" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Gerar Nova Chave para API" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Explorador de Dados" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Atualizar Perfil" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Tabela" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Todos os usuários" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Gráfico" +#: 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" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Mapa" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Precisa de uma conta?" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "erro ao carregar visualização" +#: 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." -#: 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" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Criar uma Conta" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "ex.: 0" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Esqueceu sua senha ?" -#: 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" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "ex.: 100" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Esqueceu sua senha?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Tipo de gráfico" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Desconectado" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Grupo (Eixo 1)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Você saiu. " -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Série (Eixo 2)" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Você já está autenticado como {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Tipo de campo" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Sair" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Campo de latitude" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Lembre me" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Campo de longitude" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Você já está autenticado" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "Campo GeoJSON" +#: ckan/templates/user/logout_first.html:24 +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" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Aproximar automaticamente de pontos de interesse" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Sair agora" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Marcadores de algomeração" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registro" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Número total de Conjuntos de Dados" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registrar uma nova Conta" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Data" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Por que Cadastrar-se ?" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Total de conjuntos de dados" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Crie conjuntos de dados, grupos e outras coisas interessantes" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Revisões de Conjuntos de Dados por semana" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "nome de usuário" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Todas as revisões do conjunto de dados" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nome Completo" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Novos conjuntos de dados" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Registar Conta" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Conjuntos de Dados mais bem avaliados" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Redefinir sua senha" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Média de avaliação" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Redefinir Senha" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Número de avaliações" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Atualizar Senha" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Nenhuma avaliação" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Como isso funciona?" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Conjuntos de Dados Mais Editados" +#: ckan/templates/user/perform_reset.html:40 +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" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Número de edições" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Usuário não criou nenhum conjunto de dados" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Sem conjuntos de dados editados" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Você não descreveu quem você é." -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Maiores Grupos" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Este usuário não tem bio." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Número de conjuntos de dados" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Sem grupos" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Isso significa que você só pode ver isso" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Principais Etiquetas" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Membro desde" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Nome da etiqueta" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "Chave da API" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Número de conjuntos de dados" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Redefinir sua senha" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "Usuários que Mais Criaram Conjuntos de Dados" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Redefinir senha" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Estatísticas" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Solicitação reiniciada" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Número total de Conjuntos de Dados" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "" +"Entre seu nome de usuário para que um email seja enviado com um link para " +"restaurar sua senha" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Texto" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Atividade de:" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" -msgstr "Ocorreu um erro: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Lista de busca..." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Website" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Você não está seguindo nada" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "Url de página Web" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Sem seguidores" -#: 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/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Buscar Usuários" diff --git a/ckan/i18n/pt_PT/LC_MESSAGES/ckan.mo b/ckan/i18n/pt_PT/LC_MESSAGES/ckan.mo index c08670294fc..a2ce2daf697 100644 Binary files a/ckan/i18n/pt_PT/LC_MESSAGES/ckan.mo and b/ckan/i18n/pt_PT/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po b/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po index 6bac71d8828..f5a14e06fac 100644 --- a/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po +++ b/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po @@ -1,4616 +1,4712 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Não foi encontrada a função 'Autorização': %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Completo " -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administração" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pendente" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Editor" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Submeter" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Membro" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Erro" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Precisa de ser o administrador do sistema para administrar" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Ainda não foi enviado" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Título da Página" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Recurso não encontrado" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Estilo" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Não está autorizado a ver esta página" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Subtítulo da Página" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Carregar pata o DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Logótipo da página" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Erro de envio:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Erro:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Texto da página Sobre" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Texto Introdutório" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Estado" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Texto na página principal" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Última Atualização" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Personalizar CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nunca" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Personalizar CSS inserido no cabeçalho da página" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Registo de envios" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Página Principal" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detalhes" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Terminar sessão" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +msgid "format: must be one of %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" +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "O recurso DataStore não foi encontrado" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Purgar completo" +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" +"Os dados eram inválidos (por exemplo: um valor numérico está fora do " +"intervalo ou foi inserido num campo de texto)." -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Ação não implementada." +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Recurso \"{0}\" não foi encontrado." -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Não está autorizado a ver esta página" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Utilizador {0} não está autorizado a atualizar o recurso {1}" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Acesso negado" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Dados API" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Não encontrado" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Pedido errado" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Mais informações sobre o API principal dos dados CKAN e a documentação sobre o " +"armazenamento de dados.

" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Nome da ação não conhecido: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Pontos de acesso" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Erro JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Pedido de dados errado: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Criar" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Não é possível listar entidades do tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Atualizar / Inserir" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Não é possível ler entidades do tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Query" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Não é possível criar novas entidades do tipo: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Query (via SQL)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Não é possível adicionar pacote de dados ao índice de pesquisa " +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Pesquisar" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Não é possível atualizar entidades do tipo: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Query exemplo (os 5 primeiros resultados)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Não é possível atualizar o índice de pesquisa" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Query exemplo (resultados que contenham 'jones')" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Não é possível eliminar entidades do tipo: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Query exemplo (via instrução SQL)" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Sem revisão especificada " +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Exemplo: Javascript" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Não existe revisão com id: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Um pedido AJAX (JSONP) à API dos Dados usando jQuery." -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Falta o termo de pesquisa ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Exemplo: Python" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Não é possível ler os parâmetros: %r" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Opção de pesquisa errada: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Registo desconhecido: %s" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Descrição" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Valor qjson mal gerado: %r" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Guardar" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" msgstr "" -"A solicitação de parâmetros ao dicionário deve ser na forma de código json." -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Grupo não encontrado" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organização não encontrada" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Tipo de grupo incorreto" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "A carregar ..." -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organizações" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Dados API" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Grupos" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tabela " -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Etiquetas" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formatos" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licenças" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Não está autorizado a realizar atualizações. " +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Conjuntos de dados por página" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Não está autorizado a criar um grupo" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testar Conflitos " -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Utilizador %r não está autorizado a editar %s" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevância" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Erro de Integridade" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Utilizador %r não está autorizado a editar %s autorizações" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Não está autorizado a eliminar grupo %s" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Última Modificação" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "A organização foi apagada." +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Campo personalizado Ascendente" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "O grupo foi apagado." +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Campo personalizado Descendente" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s foi eliminado." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Popular" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Não está autorizado a adicionar o grupo %s" +#: 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" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Não está autorizado a apagar os membros do grupo %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "personalizar texto" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "O membro do grupo foi apagado." +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Código do país" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Selecionar duas revisões antes de efetuar a comparação." +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "personalizar o texto do recurso" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Histórico Revisão Grupo CKAN" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Alterações recentes ao grupo CKAN:" +#: 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/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Mensagem de registo: " +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Começou a seguir {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 "0 Conjuntos de dados" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Já não está a seguir {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 "" +"A ferramenta de pré-visualização dos dados CKAN é munida de poderosas " +"funcionalidades." -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Não está autorizado a visualizar os seguidores %s" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Seguidores" -#: ckan/controllers/home.py:36 -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/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Recursos" -#: ckan/controllers/home.py:81 -#, 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/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Imagem" -#: ckan/controllers/home.py:83 -#, 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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Imagem URL" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: 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)" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "O parâmetro \"{parameter_name}\" não é um inteiro" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Explorador de dados" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Conjunto de dados não encontrado" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Gráfico" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Formato de revisão inválido: %r" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Mapa" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -"Visualização de conjunto de dados {package_type} no formato {format} não é " -"suportado (template {file} não encontrado)." - -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Não é autorizado a ler o pacote %s" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Histórico de Revisões de Conjuntos de dados CKAN" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Alterações recentes ao conjunto de dados CKAN:" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Não está autorizado a criar um pacote" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Não está autorizado a editar este recurso" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Recurso não encontrado" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filtros" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Não está autorizado a atualizar conjuntos de dados" +#: 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" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "O conjunto de dados {id} não foi possível de ser encontrado." +#: 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" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Deve adicionar pelo menos um recurso de dados" +#: 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" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Erro" +#: 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" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Não está autorizado a criar um recurso" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Gráfico tipo" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Não está autorizado a criar um recursos para este pacote" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupo (Axis 1)" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Não é possível adicionar pacote ao índice de pesquisa. " +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Séries (Eixo 2)" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Não é possível atualizar o índice de pesquisa." +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Campo Tipo" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "O conjunto de dados foi eliminado. " +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Campo Latitude" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Não está autorizado a eliminar o pacote %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Campo Longitude" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "O recurso foi apagado." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Campo GeoJSON" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Não está autorizado a eliminar o recurso %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Zoom automático às entidades" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Vista do recurso não encontrada" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Grupo de marcadores " -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Dados do recurso não encontrados" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Número total de conjuntos de dados" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Nenhuma transferência disponível " +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Data" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Não está autorizado a ler o conjunto de dados %s" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Total de conjuntos de dados" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Não está autorizado a ler o recurso %s " +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "As revisões, por semana, do conjunto de dados" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Não está autorizado a editar o recurso" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Todas as revisões do conjunto de dados" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Vista não encontrada" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Novos conjuntos de dados" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Tipo de Vista Não encontrada " +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Os conjuntos de dados mais votados" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Dados da vista do recurso errados" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Média das Classificações" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Vista de recurso não fornecida" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Número de classificações" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Não foi definida nenhuma pré-visualização." +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Sem classificação " -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Histórico Revisão Repositório CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Os conjuntos de dados mais editados" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Alterações recentes no repositorio CKAN." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Conjunto de Dados" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Conjuntos de dados afetados: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Número de edições " -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Revisão atualizada" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Não existem conjuntos de dados editados" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Outro" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Os maiores grupos" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Etiqueta não encontrada" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Grupo" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Utilizador não encontrado" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Número de conjuntos de dados" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Não está autorizado a registar-se como um utilizador." +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Não existem Grupos " -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Não está autorizado a criar um utilizador." +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "As principais Etiquetas " -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Não está autorizado a apagar o utilizador com a id. \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Nome da Etiqueta" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Nenhum utilizador especificado" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Número de conjuntos de dados" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Não está autorizado a editar o utilizador %s" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Perfil atualizado" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Utilizador" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Não está autorizado a criar o utilizador %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Menu Estatística " -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "'Captcha' errada. Por favor, tente de novo." +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Número total de conjuntos de dados " -#: ckan/controllers/user.py:265 -#, 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\"" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Texto" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Não está autorizado a editar um utilizador." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Página de internet" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "Utilizador %s não está autorizado a editar %s" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL da página de internet" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Palavra-passe inserida está incorreta" +#: 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/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Palavra-passe antiga " +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "O seu navegador não suporta iframes." -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "Palavra-passe incorreta" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Não foi encontrada a função 'Autorização': %s" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Início de sessão falhou. Nome de utilizador ou palavra-passe errada." +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administração" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Não está autorizado a solicitar a redefinição da palavra-passe." +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Editor" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" coincide com vários utilizadores " +#: ckan/authz.py:202 +msgid "Member" +msgstr "Membro" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Não existe tal utilizador: %s" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Precisa de ser o administrador do sistema para administrar" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "" -"Por favor, verifique a sua caixa de correio para o código de reposição." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Título da Página" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Não foi possível enviar a hiperligação de redefinição: %s" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Estilo" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Não está autorizado para redefinir a palavra-passe." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Subtítulo da Página" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Chave de redefinição inválida. Por favor, tente novamente. " +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Logótipo da página" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "A sua palavra-passe foi redefinida." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "A sua palavra-passe deve ter 4 ou mais carateres." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Texto da página Sobre" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "As palavras-chave inseridas são diferentes." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Texto Introdutório" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Deve indicar uma palavra-chave" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Texto na página principal" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Seguir item não encontrado" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Personalizar CSS" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} não encontrado" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Personalizar CSS inserido no cabeçalho da página" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Tudo" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Página Principal" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Valor em falta" +#: ckan/controllers/admin.py:161 +#, 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/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Não é permitido redirecionar para página externa. " +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problema ao purgar a revisão %s: %s" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "O {actor} adicionou a etiqueta {tag} ao conjunto de dados {dataset}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Purgar completo" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "O {actor} atualizou o grupo {group}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Ação não implementada." -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "O {actor} atualizou a organização {organization}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Acesso negado" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "O {actor} atualizou o conjunto de dados {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Não encontrado" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" -"O {actor} alterou o campo extra {extra} do conjunto de dados {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Pedido errado" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" -"O {actor} atualizou o recurso {resource} no conjunto de dados {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Nome da ação não conhecido: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "O {actor} atualizou o seu perfil" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Erro JSON: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "O {actor} eliminou o grupo {group}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Pedido de dados errado: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "O {actor} eliminou a organização {organization}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Não é possível listar entidades do tipo: %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "O {actor} eliminou o conjunto de dados {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Não é possível ler entidades do tipo: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "O {actor} apagou o campo extra {extra} do conjunto de dados {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Não é possível criar novas entidades do tipo: %s %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" -"O {actor} eliminou o recurso {resource} do conjunto de dados {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Não é possível adicionar pacote de dados ao índice de pesquisa " -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "O {actor} criou o grupo {group}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Não é possível atualizar entidades do tipo: %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "O {actor} criou a organização {organization}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Não é possível atualizar o índice de pesquisa" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "O {actor} criou o conjunto de dados {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Não é possível eliminar entidades do tipo: %s %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" -"O {actor} adicionou o campo extra {extra} ao conjunto de dados {dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Sem revisão especificada " -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" -"O {actor} adicionou o recurso {resource} ao conjunto de dados {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Não existe revisão com id: %s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} subscreveu " +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Falta o termo de pesquisa ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "O {actor} removeu a etiqueta {tag} do conjunto de dados {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Não é possível ler os parâmetros: %r" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "O {actor} começou a seguir {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Opção de pesquisa errada: %s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "O {actor} começou a seguir {user}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Registo desconhecido: %s" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "O {actor} começou a seguir {group}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Valor qjson mal gerado: %r" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Visualização" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" +"A solicitação de parâmetros ao dicionário deve ser na forma de código json." -#: 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/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Grupo não encontrado" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Janeiro" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organização não encontrada" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Fevereiro" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Tipo de grupo incorreto" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Março" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organizações" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Abril" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Grupos" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Maio" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Etiquetas" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Junho" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formatos" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Julho" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licenças" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Agosto" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Utilizador %r não está autorizado a editar %s" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Setembro" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Não está autorizado a realizar atualizações. " -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Outubro" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Não está autorizado a criar um grupo" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Novembro" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Erro de Integridade" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Dezembro" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Utilizador %r não está autorizado a editar %s autorizações" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Agora" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Não está autorizado a eliminar grupo %s" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "há {mins} minuto" -msgstr[1] "há {mins} minutos" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "A organização foi apagada." -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "há {hours} hora" -msgstr[1] "há {hours} horas" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "O grupo foi apagado." -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "há {days} dia" -msgstr[1] "há {days} dias" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s foi eliminado." -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "há {months} mês" -msgstr[1] "há {months} meses" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "Há mais de um {years} ano" -msgstr[1] "Há mais de {years} anos" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Não está autorizado a adicionar o grupo %s" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Não está autorizado a apagar os membros do grupo %s" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{day} de {month}, {year}" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "O membro do grupo foi apagado." -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Selecionar duas revisões antes de efetuar a comparação." -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Histórico Revisão Grupo CKAN" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Alterações recentes ao grupo CKAN:" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Mensagem de registo: " -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Começou a seguir {0}" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Já não está a seguir {0}" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Não está autorizado a visualizar os seguidores %s" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: 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/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/home.py:73 +#, 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/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "O parâmetro \"{parameter_name}\" não é um inteiro" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Conjunto de dados não encontrado" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Formato de revisão inválido: %r" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Atualize o seu avatar em gravatar.com" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Desconhecido" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Não é autorizado a ler o pacote %s" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Recurso sem nome" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Histórico de Revisões de Conjuntos de dados CKAN" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Foi criado um novo conjunto de dados." +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Alterações recentes ao conjunto de dados CKAN:" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Recursos editados." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Não está autorizado a criar um pacote" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Configurações editadas." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Não está autorizado a editar este recurso" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} visualização" -msgstr[1] "{number} visualizações" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Não está autorizado a atualizar conjuntos de dados" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} visualização recente" -msgstr[1] "{number} visualizações recentes" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "O conjunto de dados {id} não foi possível de ser encontrado." -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Deve adicionar pelo menos um recurso de dados" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Nenhum endereço de email disponível. " +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Não está autorizado a criar um recurso" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organização" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Não está autorizado a criar um recursos para este pacote" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "grupo" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Não é possível adicionar pacote ao índice de pesquisa. " -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Valor em falta" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Não é possível atualizar o índice de pesquisa." -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "O conjunto de dados foi eliminado. " + +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "Campo de entrada %(name)s não esperado. " +msgid "Unauthorized to delete package %s" +msgstr "Não está autorizado a eliminar o pacote %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Por favor, insira um número de valor inteiro." +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "O recurso foi apagado." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Recursos" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Não está autorizado a eliminar o recurso %s" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Pacote de recurso(s) inválido" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Vista do recurso não encontrada" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Extras" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Dados do recurso não encontrados" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Vocabulário de etiquetas \"%s\" não existe" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Nenhuma transferência disponível " -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Utilizador" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Não está autorizado a ler o conjunto de dados %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Conjunto de Dados" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Não está autorizado a ler o recurso %s " -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Grupo" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Não está autorizado a editar o recurso" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Não foi possível analisar como um JSON válido" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Vista não encontrada" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Tipo de Vista Não encontrada " -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "A organização não existe" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Dados da vista do recurso errados" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Não pode adicionar um conjunto de dados nesta organização" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Vista de recurso não fornecida" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Inteiro inválido" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Não foi definida nenhuma pré-visualização." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Deve ser um número natural" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Histórico Revisão Repositório CKAN" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Deverá ser um inteiro positivo" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Alterações recentes no repositorio CKAN." -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Formato de data incorreto" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Conjuntos de dados afetados: %s.\n" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Não são permitidos links na mensagem de registo. " +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Revisão atualizada" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "O ID do conjunto de dados já existe" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Outro" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Recurso" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Etiqueta não encontrada" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "O nome do grupo ou a Id. não existe." +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Não está autorizado a registar-se como um utilizador." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Tipo de Atividade" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Não está autorizado a criar um utilizador." -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Os nomes devem ser em formato texto" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Não está autorizado a apagar o utilizador com a id. \"{user_id}\"." -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Esse nome não pode ser utilizado" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Nenhum utilizador especificado" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Must be at least %s characters long" -msgstr "Devem ter pelo menos %s caracteres" +msgid "Unauthorized to edit user %s" +msgstr "Não está autorizado a editar o utilizador %s" + +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Utilizador não encontrado" + +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Perfil atualizado" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "O nome deve ter no máximo %i caracteres" +msgid "Unauthorized to create user %s" +msgstr "Não está autorizado a criar o utilizador %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "'Captcha' errada. Por favor, tente de novo." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Deverão ser, unicamente, carateres alfanuméricos minúsculos (ascii) e os " -"símbolos: - _ ." +"O utilizador \"%s\" já está registado, porém ainda está com a sessão " +"iniciada como \"%s\"" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "O URL já está a ser utilizado." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Não está autorizado a editar um utilizador." -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "O tamanho do nome \"%s\" é menor que o mínimo permitido %s" +msgid "User %s not authorized to edit %s" +msgstr "Utilizador %s não está autorizado a editar %s" -#: ckan/logic/validators.py:369 -#, 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/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Palavra-passe inserida está incorreta" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "A versão deve ter no máximo %i caracteres" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Palavra-passe antiga " -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Chave duplicada \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "Palavra-passe incorreta" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "O nome do grupo já existe na base de dados" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Início de sessão falhou. Nome de utilizador ou palavra-passe errada." -#: ckan/logic/validators.py:415 -#, 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/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Não está autorizado a solicitar a redefinição da palavra-passe." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "O tamanho da etiqueta \"%s\" é maior que o máximo permitido %i" +msgid "\"%s\" matched several users" +msgstr "\"%s\" coincide com vários utilizadores " -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "A etiqueta \"%s\" deve ser de carateres alfanuméricos ou símbolos: - _ ." +msgid "No such user: %s" +msgstr "Não existe tal utilizador: %s" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "A etiqueta \"%s\" não deve ser em maiúsculas" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "" +"Por favor, verifique a sua caixa de correio para o código de reposição." -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "O nome do utilizador deve ser em formato texto" +#: ckan/controllers/user.py:503 +#, python-format +msgid "Could not send reset link: %s" +msgstr "Não foi possível enviar a hiperligação de redefinição: %s" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Esse nome de utilizador não está disponível." +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Não está autorizado para redefinir a palavra-passe." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Por favor, insira ambas as palavras-chave" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Chave de redefinição inválida. Por favor, tente novamente. " -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Palavras-passe devem ser em formato texto" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "A sua palavra-passe foi redefinida." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "A sua palavra-passe deve ter 4 ou mais carateres" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "A sua palavra-passe deve ter 4 ou mais carateres." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "As palavras-passe inseridas são diferentes." +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "As palavras-chave inseridas são diferentes." -#: ckan/logic/validators.py:610 -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/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Deve indicar uma palavra-chave" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "O nome deve conter pelo menos %s caracteres" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Seguir item não encontrado" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Esse nome de vocabulário já está em uso." +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} não encontrado" -#: ckan/logic/validators.py:633 -#, 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/controllers/user.py:654 +msgid "Everything" +msgstr "Tudo" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Vocabulário de etiquetas não encontrado." +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Valor em falta" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "A etiqueta %s não pertence ao vocabulário %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Não é permitido redirecionar para página externa. " -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Nenhum nome de etiqueta" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "O {actor} adicionou a etiqueta {tag} ao conjunto de dados {dataset}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "A etiqueta %s já pertence ao vocabulário %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "O {actor} atualizou o grupo {group}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Por favor, forneça um URL válido." +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "O {actor} atualizou a organização {organization}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "A função não existe." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "O {actor} atualizou o conjunto de dados {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Conjuntos de dados sem organização não podem ser privados. " +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "" +"O {actor} alterou o campo extra {extra} do conjunto de dados {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Não é uma lista." +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" +"O {actor} atualizou o recurso {resource} no conjunto de dados {dataset}" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Não é um formato texto" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "O {actor} atualizou o seu perfil" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Este superior iria criar um ciclo na hierarquia" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "O {actor} eliminou o grupo {group}" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" e \"filter_values\" devem ter o mesmo comprimento." +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "O {actor} eliminou a organização {organization}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" é solicitado quando \"filter_values\" é preenchido" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "O {actor} eliminou o conjunto de dados {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" é solicitado quando \"filter_fields\" é preenchido" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "O {actor} apagou o campo extra {extra} do conjunto de dados {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Há um campo com o mesmo nome. " +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" +"O {actor} eliminou o recurso {resource} do conjunto de dados {dataset}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Cria o objeto %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "O {actor} criou o grupo {group}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Criar a relação do pacote: %s %s %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "O {actor} criou a organização {organization}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Criar objeto membro %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "O {actor} criou o conjunto de dados {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "A tentar criar uma organização como um grupo" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "" +"O {actor} adicionou o campo extra {extra} ao conjunto de dados {dataset}" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "Deverá fornecer um pacote ID ou um nome (parâmetro \"pacote\")." +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" +"O {actor} adicionou o recurso {resource} ao conjunto de dados {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Deverá fornecer uma classificação (parâmetro \"classificação\")." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} subscreveu " -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "A classificação deverá ser um valor inteiro. " +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "O {actor} removeu a etiqueta {tag} do conjunto de dados {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "A classificação deverá ser entre %i e %i." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "O {actor} começou a seguir {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "O {actor} começou a seguir {user}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Precisa de iniciar a sessão para poder seguir utilizadores " +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "O {actor} começou a seguir {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Não pode seguir-se a si próprio" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Visualização" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Já está a seguir {0}" +#: 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/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -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/lib/formatters.py:19 +msgid "January" +msgstr "Janeiro" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Utilizador {username} não existe." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Fevereiro" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "É necessário ter a sessão iniciada para poder seguir um grupo." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Março" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Abril" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Eliminar pacote: %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Maio" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Eliminar %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Junho" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Eliminar membro: %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Julho" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "Os dados não têm ID" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Agosto" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Não foi possível encontrar o vocabulário \"%s\"" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Setembro" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Não foi possivel encontrar a etiqueta \"%s\"" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Outubro" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -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/lib/formatters.py:59 +msgid "November" +msgstr "Novembro" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Não está a seguir {0}." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Dezembro" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "O recurso não foi encontrado." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Agora" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Não especificou o parâmetro \"query\"" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "há {mins} minuto" +msgstr[1] "há {mins} minutos" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Deverá ser : par(es)" - -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "O campo \"{field}\" não é reconhecido no recurso de pesquisa." +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "há {hours} hora" +msgstr[1] "há {hours} horas" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "O pacote não foi encontrado." +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "há {days} dia" +msgstr[1] "há {days} dias" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Atualizar objeto. %s" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "há {months} mês" +msgstr[1] "há {months} meses" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Atualizar a relação do pacote: %s %s %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "Há mais de um {years} ano" +msgstr[1] "Há mais de {years} anos" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus não encontrado." +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "A organização não foi encontrada." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{day} de {month}, {year}" -#: 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/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Utilizador %s não está autorizado a editar estes grupos" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: 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/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: 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/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: 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/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: 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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Não está autorizado a criar utilizadores" +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "O grupo não foi encontrado." +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "É necessária uma chave API válida para criar um pacote" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "É necessária uma chave API válida para criar um grupo " +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Utilizador %s não está autorizado a adicionar membros" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Atualize o seu avatar em gravatar.com" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Utilizador %s não está autorizado a editar o grupo %s" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Desconhecido" -#: 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/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Recurso sem nome" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" -"Visualização de recurso não encontrado, não é possível verificar autor." +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Foi criado um novo conjunto de dados." -#: 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/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Recursos editados." -#: 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/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Configurações editadas." -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} visualização" +msgstr[1] "{number} visualizações" -#: 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/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} visualização recente" +msgstr[1] "{number} visualizações recentes" -#: ckan/logic/auth/delete.py:107 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "Utilizador %s não está autorizado a eliminar a organização %s" +msgid "%s <%s>" +msgstr "%s <%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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Nenhum endereço de email disponível. " -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Não autorizado" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organização" -#: 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/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grupo" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "Utilizador %s não está autorizado a ler o pacote %s" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Valor em falta" -#: ckan/logic/auth/get.py:149 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Utilizador %s não está autorizado a ler o recurso %s" +msgid "The input field %(name)s was not expected." +msgstr "Campo de entrada %(name)s não esperado. " -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "Utilizador %s não está autorizado a ler o grupo %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Por favor, insira um número de valor inteiro." -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -"Necessita de iniciar a sessão para poder ter acesso ao painel de controlo. " -#: ckan/logic/auth/update.py:39 -#, 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/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Pacote de recurso(s) inválido" -#: ckan/logic/auth/update.py:71 -#, 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/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Extras" -#: ckan/logic/auth/update.py:100 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, 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" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Vocabulário de etiquetas \"%s\" não existe" -#: ckan/logic/auth/update.py:128 -#, 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:145 -#, 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:162 -#, 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:189 -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:197 -#, 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:208 -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:216 -#, 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:225 -#, 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/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Não foi possível analisar como um JSON válido" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" msgstr "" -"Utilizador %s não está autorizado a atualizar a tabela term_translation" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "É necessária uma chave API válida para editar um pacote" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "A organização não existe" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "É necessária uma chave API válida para editar um grupo" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Não pode adicionar um conjunto de dados nesta organização" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Licença não especificada" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Inteiro inválido" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons - Domínio Público" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Deve ser um número natural" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons - Atribuição e Compartilha Igual" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Deverá ser um inteiro positivo" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons - Atribuição" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Formato de data incorreto" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons - Domínio Público" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Não são permitidos links na mensagem de registo. " -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons - Atribuição" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "O ID do conjunto de dados já existe" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons - Atribuição e Compartilha Igual" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Recurso" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "O nome do grupo ou a Id. não existe." -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Outro (Abrir)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Tipo de Atividade" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Outro (Domínio Público)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Os nomes devem ser em formato texto" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Outro (Atribuição)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Esse nome não pode ser utilizado" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Devem ter pelo menos %s caracteres" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons - Atribuição e Não Comercial" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "O nome deve ter no máximo %i caracteres" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Outro (Não Comercial)" +#: ckan/logic/validators.py:343 +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/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Outro (Não Abrir)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "O URL já está a ser utilizado." -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "depende de %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "O tamanho do nome \"%s\" é menor que o mínimo permitido %s" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "é uma dependência de %s " +msgid "Name \"%s\" length is more than maximum %s" +msgstr "O tamanho da etiqueta \"%s\" é maior que o máximo permitido %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "deriva de %s" +msgid "Version must be a maximum of %i characters long" +msgstr "A versão deve ter no máximo %i caracteres" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "tem derivação de %s" +msgid "Duplicate key \"%s\"" +msgstr "Chave duplicada \"%s\"" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "liga a %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "O nome do grupo já existe na base de dados" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "está ligado desde %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "O tamanho da etiqueta \"%s\" é menor que o mínimo permitido %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "é um inferior de %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "O tamanho da etiqueta \"%s\" é maior que o máximo permitido %i" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "é um superior de %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "A etiqueta \"%s\" deve ser de carateres alfanuméricos ou símbolos: - _ ." -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "tem ao mesmo nível %s" +msgid "Tag \"%s\" must not be uppercase" +msgstr "A etiqueta \"%s\" não deve ser em maiúsculas" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "A carregar ..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "O nome do utilizador deve ser em formato texto" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Não há dados API para carregar neste recurso" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Esse nome de utilizador não está disponível." -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Falha no carregamento da informação dos dados API" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Por favor, insira ambas as palavras-chave" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Não foram encontradas correspondências" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Palavras-passe devem ser em formato texto" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Comece a escrever ..." +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "A sua palavra-passe deve ter 4 ou mais carateres" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Entrada muito curta, deve ter pelo menos um caratere." +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "As palavras-passe inseridas são diferentes." -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Existem modificações que não estão a ser guardadas" +#: ckan/logic/validators.py:611 +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/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Por favor, Confirme a Ação" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "O nome deve conter pelo menos %s caracteres" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Tem a certeza que deseja realizar esta ação?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Esse nome de vocabulário já está em uso." -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Confirmar" +#: ckan/logic/validators.py:634 +#, 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/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Cancelar" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Vocabulário de etiquetas não encontrado." -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Seguir" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "A etiqueta %s não pertence ao vocabulário %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Não Seguir" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Nenhum nome de etiqueta" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Enviar" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "A etiqueta %s já pertence ao vocabulário %s" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Hiperligação" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Por favor, forneça um URL válido." -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Remover" - -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Imagem" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "A função não existe." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Conjuntos de dados sem organização não podem ser privados. " -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Ficheiro" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Não é uma lista." -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Envie um ficheiro no seu computador" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Não é um formato texto" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Este superior iria criar um ciclo na hierarquia" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Reordenar recursos" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" e \"filter_values\" devem ter o mesmo comprimento." -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Guardar ordenação" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" é solicitado quando \"filter_values\" é preenchido" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "A guardar ..." +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" é solicitado quando \"filter_fields\" é preenchido" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Enviar um ficheiro" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Há um campo com o mesmo nome. " -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Ocorreu Um Erro" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Recurso enviado" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Cria o objeto %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Não é possivel enviar o ficheiro" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Criar a relação do pacote: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Não é possivel autenticar o envio" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Criar objeto membro %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Não foi possivel obter dados a partir do ficheiro enviado" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "A tentar criar uma organização como um grupo" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Está a enviar um ficheiro. Tem a certeza de que deseja sair e parar o envio?" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Deverá fornecer um pacote ID ou um nome (parâmetro \"pacote\")." -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Reordenar as vistas dos recursos" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Deverá fornecer uma classificação (parâmetro \"classificação\")." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Editar" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "A classificação deverá ser um valor inteiro. " -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Mostrar mais" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "A classificação deverá ser entre %i e %i." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Ocultar" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Erro %(error_code)s" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Precisa de iniciar a sessão para poder seguir utilizadores " -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Sobre {0}" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Não pode seguir-se a si próprio" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "API CKAN" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Já está a seguir {0}" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +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/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -" Fornecido por CKAN " +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Utilizador {username} não existe." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Configurações do Administrador de sistema" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "É necessário ter a sessão iniciada para poder seguir um grupo." -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Ver perfil" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:92 #, 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:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Painel de controlo" +msgid "REST API: Delete Package: %s" +msgstr "REST API: Eliminar pacote: %s" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Editar configurações" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Eliminar %s" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Definições" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Eliminar membro: %s" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Terminar Sessão" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "Os dados não têm ID" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Iniciar Sessão" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Não foi possível encontrar o vocabulário \"%s\"" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Registar" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Não foi possivel encontrar a etiqueta \"%s\"" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Conjuntos de Dados" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +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/templates/header.html:116 -msgid "Search Datasets" -msgstr "Pesquisar Conjuntos de Dados" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Não está a seguir {0}." -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Procurar" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "O recurso não foi encontrado." -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Ir para o conteúdo" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Não especificou o parâmetro \"query\"" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Carregar menos" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Deverá ser : par(es)" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Carregar mais" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "O campo \"{field}\" não é reconhecido no recurso de pesquisa." -#: 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/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "O pacote não foi encontrado." -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administração" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Atualizar objeto. %s" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Administração do Sistema" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Atualizar a relação do pacote: %s %s %s" -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Configurar" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus não encontrado." -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Lixo" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "A organização não foi encontrada." -#: ckan/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "Tem a certeza que deseja redefinir a configuração?" +#: 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/templates/admin/config.html:17 -msgid "Reset" -msgstr "Redefinir" - -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Atualizar Configurações" - -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "Opções da configuração CKAN" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Utilizador %s não está autorizado a editar estes grupos" -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:38 #, 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.

" +msgid "User %s not authorized to add dataset to this organization" 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.

" +"Utilizador %s não está autorizado a adicionar conjuntos de dados nesta " +"organização" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Confirmar redefiniçã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/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Administrador CKAN" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +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/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:76 #, 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

" +msgid "User %s not authorized to create resources on dataset %s" 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

" +"Utilizador %s não está autorizado a criar recursos no conjunto de dados %s" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Purgar" +#: 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/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" -"

Eliminar para sempre e de forma irreversível um conjuntos de dados já " -"eliminado.

" +#: 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/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Dados API" +#: 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/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" msgstr "" -"O acesso ao recurso dados através de um API na internet é um apoio de " -"consulta poderoso" +"Utilizador {user} não está autorizado a criar novos perfis de utilizadores " +"via API" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" -"Mais informações sobre o API principal dos dados CKAN e a documentação sobre o " -"armazenamento de dados.

" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Não está autorizado a criar utilizadores" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Pontos de acesso" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "O grupo não foi encontrado." -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "É possivel aceder aos dados API seguindo as ações API no CKAN." +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "É necessária uma chave API válida para criar um pacote" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Criar" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "É necessária uma chave API válida para criar um grupo " -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Atualizar / Inserir" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Utilizador %s não está autorizado a adicionar membros" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Query" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Utilizador %s não está autorizado a editar o grupo %s" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Query (via SQL)" +#: 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Pesquisar" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "" +"Visualização de recurso não encontrado, não é possível verificar autor." -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Query exemplo (os 5 primeiros resultados)" +#: 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Query exemplo (resultados que contenham 'jones')" +#: 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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Query exemplo (via instrução SQL)" +#: 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/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Exemplo: Javascript" +#: 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/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." +#: 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/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Exemplo: Python" +#: 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/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/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Não autorizado" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Clique aqui para mais informações." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Utilizador %s não está autorizado a ler estes pacotes" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Transferir recurso" +#: 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/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "O seu navegador não suporta iframes." +#: 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/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Nenhuma pré-visualização disponível." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Utilizador %s não está autorizado a ler o grupo %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Mais detalhes ..." +#: ckan/logic/auth/get.py:252 +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/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:39 #, 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" +msgid "User %s not authorized to edit package %s" +msgstr "Utilizador %s não está autorizado a editar o pacote %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Entrada padrão " +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Utilizador %s não está autorizado a editar o recurso %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Médio" +#: ckan/logic/auth/update.py:100 +#, 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/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Largura média da entrada" +#: ckan/logic/auth/update.py:128 +#, 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/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Total" +#: ckan/logic/auth/update.py:145 +#, 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/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Largura total da entrada" +#: ckan/logic/auth/update.py:162 +#, 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/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Grande" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "É necessário iniciar a sessão para poder editar o seu perfil" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Entrada grande" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Utilizador %s não está autorizado a editar o perfil %s" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Prefixo" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "Utilizador {0} não está autorizado a atualizar o perfil {1}" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Prefixo de entrada" +#: ckan/logic/auth/update.py:217 +#, 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/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Personalizar Campo (vazio)" +#: ckan/logic/auth/update.py:226 +#, 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/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Personalizar Campo" +#: ckan/logic/auth/update.py:240 +#, 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/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "É necessária uma chave API válida para editar um pacote" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Área de texto" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "É necessária uma chave API válida para editar um grupo" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Selecionar" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Licença não especificada" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Histórico de atividades" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons - Domínio Público" -#: 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/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons - Atribuição e Compartilha Igual" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Adicionar um Grupo" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons - Atribuição" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Formulário de Grupo" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons - Domínio Público" -#: 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/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons - Atribuição" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "Tem a certeza que deseja apagar o grupo - {name}?" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons - Atribuição e Compartilha Igual" -#: 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/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Gerir" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Outro (Abrir)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Editar Grupo" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Outro (Domínio Público)" -#: 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/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Outro (Atribuição)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Seguidores" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Histórico" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons - Atribuição e Não Comercial" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Adicionar Grupo" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Outro (Não Comercial)" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Procurar grupos ..." +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Outro (Não Abrir)" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Nome Ascendente" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "depende de %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Nome Descendente" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "é uma dependência de %s " -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "Atualmente, este site não tem grupos" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "deriva de %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "E que tal criar um?" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "tem derivação de %s" -#: 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/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "liga a %s" -#: 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:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Adicionar Membro" - -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Utilizador Existente" - -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Se deseja adicionar um utilizador já existente, procure o nome do mesmo " -"abaixo. " +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "está ligado desde %s" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "ou" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "é um inferior de %s" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Novo Utilizador" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "é um superior de %s" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Se pretende convidar um novo membro, escreva o respetivo contacto de email. " +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "tem ao mesmo nível %s" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Função" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Não há dados API para carregar neste recurso" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Tem a certeza que deseja apagar este membro?" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Falha no carregamento da informação dos dados API" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Apagar" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Comece a escrever ..." -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Guardar" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Não foram encontradas correspondências" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "O que são as funções?" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

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/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Existem modificações que não estão a ser guardadas" -#: 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/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Por favor, Confirme a Ação" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Atualizar Grupo" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Tem a certeza que deseja realizar esta ação?" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Criar Grupo" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Confirmar" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevância" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Última Modificação" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Não Seguir" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Popular" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Seguir" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Pesquisar conjuntos de dados..." +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Hiperligação" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Conjuntos de dados no grupo: {group}" +#: ckan/public/base/javascript/modules/image-upload.js:61 +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/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Histórico Revisão Recente" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Enviar" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Nome" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Remover" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "O Meu Grupo" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Envie um ficheiro no seu computador" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "meu-grupo" +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Descrição" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Ficheiro" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Alguma informação sobre o meu grupo ..." +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Guardar ordenação" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Tem a certeza que deseja apagar este Grupo?" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "A guardar ..." -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Guardar Grupo" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Enviar um ficheiro" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} Conjunto de dados" -msgstr[1] "{num} Conjuntos de dados" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Ocorreu Um Erro" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Conjuntos de dados" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Não é possivel enviar o ficheiro" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Ver {name}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Não é possivel autenticar o envio" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Remover o conjunto de dados deste grupo" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Recurso enviado" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "O que são os Grupos?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Não foi possivel obter dados a partir do ficheiro enviado" -#: ckan/templates/group/snippets/helper.html:8 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 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. " +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" msgstr "" -"Pode usar Grupos CKAN para criar e gerir coleções de conjuntos de dados. " -"Poderão servir para catalogar conjuntos de dados de um projeto ou equipa em " -"particular, ou sobre um tema especifico, ou como uma forma simples de ajudar" -" os utilizadores a encontrar e pesquisar os seus próprios conjuntos de dados" -" publicados." - -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Comparar" +"Está a enviar um ficheiro. Tem a certeza de que deseja sair e parar o envio?" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Apagado" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Adicionar Filtro" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "ler mais" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Revisão" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Editar" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Registo temporal" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Mostrar mais" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Autor" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Ocultar" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Mensagem de registo" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Erro %(error_code)s" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Bem-vindo" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Sobre {0}" -#: 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/footer.html:15 +msgid "CKAN API" +msgstr "API CKAN" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Bem-vindo ao CKAN" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" -#: ckan/templates/home/snippets/promoted.html:10 +#: ckan/templates/footer.html:24 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 " +"Powered by CKAN" 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" +" Fornecido por CKAN " -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Esta é uma secção em destaque" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Configurações do Administrador de sistema" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "P.ex. ambiente" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Ver perfil" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Pesquisar dados" +#: ckan/templates/header.html:26 +#, 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/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Etiquetas Populares" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Painel de controlo" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} estatísticas" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Editar configurações" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "conjunto de dados" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Definições" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "conjuntos de dados" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Terminar Sessão" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organizações" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Iniciar Sessão" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "grupos" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registar" -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" -"Aqui, pode usar o formato Markdown " +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Conjuntos de Dados" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "O campo é necessário" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Pesquisar Conjuntos de Dados" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Personalizar" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Procurar" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "O formulário contém entradas inválidas:" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Ir para o conteúdo" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Campo Obrigatório " +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Carregar menos" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Carregar mais" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL da Imagem" +#: 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/macros/form.html:424 -msgid "Clear Upload" -msgstr "Limpar Enviar" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administração" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Formulário de organização" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Administração do Sistema" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Editar conjuntos de dados" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Configurar" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Adicionar conjunto de dados" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Lixo" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "encontrados para \"{query}\"" +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Tem a certeza que deseja redefinir a configuração?" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Redefinir" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Atualizar Configurações" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "Opções da configuração CKAN" + +#: ckan/templates/admin/config.html:33 +#, 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 "" -"Pedimos desculpa, não foram encontrados conjuntos de dados para \"{query}\"" +"

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/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Tornar público" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Confirmar redefinição" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Tornar privado" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrador CKAN" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Rascunho" +#: 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/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Privado" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Purgar" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Esta organização não tem nenhum conjunto de dados associado" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "" +"

Eliminar para sempre e de forma irreversível um conjuntos de dados já " +"eliminado.

" -#: 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/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/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/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Clique aqui para mais informações." -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Adicionar Organização" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Transferir recurso" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "Procurar organizações ..." +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Nenhuma pré-visualização disponível." -#: 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/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Mais detalhes ..." -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nome de utilizador" +#: ckan/templates/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/organization/member_new.html:50 -msgid "Email address" -msgstr "Endereço de email" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "Atualizar Membro" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Entrada padrão " -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/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/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "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:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Histórico de atividades" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Criar uma Organização" +#: 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/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Atualizar Organização" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Adicionar um Grupo" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Criar Organização" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Formulário de Grupo" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Adicionar Conjunto de Dados" +#: 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/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Conjuntos de dados na organização: {group}" +#: 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/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/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/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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Gerir" -#: 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/group/edit.html:12 +msgid "Edit Group" +msgstr "Editar Grupo" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "A Minha Organização" +#: ckan/templates/group/edit_base.html:23 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/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "minha-organização" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Histórico" -#: 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/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Adicionar Grupo" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" -"Tem certeza de que deseja eliminar esta Organização? Irá apagar todos os " -"conjuntos de dados públicos e privados pertencentes a esta organização." +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Procurar grupos ..." -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Guardar Organização" +#: 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/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Ver {organization_name}" +#: 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/package/base.html:22 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/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/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "O que são conjuntos de dados?" +#: 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/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. " +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Adicionar Membro" + +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Utilizador Existente" + +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"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." +"Se deseja adicionar um utilizador já existente, procure o nome do mesmo " +"abaixo. " -#: 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/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "ou" -#: 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/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Novo Utilizador" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Ver conjunto de dados" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Se pretende convidar um novo membro, escreva o respetivo contacto de email. " -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Editar metadados" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Função" -#: 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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Prévisualização" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Apagar" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Atualizar" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "O que são as funções?" -#: 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/group/member_new.html:80 +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/package/group_list.html:14 -msgid "Add to group" -msgstr "Adicionar ao grupo" +#: 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/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/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Criar Grupo" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Atualizar conjunto de dados" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Pesquisar conjuntos de dados..." -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Adicionar dados ao conjunto de dados " +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Conjuntos de dados no grupo: {group}" -#: 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/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Histórico Revisão Recente" -#: 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/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Nome" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Novo recurso" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "O Meu Grupo" -#: 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/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "meu-grupo" -#: 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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Alguma informação sobre o meu grupo ..." -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Adicionar" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Tem a certeza que deseja apagar este Grupo?" -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" -"Esta é uma revisão antiga deste conjunto de dados, está tal como editado a " -"%(timestamp)s. Pode divergir significativamente da revisão atual. " +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Guardar Grupo" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Carregar pata o DataStore" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Ver {name}" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Erro de envio:" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Remover o conjunto de dados deste grupo" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Erro:" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "O que são os Grupos?" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" +#: 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/package/resource_data.html:48 -msgid "Status" -msgstr "Estado" - -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Última Atualização" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Comparar" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Nunca" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Apagado" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Registo de envios" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "ler mais" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Detalhes" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Revisão" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "Terminar sessão" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Registo temporal" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Todos os recursos" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Autor" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Ver recurso" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Mensagem de registo" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Editar recurso" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Bem-vindo" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: 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/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Vistas" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Bem-vindo ao CKAN" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "Ponto de acesso à API" +#: 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/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Ir para o recurso" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Esta é uma secção em destaque" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Transferir" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "P.ex. ambiente" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Pesquisar dados" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Do resumo do conjunto de dados" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Etiquetas Populares" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "Fonte: %(dataset)s" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} estatísticas" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Ainda não há vistas criadas para este recurso." +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "conjunto de dados" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Não está a ver as vistas que estava à espera?" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "conjuntos de dados" -#: ckan/templates/package/resource_read.html:121 -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/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizações" -#: ckan/templates/package/resource_read.html:123 -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/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupos" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" msgstr "" -"Os administradores do site podem não ter ativado os plugins de visualização " -"relevantes" -#: ckan/templates/package/resource_read.html:125 +#: ckan/templates/macros/form.html:126 +#, python-format 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" +"You can use Markdown formatting here" 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." +"Aqui, pode usar o formato Markdown " -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Informação adicional " +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "O campo é necessário" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Campo" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Personalizar" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Valor" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "O formulário contém entradas inválidas:" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "desconhecido" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Campo Obrigatório " -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Data de criação" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Formato" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL da Imagem" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licença" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Limpar Enviar" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Nova vista" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Formulário de organização" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Este recurso não tem vistas" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Editar conjuntos de dados" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Adicionar novo recurso" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Adicionar conjunto de dados" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

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

Este conjunto de dados não tem dados, não gostaria de acrescentar alguns?

" +"Pedimos desculpa, não foram encontrados conjuntos de dados para \"{query}\"" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Tornar público" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "Documentos API" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Tornar privado" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "descarregamento integral {format}" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Rascunho" -#: 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/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Privado" -#: 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/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Esta organização não tem nenhum conjunto de dados associado" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "Todas as vistas" +#: 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/package/view_edit_base.html:12 -msgid "View view" -msgstr "Ver vista" +#: 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/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Ver pré-visualização" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Adicionar Organização" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Informação Adicional" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Procurar organizações ..." -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Fonte" +#: 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/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/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nome de utilizador" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Versão" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Endereço de email" + +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Atualizar Membro" + +#: ckan/templates/organization/member_new.html:81 +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 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Criar uma Organização" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Estado" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Atualizar Organização" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Última Atualização " +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Criar Organizaçã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/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Adicionar Conjunto de Dados" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Conjuntos de dados na organização: {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Dados API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "A Minha Organização" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Título" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "minha-organização" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "p.ex. Um título descritivo. " +#: 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/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "p.ex. O meu conjunto de dados" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Tem certeza de que deseja eliminar esta Organização? Irá apagar todos os " +"conjuntos de dados públicos e privados pertencentes a esta organização." -#: ckan/templates/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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Guardar Organização" -#: 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/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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"As definições das licenças e mais informações adicionais sobre as mesmas, " -"podem ser encontradas em " -"creativecommons.org e em opendefinition.org" +"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/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organização" +#: 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/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Nenhuma organização" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Visibilidade" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Ver conjunto de dados" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Público" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Editar metadados" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Ativo" +#: 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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Prévisualização" -#: 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/edit_view.html:21 +msgid "Update" +msgstr "Atualizar" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Próximo: Adicionar Dados" +#: 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/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Adicionar ao grupo" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Atualizar conjunto de dados" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Email do Autor" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Adicionar dados ao conjunto de dados " -#: 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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Adicionar Novo Recurso" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Email do Gestor" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Atualizar 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:81 +msgid "Add" +msgstr "Adicionar" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Esta é uma revisão antiga deste conjunto de dados, está tal como editado a " +"%(timestamp)s. Pode divergir significativamente da revisão atual. " -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Todos os recursos" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "pe. Preço do Ouro em janeiro de 2011" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Ver recurso" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Algumas notas úteis sobre os dados" +#: 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/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "p.ex. CSV, XML ou JSON" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Vistas" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "Será inferido automaticamente. Deixe em branco se desejar" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "Ponto de acesso à API" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "p.ex. 2012-06-05" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Ir para o recurso" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Tamanho do Ficheiro" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Transferir" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "p.ex. 1024" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "Tipo MIME" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Do resumo do conjunto de dados" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "ex. application/json" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Fonte: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Tem certeza de que deseja excluir este recurso?" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "Ainda não há vistas criadas para este recurso." -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Anterior" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Não está a ver as vistas que estava à espera?" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Guardar & Adicionar" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Terminar" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "O que é um recurso?" +#: ckan/templates/package/resource_read.html:121 +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/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:122 +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 "" -"Um recurso pode ser qualquer ficheiro ou a ligação a um ficheiro que " -"contenham dados úteis." +"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/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Explorar" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Informação adicional " -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Mais informação" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Campo" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Incorporar " +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valor" -#: ckan/templates/package/snippets/resource_view.html:24 -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/resource_read.html:154 +msgid "Data last updated" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Incorporar vista de recurso" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "desconhecido" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" 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:69 -msgid "Width" -msgstr "Largura" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Data de criação" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Altura " +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Formato" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Código" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licença" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Pré-visualização de Recursos" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nova vista" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Dados e Recursos" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Este recurso não tem vistas" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Este conjunto de dados não tem dados " +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Adicionar novo recurso" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format -msgid "Read dataset as of %s" -msgstr "Leia o conjunto de dados a partir de %s" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "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" +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/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "p.ex. A Minha Vista" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: 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/search.html:53 +msgid "API Docs" +msgstr "Documentos API" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Adicionar Filtro" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "descarregamento integral {format}" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Remover Filtro " +#: 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/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filtros" +#: 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/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "O que é uma vista?" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Todas as vistas" -#: 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/package/view_edit_base.html:12 +msgid "View view" +msgstr "Ver vista" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Diferenças" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Ver pré-visualização" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Diferenças da revisão" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Informação Adicional" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Diferença" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Fonte" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Não existem diferenças" +#: 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/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Histórico " +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versão" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Revisões" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Estado" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Reverter" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Última Atualização " -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Alterar" +#: 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/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Etiquetas Conjuntos de Dados " +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entidade" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Novo item de atividade" +#: 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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Visualizador de Dados Embutido" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Título" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Embutir esta visualização copiando isto para a sua página:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "p.ex. Um título descritivo. " -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Escolha a largura e a altura em pixels:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "p.ex. O meu conjunto de dados" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Largura: " +#: 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/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Altura:" +#: 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/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Estado do Datapusher: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:41 +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/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Trackback URL" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organização" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Mostrar mais {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Nenhuma organização" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Mostrar apenas os/as {facet_type} mais populares" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Visibilidade" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Não existe nenhum {facet_type} que corresponda a esta pesquisa" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Público" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Página inicial" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Ativo" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Idioma" +#: 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/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Ir" +#: 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/snippets/license.html:14 -msgid "No License Provided" -msgstr "Sem licença" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Próximo: Adicionar Dados" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Este conjunto de dados satisfaz os requisitos de Dados Abertos." +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Não existe nenhuma descrição para esta organização" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: 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/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/snippets/search_form.html:17 -msgid "Submit" -msgstr "Submeter" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email do Autor" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Ordenar por" +#: ckan/templates/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/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filtrar Resultados" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email do Gestor" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Por favor, tente um novo termo de pesquisa.

" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Atualizar Recurso" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" 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/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: 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/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "pe. Preço do Ouro em janeiro de 2011" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Não foram encontrados conjuntos de dados" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Algumas notas úteis sobre os 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/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "p.ex. CSV, XML ou JSON" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Nenhum grupo encontrado para \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Será inferido automaticamente. Deixe em branco se desejar" -#: 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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "p.ex. 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Nenhum grupo encontrado" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Tamanho do Ficheiro" -#: 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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "p.ex. 1024" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "Tipo MIME" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "ex. application/json" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Nenhuma organização encontrada" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Tem certeza de que deseja excluir este recurso?" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Social" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Anterior" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Subscrever" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Guardar & Adicionar" -#: 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:82 -msgid "Email" -msgstr "Email" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Terminar" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "O que é um recurso?" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Editar" +#: 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/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Pesquisar por Etiquetas" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Explorar" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Notícias" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Mais informação" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Os meus Conjuntos de Dados" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Incorporar " -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "As minhas Organizações" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "Esta vista de recurso não está disponível neste momento." -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Os meus Grupos" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Incorporar vista de recurso" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Atividade dos itens que está a seguir" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Pode copiar e colar o código para embutir num CMS ou blogue que suporte a " +"escrita de HTML" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Ainda não criou nenhum conjunto de dados." +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Largura" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Criar um agora?" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Altura " -#: 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/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Código" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Não é membro de nenhuma organização." +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Pré-visualização de Recursos" -#: 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/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Dados e Recursos" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Informação sobre a conta" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Este conjunto de dados não tem dados " -#: 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/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Leia o conjunto de dados a partir de %s" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Alterar detalhes" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Criar conjunto de dados" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Nome completo" +#: 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/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "p.ex. Joel Martins" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "p.ex. A Minha Vista" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "p.ex. joe@example.com" +#: 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/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Alguma informação sobre si" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Remover Filtro " -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Subscrever notificações por email" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "O que é uma vista?" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Alterar palavra-passe" +#: 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/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Diferenças" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Palavra-passe" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Diferenças da revisão" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Confirmar Palavra-passe" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Diferença" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Tem a certeza que pretende eliminar este utilizador?" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Não existem diferenças" -#: ckan/templates/user/edit_user_form.html:51 -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/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Histórico " -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Gerar nova Chave API" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Revisões" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Atualizar Perfil" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Reverter" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Todos os utilizadores " +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Alterar" -#: 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/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Etiquetas Conjuntos de Dados " -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Precisa de uma Conta?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entidade" -#: 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/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Novo item de atividade" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Criar uma Conta" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Visualizador de Dados Embutido" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Esqueceu a sua palavra-passe?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Embutir esta visualização copiando isto para a sua página:" -#: 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/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Escolha a largura e a altura em pixels:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Esqueceu a sua palavra-passe?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Largura: " -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Sessão terminada" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Altura:" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Acabou de terminar a sessão." +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Estado do Datapusher: {status}." -#: 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/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Terminar sessão" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Mostrar mais {facet_type}" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Memorizar" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Mostrar apenas os/as {facet_type} mais populares" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Já está com a sessão iniciada" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Não existe nenhum {facet_type} que corresponda a esta pesquisa" -#: ckan/templates/user/logout_first.html:24 -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/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Página inicial" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Terminar sessão agora" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Idioma" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Inscrição" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Ir" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Registe-se para criar uma Conta" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Sem licença" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Porquê inscrever-se?" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Este conjunto de dados satisfaz os requisitos de Dados Abertos." -#: 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/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Não existe nenhuma descrição para esta organização" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "nome de utilizador" +#: 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/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Nome completo" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Submeter" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Criar Conta" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Ordenar por" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Redefina a sua Palavra-passe" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filtrar Resultados" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Palavra-passe redefinida" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Por favor, tente um novo termo de pesquisa.

" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Atualizar Palavra-passe" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Como é que isto funciona?" +#: 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/user/perform_reset.html:40 -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/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Não foram encontrados conjuntos de dados para \"{query}\"" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "O utilizador não criou nenhum conjunto de dados." +#: 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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Não forneceu uma biografia." +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Não foram encontrados conjuntos de dados" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Este utilizador não tem bibliografia." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Abrir ID" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Nenhum grupo encontrado para \"{query}\"" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Isso significa que somente pode ver isto" +#: 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/user/read_base.html:87 -msgid "Member Since" -msgstr "Membro desde" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Nenhum grupo encontrado" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "Chave API" +#: 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/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Redefina a sua palavra-passe" +#: 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/user/request_reset.html:6 -msgid "Password reset" -msgstr "Palavra-passe redefinida" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Nenhuma organização encontrada" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Pedir redefinição" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Escreva o seu nome de utilizador que nós lhe enviamos de seguida um email " -"com um link de acesso, onde poderá inserir a sua nova palavra-passe." +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Subscrever" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Atividade de:" +#: 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:82 +msgid "Email" +msgstr "Email" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Lista de pesquisa ... " +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Não está a seguir nada" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Editar" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Sem seguidores" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Pesquisar por Etiquetas" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Pesquisar por utilizadores" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Notícias" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Completo " +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Os meus Conjuntos de Dados" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Pendente" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "As minhas Organizações" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Submeter" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Os meus Grupos" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Ainda não foi enviado" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Atividade dos itens que está a seguir" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "O recurso DataStore não foi encontrado" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Ainda não criou nenhum conjunto de dados." -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" -"Os dados eram inválidos (por exemplo: um valor numérico está fora do " -"intervalo ou foi inserido num campo de texto)." +#: 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:16 +msgid "Create one now?" +msgstr "Criar um agora?" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "Recurso \"{0}\" não foi encontrado." +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Não é membro de nenhum grupo." -#: 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}" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Não é membro de nenhuma organização." -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Conjuntos de dados por página" +#: 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 " -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Testar Conflitos " +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informação sobre a conta" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Campo personalizado Ascendente" +#: 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." +" " -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Campo personalizado Descendente" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Alterar detalhes" -#: 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" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Nome completo" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "personalizar texto" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "p.ex. Joel Martins" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Código do país" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "p.ex. joe@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "personalizar o texto do recurso" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Alguma informação sobre si" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Subscrever notificações por email" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Este grupo não tem nenhuma descrição" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Alterar palavra-passe" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -"A ferramenta de pré-visualização dos dados CKAN é munida de poderosas " -"funcionalidades." -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "Imagem URL" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Palavra-passe" -#: 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)" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Confirmar Palavra-passe" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Explorador de dados" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Tem a certeza que pretende eliminar este utilizador?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Tabela " +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Tem a certeza que pretende voltar a gerar a chave API?" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Gráfico" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Gerar nova Chave API" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Mapa" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Atualizar Perfil" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Todos os utilizadores " -#: 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" +#: 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" -#: 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" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Precisa de uma Conta?" -#: 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" +#: 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." -#: 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" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Criar uma Conta" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Gráfico tipo" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Esqueceu a sua palavra-passe?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Grupo (Axis 1)" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Séries (Eixo 2)" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Esqueceu a sua palavra-passe?" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Campo Tipo" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Sessão terminada" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Campo Latitude" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Acabou de terminar a sessão." -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Campo Longitude" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Já iniciou a sessão como {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "Campo GeoJSON" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Terminar sessão" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Zoom automático às entidades" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Memorizar" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Grupo de marcadores " +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Já está com a sessão iniciada" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Número total de conjuntos de dados" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Data" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Terminar sessão agora" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Total de conjuntos de dados" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Inscrição" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "As revisões, por semana, do conjunto de dados" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registe-se para criar uma Conta" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Todas as revisões do conjunto de dados" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Porquê inscrever-se?" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Novos conjuntos de dados" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Crie conjuntos de dados, grupos, entre outras \"coisas\" interessantes" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Os conjuntos de dados mais votados" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "nome de utilizador" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Média das Classificações" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nome completo" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Número de classificações" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Criar Conta" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Sem classificação " +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Redefina a sua Palavra-passe" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Os conjuntos de dados mais editados" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Palavra-passe redefinida" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Número de edições " +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Atualizar Palavra-passe" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Não existem conjuntos de dados editados" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Como é que isto funciona?" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Os maiores grupos" +#: ckan/templates/user/perform_reset.html:40 +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" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Número de conjuntos de dados" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "O utilizador não criou nenhum conjunto de dados." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Não existem Grupos " +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Não forneceu uma biografia." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "As principais Etiquetas " +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Este utilizador não tem bibliografia." -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Nome da Etiqueta" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Abrir ID" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Número de conjuntos de dados" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Isso significa que somente pode ver isto" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Membro desde" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Menu Estatística " +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "Chave API" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Número total de conjuntos de dados " +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Redefina a sua palavra-passe" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Texto" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Palavra-passe redefinida" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Pedir redefinição" + +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Escreva o seu nome de utilizador que nós lhe enviamos de seguida um email " +"com um link de acesso, onde poderá inserir a sua nova palavra-passe." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Página de internet" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Atividade de:" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "URL da página de internet" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Lista de pesquisa ... " -#: 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/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" diff --git a/ckan/i18n/ro/LC_MESSAGES/ckan.mo b/ckan/i18n/ro/LC_MESSAGES/ckan.mo index 28cb7938a9a..f0f1f3a8575 100644 Binary files a/ckan/i18n/ro/LC_MESSAGES/ckan.mo and b/ckan/i18n/ro/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/ro/LC_MESSAGES/ckan.po b/ckan/i18n/ro/LC_MESSAGES/ckan.po index 4fe4ebc6842..65ee250f2f7 100644 --- a/ckan/i18n/ro/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ro/LC_MESSAGES/ckan.po @@ -1,4514 +1,4614 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Funcția de autorizare nu există: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administrator" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Redactor" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Membru" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Eroare" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Este nevoie să fii administrator de sistem pentru a gestiona" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Titlul site-ului" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Resursa nu a fost găsită" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Stil" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Nu ești autorizat să vezi pagina aceasta" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Linia Etichetei Site-ului" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Logo-ul etichetei paginii" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Eroare:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Despre pagina textului" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Text de introducere" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Textul de pe pagina de start" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Ultima actualizare" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "CSS personalizat" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "CSS personalizate introduse în antetul paginii" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Pagina principală" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" -#: ckan/controllers/admin.py:160 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" msgstr "" -"Nu pot elimina pachetul %s deoarece revizuirea %s include pachete încă " -"existente %s" -#: ckan/controllers/admin.py:182 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/controller.py:46 #, python-format -msgid "Problem purging revision %s: %s" -msgstr "Sunt probleme la eliminarea revizuirii %s: %s" +msgid "format: must be one of %s" +msgstr "" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Eliminare completă" +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Acțiune neimplementată" +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Nu ești autorizat să vezi pagina aceasta" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Acces interzis" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "De negăsit" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "Date API CKAN" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Cerere incorectă" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Numele acțiunii nu este cunoscut: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Eroare JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "obiective" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Datele cererii incorecte: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Nu pot afișa intrări de acest tip: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Crează" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Nu pot citi entități de acest tip: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Actualizează / Introduce" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Nu pot crea o nouă entitate de acest tip: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Nu pot adăuga pachetul la indexarea pentru căutare" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Nu pot actualiza o entitate de acest tip: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Incapabil de a actualiza indexul de căutare" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Nu pot șterge entitatea de acest tip: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Nu este specificată nicio revizie" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Nu există nicio revizie cu id-ul: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Exemplu: Javascript" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Termen de căutare lipsă ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Nu am putut citi parametrii: %r" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Exemplu: Python" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Opțiune de căutare incorectă: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Registru necunoscut: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Valoare qjson formată eronat: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Descriere" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Salvează" + +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" msgstr "" -"Parametrii ceruți trebuie să fie într-o formă din dicționarul de codare " -"json." -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Grupul nu a fost găsit" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "TIpul grupului este greşit" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Se încarcă..." -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organizații" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Date API" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Grupuri" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Cuvinte cheie" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formate" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licenţe" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Nu sunteți autorizat să efectuați actualizarea în masă" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Neautorizat pentru a crea un grup" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Utilizatorul %r nu este autorizat să editeze %s" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevanță" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Eroare de integritate" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Utilizatorul %r nu este autorizat să editeze autorizările %s " +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Nu sunteți autorizat să ștergeți grupul %s" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Ultima Modificare" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organizația a fost ștearsă." +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Grupul a fost șters." +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" msgstr "" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Nu sunteți autorizat să adăugați membri la grupul %s" +#: 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 "" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Nu sunteți autorizat să ștergeți membrii din grupul %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Membrul de grup a fost șters." +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Prefixul Țării" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Selectează două revizii înainte de a face comparații." +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Istoricul Reviziilor de Grup al CKAN" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Modificări recente ale Grupului CKAN: " +#: 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/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Mesaj din jurnalier: " +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Acum urmăriți {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 "0 Seturi de date" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Nu mai urmăriți {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/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Nu sunteți autorizat să vizualizați follower-ii %s" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Follower-i" -#: ckan/controllers/home.py:36 -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/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resurse" -#: ckan/controllers/home.py:81 -#, 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/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Imagine" -#: ckan/controllers/home.py:83 -#, 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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parametrul \"{parameter_name}\" nu este un număr întreg" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Baza de date nu a fost găsită" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Format de revizuire nevalabil: %r" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Nu sunteți autorizat să citiți pachetul %s" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Istoricul revizuirilor seturilor de date CKAN" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Schimbări recente la setul de date CKAN" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Nu sunteți autorizat pentru a crea un pachet" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Nu sunteți autorizat să editați această resursă" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Resursa nu a fost găsită" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Nu sunteți autorizat să actualizați setul de date" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Setul de date {id} nu a fost găsit" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Trebuie să adăugați cel puțin o resursă de date" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Eroare" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Nu sunteți autorizat să creați o resursă" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" msgstr "" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Nu pot adăuga pachetul la indexarea pentru căutare" - -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Incapabil de a actualiza indexul de căutare" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Setul de date a fost șters." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Nu sunteți autorizat să ștergeți pachetul %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Resursa a fost ștearsă." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Nu sunteți autorizat să ștergeți resursa %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" msgstr "" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Resursa nu a fost găsită" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Numărul total de seturi de date" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Nu este disponibil nici o descărcare" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Dată" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Neautorizat pentru a citi setul de date %s" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Total seturi de date" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Neautorizat pentru a citi resursa %s" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Revizuiri Seturi de Date per Săptămînă" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Toate revizuirile seturilor de date" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Seturi de date noi" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Cele mai apreciate" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" msgstr "" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" msgstr "" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Previzualizarea nu a fost definită." +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Istoricul revizuirilor repozitoriului CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Cele mai editate seturi de date" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Modificări recente în repozitoriul CKAN." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Set de date" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Seturi de date afectate: %s. \n" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Numărul de editări" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Revizie actualizată" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Alta" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Eticheta nu a fost găsită" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Grup" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Utilizatorul nu a fost găsit" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Numărul seturilor de date" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Nu sunteți autorizat pentru a vă înregistra ca utilizator." +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Nu sunteți autorizat pentru a crea un utilizator" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Top Cuvinte Cheie" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Nu eşti autorizat să ştergi utilizatorul cu id-ul \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Utilizatorul nu a fost specificat" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Numărul seturilor de date" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Nu sunteți autorizat să editați utilizatorul %s" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profil actualizat" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Utilizator" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Nu sunteți autorizat pentru a crea utilizatorul %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Meniu Statistică" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Captcha incorectă. Mai încercați." +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Număr Total de Seturi de Date" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" msgstr "" -"Utilizatorul \"%s\" este acum înregistrat, dar dumneavoastră sunteţi " -"conectat ca \"%s\" de înainte" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Nu sunteți autorizat să editați utilizatorul." - -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "Utilizatorul %s nu ste autorizat să editeze %s" - -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" msgstr "" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" msgstr "" -#: ckan/controllers/user.py:386 -msgid "incorrect password" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" msgstr "" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Autentificarea a eșuat. Nume de utilizator sau parolă greșită." - -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Nu sunteți autorizat șă solicitați resetarea parolei." +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Browserul Dvs nu susține iframes." -#: ckan/controllers/user.py:490 +#: ckan/authz.py:182 #, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" coincide cu mai mulți utilizatori" +msgid "Authorization function not found: %s" +msgstr "Funcția de autorizare nu există: %s" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Nu există utilizatorul %s" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administrator" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Verificați inbox-ul pentru codul de resetare" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Redactor" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Nu am putut transmite link-ul de resetare: %s" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Membru" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Nu sunteți autorizat să resetați parola." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Este nevoie să fii administrator de sistem pentru a gestiona" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Cheia de resetare nu este valabilă. Mai incercați." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Titlul site-ului" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Parola a fost resetată." +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Stil" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Parola trebuie să conțină cel puțin 4 caractere." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Linia Etichetei Site-ului" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Parolele introduse nu coincid." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Logo-ul etichetei paginii" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Trebuie să introduceți parola" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:636 -msgid "Follow item not found" -msgstr "Articolul urmărit nu a fost găsit" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Despre pagina textului" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} nu a fost găsit" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Text de introducere" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Totul" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Textul de pe pagina de start" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Lipsa valorii" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "CSS personalizat" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "CSS personalizate introduse în antetul paginii" -#: ckan/lib/activity_streams.py:60 -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/controllers/admin.py:58 +msgid "Homepage" +msgstr "Pagina principală" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} a actualizat grupul {group}" +#: ckan/controllers/admin.py:161 +#, 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/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} a actualizat organizația {organization}" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Sunt probleme la eliminarea revizuirii %s: %s" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} a actualizat setul de date {dataset}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Eliminare completă" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} a schimbat suplimentar {extra} al setului de date {dataset}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Acțiune neimplementată" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} a actualizat resursa {resource} în setul de date {dataset}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Acces interzis" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} a actualizat porfilul" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "De negăsit" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} a șters grupul {group}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Cerere incorectă" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} a șters organizația {organization}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Numele acțiunii nu este cunoscut: %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} a șters setul de date {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Eroare JSON: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} a șters suplimentar {extra} din setul de date {dataset}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Datele cererii incorecte: %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} a șters resursa {resource} din setul de date {dataset}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Nu pot afișa intrări de acest tip: %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} a creat grupul {group}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Nu pot citi entități de acest tip: %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} a creat organizația {organization}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Nu pot crea o nouă entitate de acest tip: %s %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} a creat setul de date {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Nu pot adăuga pachetul la indexarea pentru căutare" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} a adăugat suplimentar {extra} la setul de date {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Nu pot actualiza o entitate de acest tip: %s" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} a adăugat resursa {resource} la setul de date {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Incapabil de a actualiza indexul de căutare" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} s-a conectat" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Nu pot șterge entitatea de acest tip: %s %s" -#: ckan/lib/activity_streams.py:115 -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/controllers/api.py:500 +msgid "No revision specified" +msgstr "Nu este specificată nicio revizie" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} urmărește {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Nu există nicio revizie cu id-ul: %s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} urmărește {user}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Termen de căutare lipsă ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} urmărește {group}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Nu am putut citi parametrii: %r" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Opțiune de căutare incorectă: %s" -#: 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/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Registru necunoscut: %s" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Ianuarie" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Valoare qjson formată eronat: %r" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Februarie" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" +"Parametrii ceruți trebuie să fie într-o formă din dicționarul de codare " +"json." -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Martie" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Grupul nu a fost găsit" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Aprilie" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Mai" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "TIpul grupului este greşit" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Iunie" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organizații" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Iulie" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Grupuri" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "August" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Cuvinte cheie" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Septembrie" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formate" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Octombrie" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licenţe" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Noiembrie" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Utilizatorul %r nu este autorizat să editeze %s" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Decembrie" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Nu sunteți autorizat să efectuați actualizarea în masă" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Chiar acum" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Neautorizat pentru a crea un grup" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} minut în urmâ" -msgstr[1] "{mins} minute în urmă" -msgstr[2] "{mins} minute în urmă" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Eroare de integritate" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} oră în urmă" -msgstr[1] "{hours} ore în urmă" -msgstr[2] "{hours} ore în urmă" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Utilizatorul %r nu este autorizat să editeze autorizările %s " -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} o zi în urmă" -msgstr[1] "{days} cîteva zile în urmă" -msgstr[2] "{days} zile în urmă" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nu sunteți autorizat să ștergeți grupul %s" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} lună în urmă" -msgstr[1] "{months} luni în urmă" -msgstr[2] "{months} luni în urmă" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organizația a fost ștearsă." -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Grupul a fost șters." -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." msgstr "" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Nu sunteți autorizat să adăugați membri la grupul %s" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Nu sunteți autorizat să ștergeți membrii din grupul %s" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Membrul de grup a fost șters." -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Selectează două revizii înainte de a face comparații." -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Istoricul Reviziilor de Grup al CKAN" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Modificări recente ale Grupului CKAN: " -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Mesaj din jurnalier: " -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Acum urmăriți {0}" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Nu mai urmăriți {0}." -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Nu sunteți autorizat să vizualizați follower-ii %s" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: 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/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/home.py:73 +#, 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/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Actualizați avatarul la gravatar.com" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametrul \"{parameter_name}\" nu este un număr întreg" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Necunoscut" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Baza de date nu a fost găsită" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Resursă fără denumire" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Format de revizuire nevalabil: %r" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Set de date nou creat." +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Resurse editate." +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Nu sunteți autorizat să citiți pachetul %s" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Setări editate." +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Istoricul revizuirilor seturilor de date CKAN" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} vizualizare" -msgstr[1] "{number} vizualizări" -msgstr[2] "{number} vizualizări" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Schimbări recente la setul de date CKAN" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} vizualizare recentă" -msgstr[1] "{number} vizualizări recente" -msgstr[2] "{number} vizualizări recente" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Nu sunteți autorizat pentru a crea un pachet" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Nu sunteți autorizat să editați această resursă" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Adresele e-mail ale recipienților nu sunt valabile!" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Nu sunteți autorizat să actualizați setul de date" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Setul de date {id} nu a fost găsit" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Trebuie să adăugați cel puțin o resursă de date" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Lipsește valoarea" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Nu sunteți autorizat să creați o resursă" -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "Câmpul de intrare %(name)s nu a fost aşteptat" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Introduceți o valoare intreagă" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Nu pot adăuga pachetul la indexarea pentru căutare" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Resurse" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Incapabil de a actualiza indexul de căutare" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Pachetul de resurs(e) nevalabil" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Setul de date a fost șters." -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Extras" - -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Vocabularul de etichete \"%s\" nu există" - -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Utilizator" +msgid "Unauthorized to delete package %s" +msgstr "Nu sunteți autorizat să ștergeți pachetul %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Set de date" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Resursa a fost ștearsă." -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Grup" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Nu sunteți autorizat să ștergeți resursa %s" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" msgstr "" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Resursa nu a fost găsită" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organizația nu ezistă" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Nu este disponibil nici o descărcare" -#: ckan/logic/validators.py:51 -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/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Neautorizat pentru a citi setul de date %s" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Unitate nevalabilă" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Neautorizat pentru a citi resursa %s" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" msgstr "" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" +#: ckan/controllers/package.py:1486 +msgid "View not found" msgstr "" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Data formatată incorect" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Nici un link nu este permis în mesajul de conectare" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" msgstr "" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Resursă" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Previzualizarea nu a fost definită." -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Acest grup sau ID nu există." +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Istoricul revizuirilor repozitoriului CKAN" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Tip de activitate" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Modificări recente în repozitoriul CKAN." -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Seturi de date afectate: %s. \n" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Acest nume nu poate fi utilizat" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Revizie actualizată" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Alta" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Numele trebuie să conțină maximum %i caractere" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Eticheta nu a fost găsită" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Nu sunteți autorizat pentru a vă înregistra ca utilizator." -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Acest URL este deja utilizat." +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Nu sunteți autorizat pentru a crea un utilizator" -#: ckan/logic/validators.py:365 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Lungimea numelui \"%s\" este mai mică decît minimul necesar %s" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Nu eşti autorizat să ştergi utilizatorul cu id-ul \"{user_id}\"." -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Lungimea numelui \"%s\" este mai mare decît maximul necesar %s" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Utilizatorul nu a fost specificat" -#: ckan/logic/validators.py:375 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Versiunea trebuie să conțină maximum %i caractere" +msgid "Unauthorized to edit user %s" +msgstr "Nu sunteți autorizat să editați utilizatorul %s" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Cheie duplicat \"%s\"" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Utilizatorul nu a fost găsit" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Această denumire de grup deja există în baza de date" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profil actualizat" -#: ckan/logic/validators.py:415 +#: ckan/controllers/user.py:245 #, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Lungimea etichetei \"%s\" este mai mică decît minimul necesar %s" +msgid "Unauthorized to create user %s" +msgstr "Nu sunteți autorizat pentru a crea utilizatorul %s" -#: ckan/logic/validators.py:419 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Lungimea etichetei \"%s\" este mai mare decît maximul necesar %i" +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Captcha incorectă. Mai încercați." -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:265 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Eticheta \"%s\" trebuie să conţină caractere alfanumerice sau simboluri: -_." -" " +"Utilizatorul \"%s\" este acum înregistrat, dar dumneavoastră sunteţi " +"conectat ca \"%s\" de înainte" + +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Nu sunteți autorizat să editați utilizatorul." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:320 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Eticheta \"%s\" nu trebuie să fie majusculă" +msgid "User %s not authorized to edit %s" +msgstr "Utilizatorul %s nu ste autorizat să editeze %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" msgstr "" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Acest nume de utilizator nu este disponibil." - -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Indicați ambele parole" - -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" msgstr "" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Parola trebuie să conțină cel puțin 4 caractere" - -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Parolele introduse nu se potrivesc" - -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." +#: ckan/controllers/user.py:386 +msgid "incorrect password" msgstr "" -"Editarea nu este permisă, fiind privită ca spam. Vă rugăm să evitați link-" -"uri în descriere." -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Numele trebuie să conțină cel puțin %s caractere" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Autentificarea a eșuat. Nume de utilizator sau parolă greșită." -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Acest vocabular de nume este deja în uz." +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Nu sunteți autorizat șă solicitați resetarea parolei." -#: ckan/logic/validators.py:633 +#: ckan/controllers/user.py:490 #, 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:642 -msgid "Tag vocabulary was not found." -msgstr "Vocabularul de etichete nu a fost găsit" +msgid "\"%s\" matched several users" +msgstr "\"%s\" coincide cu mai mulți utilizatori" -#: ckan/logic/validators.py:655 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Eticheta %s nu aparţine vocabularului %s" +msgid "No such user: %s" +msgstr "Nu există utilizatorul %s" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Nici un nume de etichetă" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Verificați inbox-ul pentru codul de resetare" -#: ckan/logic/validators.py:674 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Eticheta %s deja aparţine vocabularului %s" +msgid "Could not send reset link: %s" +msgstr "Nu am putut transmite link-ul de resetare: %s" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Indicați un URL valabil" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Nu sunteți autorizat să resetați parola." -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "rolul nu există." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Cheia de resetare nu este valabilă. Mai incercați." -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Seturi de date fără organizaţii nu pot fi private" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Parola a fost resetată." -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Nu o listă" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Parola trebuie să conțină cel puțin 4 caractere." -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Nu un șir" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Parolele introduse nu coincid." -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Trebuie să introduceți parola" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Articolul urmărit nu a fost găsit" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} nu a fost găsit" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Totul" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Lipsa valorii" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Crează obiectul %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Crează relaţia pachet: %s %s %s" +#: ckan/lib/activity_streams.py:60 +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/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Crează obiectul membru %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} a actualizat grupul {group}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Încercarea de a crea o organizație ca un grup" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} a actualizat organizația {organization}" -#: ckan/logic/action/create.py:881 -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/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} a actualizat setul de date {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Trebuie să furnizaţi un rating ( parametrul ''rating'')." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} a schimbat suplimentar {extra} al setului de date {dataset}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Rating trebuie să fie o valoare întreagă" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} a actualizat resursa {resource} în setul de date {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Rating trebuie să fie între %i și %i." +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} a actualizat porfilul" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} a șters grupul {group}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Trebuie să fiți conectat pentru a urmări utilizatorii" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} a șters organizația {organization}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Nu puteți să vă urmăriți" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} a șters setul de date {dataset}" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Deja urmăriți {0}" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} a șters suplimentar {extra} din setul de date {dataset}" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -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/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} a șters resursa {resource} din setul de date {dataset}" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Utilizatorul {username} nu există." +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} a creat grupul {group}" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Trebuie să fiți conectat pentru a urmări un grup." +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} a creat organizația {organization}" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} a creat setul de date {dataset}" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Șterge pachetul: %s" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} a adăugat suplimentar {extra} la setul de date {dataset}" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Șterge %s" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} a adăugat resursa {resource} la setul de date {dataset}" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Șterge Membrul: %s" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} s-a conectat" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id-ul nu se regăseşte în date" +#: ckan/lib/activity_streams.py:115 +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/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Nu a putut fi găsit în vocabular \"%s\"" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} urmărește {dataset}" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Nu a putut fi găsit cuvîntul cheie \"%s\"" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} urmărește {user}" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Trebuie să fiţi conectat pentru a anula urmărirea." +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} urmărește {group}" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Nu urmăriți {0}." +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Resursa nu a fost găsită." +#: 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/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Nu specificaţi dacă utilizaţi parametrul de ''interogare''" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Ianuarie" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Trebuie să fie : pereche(i)" +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Februarie" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Cîmpul \"{field}\" nu este recunoscut în resource_search." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Martie" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Pachetul nu a fost găsit." +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Aprilie" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Actualizaţi obiectul %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Mai" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Actualizaţi relaţia pachet: %s %s %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Iunie" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "Starea sarcină nu a fost găsită." +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Iulie" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organizația nu a fost găsită." +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "August" -#: 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/lib/formatters.py:51 +msgid "September" +msgstr "Septembrie" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Utilizatorul %s nu este autorizat să editeze aceste grupuri" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Octombrie" -#: 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/lib/formatters.py:59 +msgid "November" +msgstr "Noiembrie" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Decembrie" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -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/lib/formatters.py:114 +msgid "Just now" +msgstr "Chiar acum" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} minut în urmâ" +msgstr[1] "{mins} minute în urmă" +msgstr[2] "{mins} minute în urmă" -#: 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/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} oră în urmă" +msgstr[1] "{hours} ore în urmă" +msgstr[2] "{hours} ore în urmă" -#: 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/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} o zi în urmă" +msgstr[1] "{days} cîteva zile în urmă" +msgstr[2] "{days} zile în urmă" -#: ckan/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/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} lună în urmă" +msgstr[1] "{months} luni în urmă" +msgstr[2] "{months} luni în urmă" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" -msgstr "" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Grupul nu a fost găsit." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Se cere o cheie API valabilă pentru a crea un pachet" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Se cere o cheie API valabilă pentru a crea un grup" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Utilizatorul %s nu este autorizat să adauge membri" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Utilizatorul %s nu ste autorizat să editeze grupul %s" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: 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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: 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/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Neautorizat" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: 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/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "Utilizatorul %s nu este autorizat să citească pachetul %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Actualizați avatarul la gravatar.com" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Utilizatorul %s nu este autorizat să citească %s" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Necunoscut" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Resursă fără denumire" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "Trebuie să fiți conectat pentru a accesa panoul de bord" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Set de date nou creat." -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "Utilizatorul %s nu este autorizat să editeze pachetul %s" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Resurse editate." -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Utilizatorul %s nu este autorizat să editeze resursa %s" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Setări editate." -#: ckan/logic/auth/update.py:100 -#, 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} vizualizare" +msgstr[1] "{number} vizualizări" +msgstr[2] "{number} vizualizări" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "Utilizatorul %s nu este autorizat să editeze organizația %s" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} vizualizare recentă" +msgstr[1] "{number} vizualizări recente" +msgstr[2] "{number} vizualizări recente" -#: ckan/logic/auth/update.py:145 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "Utilizatorul %s nu este autorizat să schimbe statutul grupului %s" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/update.py:162 -#, 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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Adresele e-mail ale recipienților nu sunt valabile!" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Trebuie să fiți autentificat pentru a edita utilizatorul" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "" + +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "" + +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Lipsește valoarea" -#: ckan/logic/auth/update.py:197 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to edit user %s" -msgstr "Utilizatorul %s nu este autorizat să editeze utilizatorul %s" +msgid "The input field %(name)s was not expected." +msgstr "Câmpul de intrare %(name)s nu a fost aşteptat" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Introduceți o valoare intreagă" + +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "Utilizatorul %s nu este autorizat să schimbe statutul revizuirii" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Pachetul de resurs(e) nevalabil" + +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Extras" -#: ckan/logic/auth/update.py:225 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to update task_status table" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Vocabularul de etichete \"%s\" nu există" + +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" msgstr "" -"Utilizatorul %s nu este autorizat să actualizeze tabelul de stare a " -"sarcinilor" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" msgstr "" -"Utilizatorul %s nu este autorizat să actualizeze tabelul de traducere a " -"termenilor" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Se cere o cheie API valabilă pentru a edita un pachet" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Organizația nu ezistă" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Se cere o cheie API valabilă pentru a edita un grup" +#: ckan/logic/validators.py:52 +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/model/license.py:222 -msgid "License not specified" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Unitate nevalabilă" + +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" msgstr "" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" - -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Data formatată incorect" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Nici un link nu este permis în mesajul de conectare" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Resursă" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Acest grup sau ID nu există." -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Altă (Deschisă)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Tip de activitate" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Altă (Domeniu Public)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Altă (Atribuire)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Acest nume nu poate fi utilizat" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Numele trebuie să conțină maximum %i caractere" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Altă (Ne comercială)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Altă (Nu este Deschisă)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Acest URL este deja utilizat." -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "depinde de %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Lungimea numelui \"%s\" este mai mică decît minimul necesar %s" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "este dependent de %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Lungimea numelui \"%s\" este mai mare decît maximul necesar %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "derivă din %s" +msgid "Version must be a maximum of %i characters long" +msgstr "Versiunea trebuie să conțină maximum %i caractere" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "are derivare %s" +msgid "Duplicate key \"%s\"" +msgstr "Cheie duplicat \"%s\"" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "link-uri la %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Această denumire de grup deja există în baza de date" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "este legată de %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Lungimea etichetei \"%s\" este mai mică decît minimul necesar %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "este un copil de %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Lungimea etichetei \"%s\" este mai mare decît maximul necesar %i" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "este un părinte de %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Eticheta \"%s\" trebuie să conţină caractere alfanumerice sau simboluri: -_." +" " -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "are frate %s" +msgid "Tag \"%s\" must not be uppercase" +msgstr "Eticheta \"%s\" nu trebuie să fie majusculă" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Se încarcă..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Nu există API pentru a încărca date în aceată resursă" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Acest nume de utilizator nu este disponibil." -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Nu a reușit să se încarce datele de informații API" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Indicați ambele parole" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Nu a fost găsit" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Introduceți..." +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Parola trebuie să conțină cel puțin 4 caractere" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Input-ul este prea scurt, ar trebuie să fie minim un caracter" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Parolele introduse nu se potrivesc" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Acest formular conține modificari care nu au fost salvate" +#: ckan/logic/validators.py:611 +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/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Confirmați Acțiunea" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Numele trebuie să conțină cel puțin %s caractere" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Sunteți sigur că doriți să efectuați această acțiune?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Acest vocabular de nume este deja în uz." -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Confirm" +#: ckan/logic/validators.py:634 +#, 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/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Anulare" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Vocabularul de etichete nu a fost găsit" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Urmăriți" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Eticheta %s nu aparţine vocabularului %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Anulați urmărirea" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Nici un nume de etichetă" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Încărcare" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Eticheta %s deja aparţine vocabularului %s" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Indicați un URL valabil" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "rolul nu există." -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Imagine" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Seturi de date fără organizaţii nu pot fi private" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Nu o listă" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Nu un șir" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Încărcați un fișier" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Eroare" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Crează obiectul %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Resursă încărcată" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Crează relaţia pachet: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Incapabil să încarc fișierul" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Crează obiectul membru %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Incapabil să autentific încărcarea" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Încercarea de a crea o organizație ca un grup" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -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:31 -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-reorder.js:8 -msgid "Reorder resource view" +#: ckan/logic/action/create.py:893 +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/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Editează" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Mai mult" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Trebuie să furnizaţi un rating ( parametrul ''rating'')." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Ascunde" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Rating trebuie să fie o valoare întreagă" -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/action/create.py:905 #, 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" +msgid "Rating must be between %i and %i." +msgstr "Rating trebuie să fie între %i și %i." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Alimentat de CKAN " +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Trebuie să fiți conectat pentru a urmări utilizatorii" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Setările Sysadmin-ului" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Nu puteți să vă urmăriți" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Vezi profilul" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Deja urmăriți {0}" -#: ckan/templates/header.html:26 -#, 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 elemente noi)" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +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/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Tablou de bord" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Utilizatorul {username} nu există." -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Editează setările" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Trebuie să fiți conectat pentru a urmări un grup." -#: ckan/templates/header.html:37 -msgid "Settings" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Ieșire" - -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Autentificare" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Șterge pachetul: %s" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Înregistrare" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Șterge %s" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Seturi de date" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Șterge Membrul: %s" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Caută Seturi de Date" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id-ul nu se regăseşte în date" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Căutare" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Nu a putut fi găsit în vocabular \"%s\"" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Nu a putut fi găsit cuvîntul cheie \"%s\"" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "A incărca mai puţin" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Trebuie să fiţi conectat pentru a anula urmărirea." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "A incărca mai mult" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Nu urmăriți {0}." -#: 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/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Resursa nu a fost găsită." -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administrare" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Nu specificaţi dacă utilizaţi parametrul de ''interogare''" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Sysadmin-i" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Trebuie să fie : pereche(i)" -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Configurare" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Cîmpul \"{field}\" nu este recunoscut în resource_search." -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Gunoi" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Pachetul nu a fost găsit." -#: ckan/templates/admin/config.html:16 -#: 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/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Actualizaţi obiectul %s" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Resetare" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Actualizaţi relaţia pachet: %s %s %s" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "Starea sarcină nu a fost găsită." -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN opțiuni configurare" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organizația nu a fost găsită." -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 #, 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" +msgid "User %s not authorized to create packages" +msgstr "Utilizatorul %s nu este autorizat să creeze pachete" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Utilizatorul %s nu este autorizat să editeze aceste grupuri" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:38 #, 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

" +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/templates/admin/trash.html:20 -msgid "Purge" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +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/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "Date API CKAN" - -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" msgstr "" -"Acces la datele de resurse prin intermediul unui API cu suport de interogare" -" puternic" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -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/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "obiective" +#: 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/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +#: 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/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Crează" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Actualizează / Introduce" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Grupul nu a fost găsit." -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Se cere o cheie API valabilă pentru a crea un pachet" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Se cere o cheie API valabilă pentru a crea un grup" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Utilizatorul %s nu este autorizat să adauge membri" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Utilizatorul %s nu ste autorizat să editeze grupul %s" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Exemplu: Javascript" +#: 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/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" +#: 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/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Exemplu: Python" +#: 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/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "" +#: 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/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Apasă aici pentru mai multă informație." +#: 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/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Descarcă resursa" +#: 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/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Browserul Dvs nu susține iframes." +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Neautorizat" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Previzualizarea nu este disponibilă." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Utilizatorul %s nu este autorizat să citească aceste pachete" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Mai multe detalii..." +#: 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/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/get.py:143 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "" +msgid "User %s not authorized to read resource %s" +msgstr "Utilizatorul %s nu este autorizat să citească %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Trebuie să fiți conectat pentru a accesa panoul de bord" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Utilizatorul %s nu este autorizat să editeze pachetul %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Utilizatorul %s nu este autorizat să editeze resursa %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "" +#: ckan/logic/auth/update.py:100 +#, 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/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Utilizatorul %s nu este autorizat să editeze organizația %s" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "" +#: ckan/logic/auth/update.py:145 +#, 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/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "" +#: ckan/logic/auth/update.py:162 +#, 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/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Trebuie să fiți autentificat pentru a edita utilizatorul" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Utilizatorul %s nu este autorizat să editeze utilizatorul %s" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" msgstr "" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Cîmp Personalizat" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Utilizatorul %s nu este autorizat să schimbe statutul revizuirii" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" +#: ckan/logic/auth/update.py:226 +#, 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/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "AreaText" +#: ckan/logic/auth/update.py:240 +#, 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/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Selectează" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Se cere o cheie API valabilă pentru a edita un pachet" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Flux de activitate" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Se cere o cheie API valabilă pentru a edita un grup" -#: 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/model/license.py:222 +msgid "License not specified" +msgstr "" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Adaugă un Grup" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Adaugă o Formă" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: 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/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: 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/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: 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/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Editează Grupul" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: 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/model/license.py:301 +msgid "Other (Open)" +msgstr "Altă (Deschisă)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Follower-i" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Altă (Domeniu Public)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Altă (Atribuire)" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Adăugați Grup" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Caută grupuri..." +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Nume Crescător" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Altă (Ne comercială)" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Nume Descrescător" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Altă (Nu este Deschisă)" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "depinde de %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Creăm unul nou?" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "este dependent de %s" -#: 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/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "derivă din %s" -#: 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/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "are derivare %s" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Adaugă Membru" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "link-uri la %s" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "este legată de %s" + +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "este un copil de %s" + +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "este un părinte de %s" + +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "are frate %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +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 +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:195 +msgid "Start typing…" +msgstr "Introduceți..." + +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Nu a fost găsit" + +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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 +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:97 +msgid "Please Confirm Action" +msgstr "Confirmați Acțiunea" + +#: ckan/public/base/javascript/modules/confirm-action.js:100 +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:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Confirm" + +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Anulați urmărirea" + +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Urmăriți" + +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" msgstr "" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Încărcare" + +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" msgstr "" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" msgstr "" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Rolul" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Sunteți sigur că doriți să ștergeți acest membru?" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Șterge" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Încărcați un fișier" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Salvează" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Eroare" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Ce sunt roluri?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Incapabil să încarc fișierul" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Incapabil să autentific încărcarea" -#: ckan/templates/group/member_new.html:81 +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Resursă încărcată" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +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:272 msgid "" -"

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

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

" +"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/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/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Actualizează Grup" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Crează Grup" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Editează" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevanță" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Mai mult" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Ultima Modificare" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Ascunde" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Eroare %(error_code)s" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Caută seturi de date..." +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Despre {0}" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Seturi de date în grupul: {group}" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API CKAN" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" msgstr "" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Denumire" +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Alimentat de CKAN " -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Grupul meu" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Setările Sysadmin-ului" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Vezi profilul" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Descriere" +#: ckan/templates/header.html:26 +#, 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 elemente noi)" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Scurtă informație despre grupul meu" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Tablou de bord" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Sunteți sigur că doriți să ștergeți acest Grup?" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Editează setările" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Salvează Grup" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Ieșire" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Seturi de date" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Autentificare" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Vezi {name}" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Înregistrare" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Seturi de date" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Ce sunt Grupuri?" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Caută Seturi de Date" -#: 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. " +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Căutare" + +#: ckan/templates/page.html:6 +msgid "Skip to content" msgstr "" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Compară" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "A incărca mai puţin" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Sters" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "A incărca mai mult" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "citește 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/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Revizuire" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administrare" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Sysadmin-i" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Autor" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Configurare" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Gunoi" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Bun Venit" +#: ckan/templates/admin/config.html:16 +#: 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/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/

" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Resetare" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" 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/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN opțiuni configurare" -#: ckan/templates/home/snippets/promoted.html:10 +#: ckan/templates/admin/config.html:33 +#, python-format 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 " +"

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 "" -"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/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Confirmați Resetarea" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" msgstr "" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" +#: 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/home/snippets/search.html:16 -msgid "Popular tags" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" msgstr "" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "set de date" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "seturi de date" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Apasă aici pentru mai multă informație." -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Descarcă resursa" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Previzualizarea nu este disponibilă." -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Mai multe detalii..." -#: ckan/templates/macros/form.html:265 -msgid "This field is required" +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." msgstr "" -#: ckan/templates/macros/form.html:265 -msgid "Custom" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" msgstr "" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" msgstr "" -#: ckan/templates/macros/form.html:395 -msgid "Required field" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" msgstr "" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" - -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL-ul Imaginii" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" msgstr "" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" 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/development/snippets/form.html:8 +msgid "Large" +msgstr "" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Adaugă set de date" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" msgstr "" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" msgstr "" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" msgstr "" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Cîmp Personalizat" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" msgstr "" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Proiect" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "AreaText" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Privat" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Selectează" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Această organizație nu are seturi de date asociate" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Flux de activitate" -#: 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/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/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/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Adaugă un Grup" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Adaugă Organizația" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Adaugă o Formă" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "Caută organizații..." +#: 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/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "" +#: 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/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nume de utilizator" +#: ckan/templates/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/organization/member_new.html:50 -msgid "Email address" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" msgstr "" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Editează Grupul" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" +#: ckan/templates/group/edit_base.html:23 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/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" msgstr "" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Crează o Organizație" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Adăugați Grup" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Actualizează Organizația" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Caută grupuri..." -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Crează Organizația" +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Adaugă Set de Date" +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Creăm unul nou?" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" +#: 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/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Ce sunt Organizații?" +#: 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/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/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Adaugă Membru" -#: 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. " +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Organizația Mea" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" msgstr "" -#: 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/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -"Sigur doriți să ștergeți această Organizație? Aceasta va șterge toate " -"seturile de date publice și private care aparțin aceastei organizație." -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Salvează Organizația" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Rolul" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/package/base.html:22 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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Șterge" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Ce sunt seturile de date?" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Ce sunt roluri?" -#: ckan/templates/package/base_form_page.html:25 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" msgstr "" -#: 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/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/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/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Actualizează Grup" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Vezi setul de date" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Crează Grup" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Caută seturi de date..." -#: 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/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Seturi de date în grupul: {group}" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" 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/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Denumire" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Grupul meu" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" msgstr "" -#: ckan/templates/package/new_package_form.html:15 -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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Scurtă informație despre grupul meu" -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Sunteți sigur că doriți să ștergeți acest Grup?" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Salvează Grup" -#: 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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Vezi {name}" -#: 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. " +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" msgstr "" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Adaugă" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Ce sunt Grupuri?" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/group/snippets/helper.html:8 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +" 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/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Compară" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Sters" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Eroare:" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "citește mai mult" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Revizuire" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" msgstr "" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Ultima actualizare" - -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Autor" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" msgstr "" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Bun Venit" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" +#: 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/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Bun venit la CKAN" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" +#: 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/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" msgstr "" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" msgstr "" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" msgstr "" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" msgstr "" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" msgstr "" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Descarcă" - -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "set de date" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "seturi de date" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" msgstr "" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" msgstr "" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" msgstr "" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" msgstr "" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" msgstr "" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" +#: ckan/templates/macros/form.html:265 +msgid "Custom" msgstr "" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" msgstr "" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Informație adițională" - -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Cîmp" - -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Valoare" - -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" +#: ckan/templates/macros/form.html:395 +msgid "Required field" msgstr "" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Creat" - -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Format" - -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licență" - -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL-ul Imaginii" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" msgstr "" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" 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/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Editează seturile de date" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Adaugă set de date" -#: 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. " +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" 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). " +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" msgstr "" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" msgstr "" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" msgstr "" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Proiect" -#: 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/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Privat" -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Această organizație nu are seturi de date asociate" -#: 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/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/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Versiune" +#: 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/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Adaugă Organizația" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Caută organizații..." -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nume de utilizator" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/member_new.html:81 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +"

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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Date API" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Titlu" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "ex. Un titlu descriptiv" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Crează o Organizație" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "eg. setul-meu-de-date" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Actualizează Organizația" -#: 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/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Crează Organizația" -#: 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/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Adaugă Set de Date" -#: ckan/templates/package/snippets/package_basic_fields.html:41 -msgid "" -" License definitions and additional information can be found at opendefinition.org " +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organizație" +#: 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/package/snippets/package_basic_fields.html:74 -msgid "No organization" +#: 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/package/snippets/package_basic_fields.html:89 -msgid "Visibility" +#: 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/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Public" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Organizația Mea" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" 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/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Informație scurtă despre organizația mea" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." msgstr "" +"Sigur doriți să ștergeți această Organizație? Aceasta va șterge toate " +"seturile de date publice și private care aparțin aceastei organizație." -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Salvează Organizația" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "" +#: ckan/templates/package/base.html:22 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/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/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Ce sunt seturile de date?" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" +#: 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/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/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/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Actualizează Resursa" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Vezi setul de date" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: 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/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Citeva notițe utile despre date" - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "eg. CSV, XML sau JSON" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Actualizare" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "ex. 2012-06-05" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Mărimea Fișierului" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "ex. 1024" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "ex. aplicație/json" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "" -#: ckan/templates/package/snippets/resource_form.html:65 -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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Actualizează set de date" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Precedent" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Adaugă date la setul de date" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Salvează și adaugă alatul" +#: 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/snippets/resource_form.html:78 -msgid "Finish" +#: 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/snippets/resource_help.html:2 -msgid "What's a resource?" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New 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." +#: 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/snippets/resource_item.html:24 -msgid "Explore" +#: 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/snippets/resource_item.html:36 -msgid "More information" -msgstr "" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Adaugă" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Cod" - -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Date și Resurse" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Descarcă" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" msgstr "" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resource_read.html:68 #, python-format -msgid "Read dataset as of %s" +msgid "Source: %(dataset)s" 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" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." msgstr "" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" +#: ckan/templates/package/resource_read.html:122 +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/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Informație adițională" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Cîmp" + +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valoare" + +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" msgstr "" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Creat" + +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Format" + +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licență" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" msgstr "" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" msgstr "" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" msgstr "" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, python-format +msgid "" +"

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

" msgstr "" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Schimbări" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" +#: 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/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entitate" +#: 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/snippets/activity_item.html:3 -msgid "New activity item" +#: 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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Lățime:" +#: 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/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Înălțime:" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:37 +#: ckan/templates/package/snippets/additional_info.html:42 +#: ckan/templates/package/snippets/package_metadata_fields.html:20 +msgid "Maintainer" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versiune" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" msgstr "" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" msgstr "" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" +#: 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/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" msgstr "" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." msgstr "" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Home" +#: 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/snippets/language_selector.html:4 -msgid "Language" -msgstr "Limba" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titlu" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "ex. Un titlu descriptiv" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "eg. setul-meu-de-date" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "" +#: 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/snippets/organization.html:48 -msgid "There is no description for this organization" +#: 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:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Acest set de date nu are descriere" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizație" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Transmite" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" msgstr "" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filtrează Rezultatele" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Public" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" msgstr "" -#: ckan/templates/snippets/search_form.html:86 +#: ckan/templates/package/snippets/package_form.html:28 msgid "" -"

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

" +"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/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}\"" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" 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" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" 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/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" 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/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/snippets/search_result_text.html:24 -msgid "No groups found" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" 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/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/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" 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/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Actualizează Resursa" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" msgstr "" -#: ckan/templates/snippets/social.html:5 -msgid "Social" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" msgstr "" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" 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:82 -msgid "Email" -msgstr "Email" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Citeva notițe utile despre date" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "eg. CSV, XML sau JSON" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" msgstr "" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "ex. 2012-06-05" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Mărimea Fișierului" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "ex. 1024" + +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" msgstr "" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Seturile mele de date" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "ex. aplicație/json" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Organizațiile mele" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Sunteți sigur că doriți să ștergeți această resursă?" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Grupurile mele" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Precedent" + +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Salvează și adaugă alatul" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" msgstr "" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." +#: 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/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" msgstr "" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" 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/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" msgstr "" -#: ckan/templates/user/edit.html:19 +#: ckan/templates/package/snippets/resource_view.html:66 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" msgstr "" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Cod" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" msgstr "" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "ex. joe@example.com" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Date și Resurse" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" msgstr "" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" msgstr "" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -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/user/edit_user_form.html:29 -msgid "Sysadmin Password" -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 "Adaugă date" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Parola" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Confirmați parola" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" msgstr "" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" msgstr "" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Actualizează Profilul" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Toți Utilizatori" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +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" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" msgstr "" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Aveți nevoie de Cont?" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" msgstr "" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Crează un Cont" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" msgstr "" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Schimbări" + +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" msgstr "" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Ați uitat parola?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entitate" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" msgstr "" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" msgstr "" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Ține-mă minte" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Lățime:" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Înălțime:" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." msgstr "" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" 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?" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" msgstr "" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" msgstr "" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" msgstr "" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Nume complet" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Home" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Crează Cont" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Limba" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Resetează-ți Parola" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Resetarea Parolei" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Actualizează Parola" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" msgstr "" -#: ckan/templates/user/perform_reset.html:40 -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/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Acest set de date nu are descriere" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Utilizatorul nu a creat nici un set de date" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Transmite" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" msgstr "" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filtrează Rezultatele" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" msgstr "" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Aceasta înseamnă că nu puteți accesa " +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Membru din" +#: 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/user/read_base.html:96 -msgid "API Key" -msgstr "Cheia API" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Resetați parola" +#: 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/user/request_reset.html:6 -msgid "Password reset" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" msgstr "" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -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/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" msgstr "" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Activitate din:" +#: 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/user/snippets/followee_dropdown.html:23 -msgid "Search list..." +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" msgstr "" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Nu urmăriți nimic" +#: 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/user/snippets/followers.html:9 -msgid "No followers" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" msgstr "" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Caută Utilizatori" +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" msgstr "" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" +#: ckan/templates/snippets/social.html:5 +msgid "Social" msgstr "" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" msgstr "" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" +#: 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:82 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" msgstr "" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" msgstr "" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" msgstr "" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." +#: 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 "" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" +#: 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:16 +msgid "Create one now?" msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: 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 "" -#: 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" +#: ckan/templates/user/edit.html:19 +msgid "" +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Prefixul Țării" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" msgstr "" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: 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 "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Aceast grup nu are descriere" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Parola" + +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Confirmați parola" + +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" msgstr "" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Actualizează Profilul" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Toți Utilizatori" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" +#: 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 "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Aveți nevoie de Cont?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Crează un Cont" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Ați uitat parola?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Ține-mă minte" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Numărul total de seturi de date" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Dată" - -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Total seturi de date" - -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Revizuiri Seturi de Date per Săptămînă" - -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Toate revizuirile seturilor de date" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Seturi de date noi" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Înregistrare" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Cele mai apreciate" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Înregistrare pentru Cont" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Cele mai editate seturi de date" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nume complet" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Numărul de editări" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Crează Cont" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Resetează-ți Parola" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Resetarea Parolei" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Numărul seturilor de date" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Actualizează Parola" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Top Cuvinte Cheie" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Introduceți parola nouă și noi vă com actualiza contul" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Utilizatorul nu a creat nici un set de date" + +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Numărul seturilor de date" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Meniu Statistică" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Aceasta înseamnă că nu puteți accesa " -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Număr Total de Seturi de Date" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Membru din" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" +#: ckan/templates/user/read_base.html:96 +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:6 +msgid "Password reset" msgstr "" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Activitate din:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" +#: 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 "" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Caută Utilizatori" diff --git a/ckan/i18n/ru/LC_MESSAGES/ckan.mo b/ckan/i18n/ru/LC_MESSAGES/ckan.mo index 52ffd5b5bd6..8616590ea57 100644 Binary files a/ckan/i18n/ru/LC_MESSAGES/ckan.mo and b/ckan/i18n/ru/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/ru/LC_MESSAGES/ckan.po b/ckan/i18n/ru/LC_MESSAGES/ckan.po index a4e34f40c3a..d9dc939f6fc 100644 --- a/ckan/i18n/ru/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ru/LC_MESSAGES/ckan.po @@ -1,4546 +1,4662 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Sergey Motornyuk , 2017\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.3.4\n" +"Generated-By: Babel 2.4.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" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Функция авторизации не найдена: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Завершено" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Админ" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr " В процессе обработки" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Редактор" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Отправка" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Участник" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Ошибка" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Для этого действия необходимы права администратора." +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Загрузка не завершена" + +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Файлы не найдены" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Заголовок сайта" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Недостаточно прав для просмотра этой страницы" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Стиль" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Загрузить в Хранилище Данных" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Линия тэгов сайта" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Ошибка загрузки:" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Логотип тэга сайта" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Ошибка:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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 "О проекте" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Ошибка трассировки:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Текст страницы о проекте" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Статус" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Вводный Текст" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Последнее обновление" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Текст на главной странице" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Никогда" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Произвольное CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Загрузить Запись" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Настраиваемый CSS код внесен в заголовок страницы" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Детали" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Домашняя страница" +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Конец Записи" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Хранилище Данных" -#: ckan/controllers/admin.py:160 +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Ресурс DataStore не найден" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Невозможно удалить пакет %s так как вовремя проверки %s были найдены " -"неудаленные пакеты %s" -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "При удалении редакции %s возникла проблема %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Источник \"{0}\" не был найден." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Очищение заверншено" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Пользователь {0} не имеет прав для обновления ресурса {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Действие не вступило в силу" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Недостаточно прав для просмотра этой страницы" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "Доступ к данным ресурса через web API с поддержкой запросов" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Отказано в доступе" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Не найдено" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Endpoints" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Неверный запрос" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Data API может использоваться через следующие действия в API действий CKAN." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Неизвестное имя действия: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Создать" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Ошибка JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Обновить / Вставить" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Неверные данные запроса: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Запрос" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Невозможно упорядочить объект этого типа: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Запрос (через SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Невозможно прочитать объект этого типа: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Запрашиваем" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Невозможно задать такое имя: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Пример запроса (первые 5 результатов)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Невозможно добавить пакет в поисковый индекс" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Пример запроса (результаты содержащие \"jones\")" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Невозможно обновить объект такого типа: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Пример запроса (с SQL выражением)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Невозможно обновить поисковый индекс" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Пример: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Невозможно удалить объект такого типа: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Простой ajax (JSONP) запрос к API данных используя jQuery." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Проверка не указана" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Пример: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Версии с идентификатором %s не существует" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Потерян поисковый термин ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Лейбл" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Невозможно прочитать параметры: %r " +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Описание" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Неверный параметр поиска: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Сохранить" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Неизвестный регистр: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Ошибочное значение qjson: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Колонка" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Параметры запроса должны содержаться в словаре формата json." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "Тип" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Группа не найдена" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Идет загрузка..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Организация не найдена" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Данные API" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Неправильный тип группы" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "таблица" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Организации" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Отзывчивое отображение" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Группы" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Показать Колонки" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Теги" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "Скрыть/Показать Колонки" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Форматы" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Наборов данных на странице" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Неавторизованы на массовое обновление" - -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Недостаточно прав для создания группы" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Актуальность" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Пользователь %r не имеет достаточно прав для редактирования %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Ошибка целостности" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Время последнего изменения" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" msgstr "" -"Пользователь %r не имеет достаточно прав для редактирования прав " -"пользователя %s " -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Недостаточно прав чтобы удалить группу %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Организация была удалена." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Популярное" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -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 "Произвольный Текст" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "произвольный текст" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Недостаточно прав для добавления участника в группу %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Код страны" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Недостаточно прав для удаления участников группы %s " +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Участник группы был удален." +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -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/controllers/group.py:778 -msgid "CKAN Group Revision History" -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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Последние изменения в группе CKAN:" +#: 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 Пакеты данных" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -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 имеет ряд мощных функций. " -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Теперь вы следуете за {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Подписчики" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Вы более не следуете за {0}" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ресурсы" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Недостаточно прав для просмотра следующих %s" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Картинка" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." +#: 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 "" -"Этот сайт сейчас находится в режиме оффлайн. База данных не " -"инициализирована." -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" msgstr "" -"Пожалуйста обновите свой профайл и добавьте свой " -"электронный адрес." -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "%s использует Ваш email, если Вам необходимо сбросить свой пароль " +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "График" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "ка́рта" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Параметр \"{parameter_name}\" не является целым числом" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "Ошибка при загрузке просмотра" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Пакет данных не найден" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "Невозможно загрузить просмотр" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Неверный формат проверки: %r" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Недостаточно прав для просмотра пакета %s" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "История редакций CKAN" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Фильтры" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Последние изменения в пакете CKAN" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Недостаточно прав для создания пакета" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "например: 0" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Недостаточно прав для редактирования данного ресурса" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Количество строк" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Файлы не найдены" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "например: 100" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Недостаточно прав для обновления массива данных" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Тип графика" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Массив данных {id} не найден." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Вы должны добавить хотя бы один ресурс" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Ошибка" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Недостаточно прав для создания ресурса" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" msgstr "" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Невозможно добавить пакет в поисковый индекс." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Невозможно обновить поисковый индекс." +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Массив был удалён." - -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Недостаточно прав для удаления пакета %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Ресурс был удален." +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Всего пакетов данных" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Недостаточно прав для удаления ресурса %s" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Дата" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Все пакеты данных" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Редакции пакетов за неделю" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Недоступна выгрузка" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Все редакции пакетов данных" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Недостаточно прав для чтения массива данных %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Новые пакеты данных" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Недостаточно прав для просмотра файлов %s" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Самые популярные пакеты данных" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Средняя оценка" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Количество оценок" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Нет оценок" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Самые часто редактируемые пакеты данных" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Набор данных" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Предпросмотр не определен." +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Количество редакций" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "История прежних версий базы CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Нет редактируемых пакетов данных" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Последние изменения базы CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Самые большие группы" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Изменения затронули %s пакетов\n" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Группа" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Правки обновлены" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Количество пакетов" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Другое" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Нет групп" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Тэг не найден" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Самые популярные метки" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Ползователь не найден" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Имя тега" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Нет прав зарегистрировать пользователя." +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Количество пакетов" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Недостаточно прав для создания нового пользователя" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "Пользователи, создавшие наибольшее количество наборов данных" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Пользователь" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Пользователь не указан" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Меню статистики" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Недостаточно прав для измениния пользователя %s" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Всего пакетов данных" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Данные обновлены" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Текст" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Недостаточно прав для создания нового пользователя %s" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "сайт" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Вы неправильно указали КАПЧУ, попробуйте снова." +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL страницы" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" msgstr "" -"Пользователь \"%s\" зарегистрирован, но вы все еще находитесь в сессии как " -"пользователь \"%s\" " -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Нет прав редактировать пользователя." +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Ваш браузер не поддерживает фреймы." -#: ckan/controllers/user.py:320 +#: ckan/authz.py:182 #, python-format -msgid "User %s not authorized to edit %s" -msgstr "Пользователь %s не имеет право редактировать %s" - -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "" - -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Старый пароль" +msgid "Authorization function not found: %s" +msgstr "Функция авторизации не найдена: %s" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "некорректный пароль" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Админ" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Войти не удалось. Неправильный логин или пароль" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Редактор" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Нет прав на запрос о сбросе пароля." +#: ckan/authz.py:202 +msgid "Member" +msgstr "Участник" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" соответствует нескольким пользователям" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Для этого действия необходимы права администратора." -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Пользователя:%s нет" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Заголовок сайта" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Пожалуйста проверьте ваши входящие на наличие кода восстановления." +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Стиль" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Не удалось отослать ссылку на восстановление:%s" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Линия тэгов сайта" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Нет прав на сброс пароля." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Логотип тэга сайта" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Неправильный код восстановления. Попробуйте снова." - -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Ваш пароль был восстановлен." - -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Пароль должен содержать минимум 4 символа" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Введенные пароли не совпадают" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Текст страницы о проекте" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Вы должны ввести пароль" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Вводный Текст" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "сопровождающий элемент не был найден" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Текст на главной странице" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} не найдено" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Произвольное CSS" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Все" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Настраиваемый CSS код внесен в заголовок страницы" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Отсутствует значение" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Домашняя страница" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" msgstr "" +"Невозможно удалить пакет %s так как вовремя проверки %s были найдены " +"неудаленные пакеты %s" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} добавил тег {tag} к набору данных {dataset}" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "При удалении редакции %s возникла проблема %s" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} обновил группу {group}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Очищение заверншено" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} обновил организацию {organization}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Действие не вступило в силу" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} обновил набор данных {dataset}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Отказано в доступе" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} изменил дополнительно {extra} из набора данных {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Не найдено" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} обновил ресурс {resource} в наборе данных {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Неверный запрос" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} обновил свой профиль" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Неизвестное имя действия: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} удалил группу {group}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Ошибка JSON: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} удалил организацию {organization}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Неверные данные запроса: %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} удалил набор данных {dataset}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Невозможно упорядочить объект этого типа: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor}удалил дополнительно {extra} из набора данных {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Невозможно прочитать объект этого типа: %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} удалил ресурс {resource} из набора данных {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Невозможно задать такое имя: %s %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} создал группу {group}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Невозможно добавить пакет в поисковый индекс" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} создал организацию {organization}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Невозможно обновить объект такого типа: %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} создал набор данных {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Невозможно обновить поисковый индекс" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} добавил дополнительно {extra} в набор данных {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Невозможно удалить объект такого типа: %s %s" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} добавил ресурс {resource} в набор данных {dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Проверка не указана" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} подписал" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Версии с идентификатором %s не существует" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} удалил тег {tag} из набора данных {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Потерян поисковый термин ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} начался следующий {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Невозможно прочитать параметры: %r " -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} started following {user}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Неверный параметр поиска: %s" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} начался следующий {group}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Неизвестный регистр: %s" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Посмотреть" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Ошибочное значение qjson: %r" -#: 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/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Параметры запроса должны содержаться в словаре формата json." -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Январь" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Группа не найдена" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Февраль" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Организация не найдена" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Март" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Неправильный тип группы" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Апрель" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Организации" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Май" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Группы" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Июнь" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Теги" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Июль" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Форматы" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Август" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Лицензии" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Сентябрь" - -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Октябрь" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Пользователь %r не имеет достаточно прав для редактирования %s" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Ноябрь" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Неавторизованы на массовое обновление" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Декабрь" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Недостаточно прав для создания группы" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Только что" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Ошибка целостности" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} минуту спустя" -msgstr[1] "{mins} минут спустя" -msgstr[2] "{mins} минут спустя" -msgstr[3] "{mins} минут спустя" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "" +"Пользователь %r не имеет достаточно прав для редактирования прав " +"пользователя %s " -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} час назад" -msgstr[1] "{hours} часа назад" -msgstr[2] "{hours} часов назад" -msgstr[3] "{hours} часов назад" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Недостаточно прав чтобы удалить группу %s" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} день назад" -msgstr[1] "{days} дней назад" -msgstr[2] "{days} дней назад" -msgstr[3] "{days} дней назад" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Организация была удалена." -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} месяц назад" -msgstr[1] "{months} месяцев назад" -msgstr[2] "{months} месяцев назад" -msgstr[3] "{months} месяцев назад" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Группа была удалена" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s было удалено" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" msgstr "" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" - -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" - -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Недостаточно прав для добавления участника в группу %s" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Недостаточно прав для удаления участников группы %s " -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Участник группы был удален." -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Выберите две версии перед сравнением" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "История прежних версий группы" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Последние изменения в группе CKAN:" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Запись в лог" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Теперь вы следуете за {0}" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Вы более не следуете за {0}" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Недостаточно прав для просмотра следующих %s" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Этот сайт сейчас находится в режиме оффлайн. База данных не " +"инициализирована." -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Пожалуйста обновите свой профайл и добавьте свой " +"электронный адрес." -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s использует Ваш email, если Вам необходимо сбросить свой пароль " -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Обновите свой аватар на gravatar.com" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "Неверный запрос поиска: {error_message}" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Неизвестный" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Параметр \"{parameter_name}\" не является целым числом" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Безымянный ресурс" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Пакет данных не найден" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Создать новый пакет данных." +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Неверный формат проверки: %r" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Отредактированные ресурсы." +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Просмотр набора данных типа \"{package_type}\" не поддерживается " +"({file_!r})." -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Отредактированные настройки." +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Недостаточно прав для просмотра пакета %s" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} просмотр" -msgstr[1] "{number} просмотры" -msgstr[2] "{number} просмотры" -msgstr[3] "{number} просмотры" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "История редакций CKAN" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} последние просмотр" -msgstr[1] "{number} последние просмотры" -msgstr[2] "{number} последние просмотры" -msgstr[3] "{number} последние просмотры" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Последние изменения в пакете CKAN" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Недостаточно прав для создания пакета" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Адрес получателя не доступен!" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Недостаточно прав для редактирования данного ресурса" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "организация" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Недостаточно прав для обновления массива данных" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "группа" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Массив данных {id} не найден." -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Отсутствующая величина" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Вы должны добавить хотя бы один ресурс" -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "Веденное поле %(name)s не было ожидаемо." +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Недостаточно прав для создания ресурса" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Пожалуйста, введите целое число" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Недостаточно прав дла создания ресурсов для этого пакета" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Ресурсы" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Невозможно добавить пакет в поисковый индекс." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Внешние ресурс(ы) данных недействительны" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Невозможно обновить поисковый индекс." -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Дополнения" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Массив был удалён." -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Тег словаря \"%s\" не существует" - -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Пользователь" +msgid "Unauthorized to delete package %s" +msgstr "Недостаточно прав для удаления пакета %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Набор данных" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Ресурс был удален." -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Группа" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Недостаточно прав для удаления ресурса %s" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" msgstr "" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" msgstr "" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Организация не существует" - -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Вы не можете добавить пакет данных в эту организацию" - -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Неверное число" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Недоступна выгрузка" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Должно быть натуральным числом" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Недостаточно прав для чтения массива данных %s" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Должно быть положительным целым числом" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Недостаточно прав для просмотра файлов %s" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Формат даты указан неверно" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Недостаточно прав для редактирования ресурса" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Гиперссылки в log_message запрещены." +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Просмотр не найден" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Набор данных с таким идентификатором уже существует" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Тип просмотра не найден" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Ресурсы" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Это имя группы или ID не существует." +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Тип процесса" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Предпросмотр не определен." -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "История прежних версий базы CKAN" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Это имя не может быть использовано" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Последние изменения базы CKAN" -#: ckan/logic/validators.py:337 +#: ckan/controllers/revision.py:110 #, python-format -msgid "Must be at least %s characters long" -msgstr "Длина слова должна быть не менее %s символов" +msgid "Datasets affected: %s.\n" +msgstr "Изменения затронули %s пакетов\n" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Имя должно содержать максимум %i символов" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Правки обновлены" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Другое" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Этот URL уже используется" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Тэг не найден" -#: ckan/logic/validators.py:365 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Длина названия \"%s\" меньше чем минимальная %s" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Нет прав зарегистрировать пользователя." -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Имя \"%s\" короче максимального значения %s" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Недостаточно прав для создания нового пользователя" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Версия должна содержать максимум %i символов" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Недостаточно прав для удаления пользователя ID: \"{user_id}\"." + +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Пользователь не указан" -#: ckan/logic/validators.py:393 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Duplicate key \"%s\"" -msgstr "Создать дубль ключа \"%s\"" +msgid "Unauthorized to edit user %s" +msgstr "Недостаточно прав для измениния пользователя %s" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Группа с таким названием уже существует" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Ползователь не найден" -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Тег \"%s\" короче минимального значения %s" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Данные обновлены" -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:245 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Тег \"%s\" короче максимального значения %i" +msgid "Unauthorized to create user %s" +msgstr "Недостаточно прав для создания нового пользователя %s" -#: ckan/logic/validators.py:427 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "Тег \"%s\" должен содержать числа, буквы или такие символы: -_." +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Вы неправильно указали КАПЧУ, попробуйте снова." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:265 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Тег \"%s\" должен содержать только строчные буквы" - -#: ckan/logic/validators.py:544 -msgid "User names must be strings" +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" +"Пользователь \"%s\" зарегистрирован, но вы все еще находитесь в сессии как " +"пользователь \"%s\" " -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Это имя пользователя уже используется" - -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Пожалуйста укажите оба пароля." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Нет прав редактировать пользователя." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "" +#: ckan/controllers/user.py:320 +#, python-format +msgid "User %s not authorized to edit %s" +msgstr "Пользователь %s не имеет право редактировать %s" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Ваш пароль должен быть длиной не менее 4 символов" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Неверный пароль" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Пароли не совпадают" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Старый пароль" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "" -"Редактирование запрещено, т.к. текст выглядит, как спам. Избегайте " -"гиперссылок в описании, пжл." +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "некорректный пароль" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Имя должно состоять как минимум из %s букв." +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Войти не удалось. Неправильный логин или пароль" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Это название словаря уже используется." +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Нет прав на запрос о сбросе пароля." -#: ckan/logic/validators.py:633 +#: ckan/controllers/user.py:490 #, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" -"Невозможно изменить значение ключа %s на %s. Ключ доступен только для чтения" - -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Тег словаря не был найден" +msgid "\"%s\" matched several users" +msgstr "\"%s\" соответствует нескольким пользователям" -#: ckan/logic/validators.py:655 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Тег %s не относится к словарю %s" +msgid "No such user: %s" +msgstr "Пользователя:%s нет" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Нет имени тега" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Пожалуйста проверьте ваши входящие на наличие кода восстановления." -#: ckan/logic/validators.py:674 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Tag %s уже добавлен в словарь %s" +msgid "Could not send reset link: %s" +msgstr "Не удалось отослать ссылку на восстановление:%s" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Укажите действительный URL" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Нет прав на сброс пароля." -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "Роль не существует." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Неправильный код восстановления. Попробуйте снова." -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Массивы без организации не могут быть частными." +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Ваш пароль был восстановлен." -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Не список" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Пароль должен содержать минимум 4 символа" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Не строка" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Введенные пароли не совпадают" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Вы должны ввести пароль" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" - -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "сопровождающий элемент не был найден" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} не найдено" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Все" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Создать объект %s" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Отсутствует значение" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Связать пакеты: %s %s %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Переход на внешний сайт не разрешен" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Создать объект-звено %s" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} добавил тег {tag} к набору данных {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Попытка создать организацию как группу" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} обновил группу {group}" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "Введите идентификатор пакета или имя (параметр \"пакет\")." +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} обновил организацию {organization}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Задайте рейтинг (параметр \"рейтинг\")." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} обновил набор данных {dataset}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Значение рейтинга должно быть целым числом." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} изменил дополнительно {extra} из набора данных {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Значение рейтинга должно быть в пределах %i и %i." +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} обновил ресурс {resource} в наборе данных {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} обновил свой профиль" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Вы должны быть авторизованы, чтобы следить за пользователями " +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} удалил группу {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Вы не можете следить за пользователем" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} удалил организацию {organization}" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Вы уже следуете за {0}" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} удалил набор данных {dataset}" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Вы должны быть авторизованы, чтобы следить за пакетом данных" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor}удалил дополнительно {extra} из набора данных {dataset}" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Пользователь {username} не существует." +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} удалил ресурс {resource} из набора данных {dataset}" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Вы должны быть авторизованы, чтобы следить за группой " +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} создал группу {group}" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} создал организацию {organization}" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: удалить пакет: %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} создал набор данных {dataset}" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: удалить %s" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} добавил дополнительно {extra} в набор данных {dataset}" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Удалить Участника: %s" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} добавил ресурс {resource} в набор данных {dataset}" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id нет в данных" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} подписал" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Нельзя найти словарь \"%s\"" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} удалил тег {tag} из набора данных {dataset}" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Нельзя найти тег \"%s\"" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} начался следующий {dataset}" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Вы должны быть авторизованы, чтобы отписаться от чего-либо." +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} started following {user}" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Вы не следите {0}." +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} начался следующий {group}" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Источник не был найден." +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Посмотреть" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Не определяйте, если используете \"query\" параметр" +#: 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/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Должно быть : пар(ы)" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Январь" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Поле \"{field}\" не отображается в поисковике ресурсов." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Февраль" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Пакет не найден" +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Март" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Обновить объект %s" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Апрель" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: обновить связь пакетов: %s %s %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Май" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus не найден" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Июнь" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Организация не найдена." +#: ckan/lib/formatters.py:43 +msgid "July" +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/lib/formatters.py:47 +msgid "August" +msgstr "Август" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "" -"Пользователь %s не имеет достаточно прав для редактирования этих группы" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Сентябрь" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" -"Пользователь %s не имеет прав на добавление массивов данных к этой " -"организации" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Октябрь" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Ноябрь" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "" -"Для этого ресурса не найдено пакетов. Невозможно проверить подлинность." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Декабрь" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Только что" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "" -"Пользователь %s не имеет достаточно прав для редактирования этих пакетов " -"данных" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} минуту спустя" +msgstr[1] "{mins} минут спустя" +msgstr[2] "{mins} минут спустя" +msgstr[3] "{mins} минут спустя" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "Пользователь %s не имеет достаточно прав для создания группы" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} час назад" +msgstr[1] "{hours} часа назад" +msgstr[2] "{hours} часов назад" +msgstr[3] "{hours} часов назад" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "Пользователь %s не имеет прав для создания организаций" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} день назад" +msgstr[1] "{days} дней назад" +msgstr[2] "{days} дней назад" +msgstr[3] "{days} дней назад" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" -msgstr "" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} месяц назад" +msgstr[1] "{months} месяцев назад" +msgstr[2] "{months} месяцев назад" +msgstr[3] "{months} месяцев назад" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "больше {years} года назад" +msgstr[1] "больше {years} лет назад" +msgstr[2] "больше {years} лет назад" +msgstr[3] "больше {years} лет назад" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Группа не найдена" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{месяц} {день}, {год}, {часов:02}:{минут:02} ({timezone})" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Необходим действующий ключ API для создания пакета данных" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{месяц} {день}, {год}" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Для создания группы необходим действующий ключ API" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Пользователь %s не имеет прав для добавления участников " +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Пользователь %s не имеет прав для редактирования группы %s" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "Пользователь %s не имеет прав для удаления ресурса %s" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "Пользователь %s не имеет прав для удаления связи %s" +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "Пользователь %s не имеет прав для удаления групп" +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "Пользователь %s не имеет прав для удаления группы %s" +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "Пользователь %s не имеет прав для удаления организаций" +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "Пользователь %s не имеет прав для удаления организации %s" +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "Пользователь %s не имеет прав для удаления task_status" +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Не авторизован" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "Пользователь %s не имеет прав для просмотра этих пакетов" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "Пользователь %s не имеет прав для просмотра пакета %s" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Пользователь %s не имеет прав для чтения ресурса %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Обновите свой аватар на gravatar.com" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Неизвестный" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "Вы должны авторизоваться для доступа к панели управления" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Безымянный ресурс" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "Пользователь %s не имеет прав для редактирования пакета %s" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Создать новый пакет данных." -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Пользователь %s не имеет прав для редактирования ресурса %s" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Отредактированные ресурсы." -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "Пользователь %s не имеет прав для изменения статуса пакета %s" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Отредактированные настройки." -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "Пользователь %s не имеет прав для редактирования организации %s" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} просмотр" +msgstr[1] "{number} просмотры" +msgstr[2] "{number} просмотры" +msgstr[3] "{number} просмотры" -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "Пользователь %s не имеет прав для изменения статуса группы %s" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} последние просмотр" +msgstr[1] "{number} последние просмотры" +msgstr[2] "{number} последние просмотры" +msgstr[3] "{number} последние просмотры" -#: ckan/logic/auth/update.py:162 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "" -"Пользователь %s не имеет прав для редактирования прав доступа для группы %s" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Необходимо авторизоваться чтобы редактировать пользователя" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Адрес получателя не доступен!" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "" -"Пользователь %s не имеет достаточно прав для редактирования пользователя %s" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "организация" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "группа" + +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Отсутствующая величина" -#: ckan/logic/auth/update.py:216 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to change state of revision" +msgid "The input field %(name)s was not expected." +msgstr "Веденное поле %(name)s не было ожидаемо." + +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Пожалуйста, введите целое число" + +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -"Пользователь %s не имеет достаточно прав для изменения статуса версии " -"пакета." -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "Пользователь %s не имеет прав для обновления task_status table" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Внешние ресурс(ы) данных недействительны" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "Пользователь %s не имеет прав для обновления term_translation table" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Дополнения" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Для редактирования пакета необходим действующий API-ключ" +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Тег словаря \"%s\" не существует" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Для редактирования группы необходим действующий API-ключ" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "" -#: ckan/model/license.py:222 -msgid "License not specified" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" msgstr "" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Организация не существует" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Вы не можете добавить пакет данных в эту организацию" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Неверное число" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Должно быть натуральным числом" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Должно быть положительным целым числом" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Формат даты указан неверно" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Гиперссылки в log_message запрещены." -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Другие (Open)" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Набор данных с таким идентификатором уже существует" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Другие (Public Domain)" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Ресурсы" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Другие (Attribution)" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Это имя группы или ID не существует." -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Тип процесса" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Другие (Non-Commercial)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Это имя не может быть использовано" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Другие (Not Open)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Длина слова должна быть не менее %s символов" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "depends on %s" -msgstr "зависит от %s" +msgid "Name must be a maximum of %i characters long" +msgstr "Имя должно содержать максимум %i символов" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Этот URL уже используется" + +#: ckan/logic/validators.py:366 #, python-format -msgid "is a dependency of %s" -msgstr "в зависимости от %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Длина названия \"%s\" меньше чем минимальная %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:370 #, python-format -msgid "derives from %s" -msgstr "происходит от %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Имя \"%s\" короче максимального значения %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "has derivation %s" -msgstr "производно от %s" +msgid "Version must be a maximum of %i characters long" +msgstr "Версия должна содержать максимум %i символов" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:394 #, python-format -msgid "links to %s" -msgstr "ссылается на %s" +msgid "Duplicate key \"%s\"" +msgstr "Создать дубль ключа \"%s\"" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Группа с таким названием уже существует" + +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "связан ссылкой с %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Тег \"%s\" короче минимального значения %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "в подчиненной связи с %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Тег \"%s\" короче максимального значения %i" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "родительская категория для %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Тег \"%s\" должен содержать числа, буквы или такие символы: -_." -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "связано на одном уровне %s" +msgid "Tag \"%s\" must not be uppercase" +msgstr "Тег \"%s\" должен содержать только строчные буквы" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Идет загрузка..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Нет API данных для загрузки для данного ресурса" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Это имя пользователя уже используется" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Не удалось загрузить данные API " +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Пожалуйста укажите оба пароля." -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Совпадений не найдено" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Начните вводить ..." +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Ваш пароль должен быть длиной не менее 4 символов" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Слишком коротко, должен быть хотя бы один символ" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Пароли не совпадают" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Есть несохраненные изменения в этой форме" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Редактирование запрещено, т.к. текст выглядит, как спам. Избегайте " +"гиперссылок в описании, пжл." -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Пожалуйста, подтвердите действие" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Имя должно состоять как минимум из %s букв." -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Вы уверены, что хотите выполнить это действие?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Это название словаря уже используется." -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Потверждение" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Невозможно изменить значение ключа %s на %s. Ключ доступен только для чтения" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Отменить" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Тег словаря не был найден" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Следить" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Тег %s не относится к словарю %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Не следовать" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Нет имени тега" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Загрузка" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tag %s уже добавлен в словарь %s" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Укажите действительный URL" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Удалить" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "Роль не существует." -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Картинка" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Массивы без организации не могут быть частными." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Не список" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Файл" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Не строка" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Сохранение..." +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Вложить файл" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "Неверный формат Email {email}" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Возникла ошибка" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Создать объект %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Ресурс загружен" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Связать пакеты: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Невозможно загрузить файл" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Создать объект-звено %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Не удается загрузить аутентификации" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Невозможно получить данные для загружаемого файла" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "Вы загружаете файл. Вы уверены что хотите прервать ?" - -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Попытка создать организацию как группу" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Редактировать" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Введите идентификатор пакета или имя (параметр \"пакет\")." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Показать еще" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Задайте рейтинг (параметр \"рейтинг\")." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Спрятать" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Значение рейтинга должно быть целым числом." -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/action/create.py:905 #, python-format -msgid "Error %(error_code)s" -msgstr "Ошибка %(error_code)s" +msgid "Rating must be between %i and %i." +msgstr "Значение рейтинга должно быть в пределах %i и %i." -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Про {0}" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Ошибка при отправке email-приглашения. Пользователь не был создан: {0}" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Вы должны быть авторизованы, чтобы следить за пользователями " -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Вы не можете следить за пользователем" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Создано CKAN" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Вы уже следуете за {0}" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Настройки системного администратора" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Вы должны быть авторизованы, чтобы следить за пакетом данных" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Показать профиль" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Пользователь {username} не существует." -#: ckan/templates/header.html:26 -#, 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/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Вы должны быть авторизованы, чтобы следить за группой " -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Панель Управления" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "Удалить Пользователя: {0}" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Редактировать настройки." +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: удалить пакет: %s" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Настройки" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: удалить %s" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Выйти" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Удалить Участника: %s" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Войти " +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id нет в данных" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Зарегистрироваться" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Нельзя найти словарь \"%s\"" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Пакеты данных" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Нельзя найти тег \"%s\"" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Поиск массивов данных" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Вы должны быть авторизованы, чтобы отписаться от чего-либо." -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Поиск" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Вы не следите {0}." -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Источник не был найден." -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Загрузите меньше" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Не определяйте, если используете \"query\" параметр" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Загрузите больше" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Должно быть : пар(ы)" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "Нет активности в этой области" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Поле \"{field}\" не отображается в поисковике ресурсов." -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Администрация" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Пакет не найден" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Сисадминистраторы" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Обновить объект %s" -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Настройки" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: обновить связь пакетов: %s %s %s" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Корзина" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus не найден" -#: ckan/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "Вы уверены, что хотите сбросить настройки?" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Организация не найдена." -#: ckan/templates/admin/config.html:17 -msgid "Reset" -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/templates/admin/config.html:18 -msgid "Update Config" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" msgstr "" +"Пользователь %s не имеет достаточно прав для редактирования этих группы" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "Опции настроек CKAN" - -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:38 #, 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.

" +msgid "User %s not authorized to add dataset to this organization" msgstr "" +"Пользователь %s не имеет прав на добавление массивов данных к этой " +"организации" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Подтвердите сброс" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "ID пакета данных не предоставлен, невозможно проверить auth" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." msgstr "" +"Для этого ресурса не найдено пакетов. Невозможно проверить подлинность." -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:76 #, 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

" +msgid "User %s not authorized to create resources on dataset %s" msgstr "" +"Пользователь %s не имеет достаточно прав для добавления ресурсов к пакету " +"данных %s" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" msgstr "" +"Пользователь %s не имеет достаточно прав для редактирования этих пакетов " +"данных" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Пользователь %s не имеет достаточно прав для создания группы" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "Доступ к данным ресурса через web API с поддержкой запросов" +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Пользователь %s не имеет прав для создания организаций" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" msgstr "" +"Пользователь {user} не имеет достаточно прав для создания пользователей " +"через API" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Endpoints" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Недостаточно прав для создания пользователей" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"Data API может использоваться через следующие действия в API действий CKAN." +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Группа не найдена" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Создать" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Необходим действующий ключ API для создания пакета данных" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Обновить / Вставить" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Для создания группы необходим действующий ключ API" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Запрос" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Пользователь %s не имеет прав для добавления участников " -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Запрос (через SQL)" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Пользователь %s не имеет прав для редактирования группы %s" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Запрашиваем" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Пользователь %s не имеет прав для удаления ресурса %s" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Пример запроса (первые 5 результатов)" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "Просмотр ресурса не найден, невозможно проверить auth" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Пример запроса (результаты содержащие \"jones\")" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Пользователь %s не имеет прав для удаления связи %s" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Пример запроса (с SQL выражением)" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Пользователь %s не имеет прав для удаления групп" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Пример: Javascript" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Пользователь %s не имеет прав для удаления группы %s" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "Простой ajax (JSONP) запрос к API данных используя jQuery." +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Пользователь %s не имеет прав для удаления организаций" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Пример: Python" +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Пользователь %s не имеет прав для удаления организации %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "Этот ресурс не может быть просмотрен сейчас." +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Пользователь %s не имеет прав для удаления task_status" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Кликните тут для получения большей информации" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Не авторизован" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Скачать ресурс" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Пользователь %s не имеет прав для просмотра этих пакетов" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Ваш браузер не поддерживает фреймы." +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Пользователь %s не имеет прав для просмотра пакета %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Нет предпросмотра." +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Пользователь %s не имеет прав для чтения ресурса %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Больше подробностей..." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Пользователь %s не имеет достаточно прав для просмотра группы %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Вы должны авторизоваться для доступа к панели управления" + +#: ckan/logic/auth/update.py:39 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Нет обработчика для этого типа данных: %(type)s." +msgid "User %s not authorized to edit package %s" +msgstr "Пользователь %s не имеет прав для редактирования пакета %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Стандарт" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Пользователь %s не имеет прав для редактирования ресурса %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Стандартный ввод" +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Пользователь %s не имеет прав для изменения статуса пакета %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Средний" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Пользователь %s не имеет прав для редактирования организации %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Средняя ширина ввода" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Пользователь %s не имеет прав для изменения статуса группы %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Полный" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" +"Пользователь %s не имеет прав для редактирования прав доступа для группы %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Полная ширина ввода" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Необходимо авторизоваться чтобы редактировать пользователя" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Большой" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "" +"Пользователь %s не имеет достаточно прав для редактирования пользователя %s" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Большой ввод" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "" +"Пользователь {0} не имеет достаточно прав для обновления профиля " +"пользователя {1}" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Prepend" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "" +"Пользователь %s не имеет достаточно прав для изменения статуса версии " +"пакета." -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Prepend Input" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Пользователь %s не имеет прав для обновления task_status table" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Стандартные поля (пусто)" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Пользователь %s не имеет прав для обновления term_translation table" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Стандартное поле" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Для редактирования пакета необходим действующий API-ключ" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Снижение" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Для редактирования группы необходим действующий API-ключ" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Textarea" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Лицензия не указана" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Select" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Динамика процесса" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: 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/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Добавить Группу" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Форма Группы" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: 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/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "Вы уверены, что хотите удалить группу - {name}?" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: 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/model/license.py:301 +msgid "Other (Open)" +msgstr "Другие (Open)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Другие (Public Domain)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Редактировать Группу" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Другие (Attribution)" -#: 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/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Подписчики" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "История" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Другие (Non-Commercial)" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Добавить группу" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Другие (Not Open)" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Поиск групп..." +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "зависит от %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Имя По возрастанию" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "в зависимости от %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Имя по убыванию" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "происходит от %s" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "В настоящее время нет групп для этого сайта" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "производно от %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Может создать?" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "ссылается на %s" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "Вернуться ко всем участникам " +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "связан ссылкой с %s" -#: 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/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "в подчиненной связи с %s" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Добавить Участника" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "родительская категория для %s" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Существующий Пользователь" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "связано на одном уровне %s" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Нет API данных для загрузки для данного ресурса" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Не удалось загрузить данные API " + +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Начните вводить ..." + +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Совпадений не найдено" + +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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 +msgid "There are unsaved modifications to this form" +msgstr "Есть несохраненные изменения в этой форме" + +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Пожалуйста, подтвердите действие" + +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Вы уверены, что хотите выполнить это действие?" + +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Потверждение" + +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Не следовать" + +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Следить" + +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Ссылка" + +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Новый Пользователь" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Загрузка" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Удалить" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Загрузите файл с компьютера" + +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Файл" + +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" msgstr "" -"Если Вы хотите пригласить нового пользователя, введите его адрес электронной" -" почты." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Роль" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Сохранение..." -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Вы уверены, что хотите удалить этого участника?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Вложить файл" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Удалить" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Возникла ошибка" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Сохранить" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Невозможно загрузить файл" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Какие роли?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Не удается загрузить аутентификации" -#: ckan/templates/group/member_new.html:81 +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Ресурс загружен" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Невозможно получить данные для загружаемого файла" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" -"

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

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

" -msgstr "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +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/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Добавить фильтр" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Обновить Группу" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Создать Группу" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Редактировать" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Актуальность" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Показать еще" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Время последнего изменения" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Спрятать" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Популярное" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Ошибка %(error_code)s" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Поиск массивов данных..." +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Про {0}" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Пакеты данных в группе: {group}" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "История последних изменений" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "Ассоциация CKAN" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Имя" +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Создано CKAN" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Моя Группа" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Настройки системного администратора" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "моя-группа" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Показать профиль" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Описание" +#: ckan/templates/header.html:26 +#, 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/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Немного информации о моей группе..." +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Панель Управления" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Вы уверены, что хотите удалить эту Группу?" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Редактировать настройки." -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Сохранить Группу" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Настройки" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} Пакет данных" -msgstr[1] "{num} Пакеты данных" -msgstr[2] "{num} Пакеты данных" -msgstr[3] "{num} Пакеты данных" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Выйти" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Пакеты данных" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Войти " -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Показать {name}" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Зарегистрироваться" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Пакеты данных" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Удалить набор данных из этой группы" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Поиск массивов данных" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Что такое группы?" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +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. " +#: ckan/templates/page.html:6 +msgid "Skip to content" msgstr "" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Сравнить" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Загрузите меньше" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Удалено" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Загрузите больше" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "читать дальше" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Нет активности в этой области" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Версия" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Администрация" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Время" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Сисадминистраторы" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Автор" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Настройки" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Запись в лог" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Корзина" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Добро пожаловать в" +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Вы уверены, что хотите сбросить настройки?" -#: ckan/templates/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/

" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Сбросить" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" 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/admin/config.html:26 +msgid "CKAN config options" +msgstr "Опции настроек CKAN" -#: ckan/templates/home/snippets/promoted.html:10 +#: ckan/templates/admin/config.html:33 +#, python-format 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 " +"

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/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "." +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Подтвердите сброс" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" msgstr "" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" +#: 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/home/snippets/search.html:16 -msgid "Popular tags" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" msgstr "" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "пакет данных " +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Этот ресурс не может быть просмотрен сейчас." -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "наборы данных" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Кликните тут для получения большей информации" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "организации" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Скачать ресурс" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "группы" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Нет предпросмотра." -#: ckan/templates/macros/form.html:126 +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Больше подробностей..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 #, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" +msgid "No handler defined for data type: %(type)s." +msgstr "Нет обработчика для этого типа данных: %(type)s." -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Стандарт" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "По умолчанию" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Стандартный ввод" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Средний" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Форма содержит неверные значения" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Средняя ширина ввода" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Полный" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Полная ширина ввода" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL картинки" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Большой" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Большой ввод" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Форма Организации" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Prepend" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Редактировать массивы данных" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Prepend Input" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Добавить массив данных" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Стандартные поля (пусто)" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "найдено по запросу \"{query}\"" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Стандартное поле" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Извините, но никаких пакетов данных не было найдено для \"{query}\"" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Снижение" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Сделать публичным" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textarea" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Сделать приватным" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Select" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Черновик" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Динамика процесса" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Личный" +#: 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/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "У этой организации нет связанных массивов данных" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Добавить Группу" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "Вы уверены, что хотите удалить организацию - {name}?" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +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/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/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Добавить Организацию" +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Вы уверены, что хотите удалить группу - {name}?" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -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 "Вы уверены, что хотите удалить участника - {name}?" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "В настоящее время нет организаций для этого сайта" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Имя пользователя" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Редактировать Группу" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "Email" +#: ckan/templates/group/edit_base.html:23 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" +msgstr "Участники" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "История" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

Администратор:Может добавлять/редактировать и удалять данные, а также управлять участниками организации.

\n" -"

Редактор: Может добавлять/редактировать данные, но не управлять участниками организации.

\n" -"

Участник: Может просматривать приватные данные организации, но не может добавлять данные

" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Добавить группу" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Создать Организацию" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Поиск групп..." -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Обновить Организацию" +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "В настоящее время нет групп для этого сайта" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Создать Организацию" +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Может создать?" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Добавить пакет" +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Вернуться ко всем участникам " -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -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/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Какие Организации?" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +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/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +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. " +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" +"Чтобы добавить существующего пользователя, воспользуйтесь поиском ниже" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Моя Организация" - -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "моя-организация" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "или" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Кратко о моей организации..." +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Новый Пользователь" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -"Вы уверены что хотите удалить эту организацию? Это удалит все публичные и " -"непубличные массивы данных принадлежащие данной организации." +"Если Вы хотите пригласить нового пользователя, введите его адрес электронной" +" почты." -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Сохранить Организацию" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Роль" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Просмотр {organization_name}" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Вы уверены, что хотите удалить этого участника?" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Создать массив данных" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Удалить" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Какие пакеты данных?" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Какие роли?" -#: ckan/templates/package/base_form_page.html:25 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" 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/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Создать Группу" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Показать пакеты данных" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Обновить Группу" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Редактировать метаданные" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +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/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Поиск массивов данных..." -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Предпросмотр" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Пакеты данных в группе: {group}" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Обновить" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "История последних изменений" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Имя" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Моя Группа" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "моя-группа" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Обновить массив данных" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Немного информации о моей группе..." -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Добавить данные к массиву данных" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Вы уверены, что хотите удалить эту Группу?" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "Добавить новый ресурс" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Показать {name}" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +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/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Что такое группы?" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/group/snippets/helper.html:8 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +" 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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Добавить" - -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" -"Это старая версия пакета данных, в редакции по %(timestamp)s. Она может " -"отличаться от текущей версии." +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Сравнить" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Удалено" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "читать дальше" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Ошибка:" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Версия" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Время" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Автор" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Последнее обновление" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Запись в лог" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Добро пожаловать в" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" +#: 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/package/resource_data.html:74 -msgid "Details" -msgstr "" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Добро пожаловать в CKAN" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" +#: 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/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "." -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Показать ресурсы" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Например, окружающая среда" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Поиск данных" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Популярные теги" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" msgstr "" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API Endpoint" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "пакет данных " -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Перейти к ресурсу" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "наборы данных" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Загрузить" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "организации" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "группы" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Из абстрактного пакета данных " +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Логотип сайта" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Ресурс: %(dataset)s" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." +msgid "" +"You can use Markdown formatting here" msgstr "" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" msgstr "" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "По умолчанию" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Форма содержит неверные значения" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" +#: ckan/templates/macros/form.html:395 +msgid "Required field" msgstr "" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL картинки" + +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" msgstr "" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Дополнительная информация" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Форма Организации" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Поле" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Редактировать массивы данных" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Величина" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Добавить массив данных" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "неизвестно" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "найдено по запросу \"{query}\"" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Создано" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Извините, но никаких пакетов данных не было найдено для \"{query}\"" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Формат" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Сделать публичным" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Лицензия" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Сделать приватным" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Черновик" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Личный" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "У этой организации нет связанных массивов данных" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Вы уверены, что хотите удалить организацию - {name}?" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: 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/package/search.html:53 -msgid "API Docs" -msgstr "Документация API" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Добавить Организацию" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "полный {format} дамп" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +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 "" -"Вы также можете получить доступ к ресурсу через %(api_link)s (see " -"%(api_doc_link)s) или скачать %(dump_link)s." +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +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 "" -"Вы можете получить доступ к этому реестру через %(api_link)s (see " -"%(api_doc_link)s)." +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Имя пользователя" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Обновить участника" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" +#: ckan/templates/organization/member_new.html:81 +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/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/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/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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Создать Организацию" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Версия" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Обновить Организацию" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Страна" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Создать Организацию" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Добавить пакет" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Какие Организации?" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Данные API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Моя Организация" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Заголовок" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "моя-организация" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "например Описательный заголовок" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Кратко о моей организации..." -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "например - мой пакет данных" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Вы уверены что хотите удалить эту организацию? Это удалит все публичные и " +"непубличные массивы данных принадлежащие данной организации." -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "например - Некоторые полезные заметки про данные" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Сохранить Организацию" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -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/snippets/package_basic_fields.html:41 -msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" -"Описание лицензии и дополнительную информацию можно найти на opendefinition.org" +#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Создать массив данных" -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Организация" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Какие пакеты данных?" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Видимость" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Вы уверены, что хотите удалить пакет данных - {name}?" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Общественный" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Вы уверены, что хотите удалить ресурс - {name}? " -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +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/edit_base.html:20 +msgid "Edit metadata" +msgstr "Редактировать метаданные" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -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/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Далее: Добавить данные" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Предпросмотр" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" +#: 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/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Обновить массив данных" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "E-mail автора" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Добавить новый ресурс" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "E-mail администратора" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "обновить Ресурс" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Новый ресурс" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: 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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: 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/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "например - January 2011 Gold Prices" - -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Полезные заметки о данных" - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "например - CSV, XML или JSON" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Добавить" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Это старая версия пакета данных, в редакции по %(timestamp)s. Она может " +"отличаться от текущей версии." -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "например - 2012-06-05" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Все ресурсы" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Размер Файла" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Показать ресурсы" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "например - 1024" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Редактировать ресурс" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME тип" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "eg. application/json" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API Endpoint" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Вы уверены, что хотите удалить ресурс?" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Перейти к ресурсу" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Предыдущий" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Загрузить" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Сохранить и добавить другой" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Конец" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Из абстрактного пакета данных " -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Что за ресурс?" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Ресурс: %(dataset)s" -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." msgstr "" -"Ресурсом может быть любой файл или ссылка на файл, содержащая полезные " -"данные." -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Исследуй" - -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Больше информации" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Внедрить" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 +#: ckan/templates/package/resource_read.html:122 msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +"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/snippets/resource_view.html:69 -msgid "Width" -msgstr "Ширина" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Дополнительная информация" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Высота" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Поле" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Код" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Величина" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Данные и Ресурсы" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "неизвестно" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "Читать пакеты данных как %s" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Создано" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Создать массив данных" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +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/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Лицензия" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Новый просмотр" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "У ресурса нет просмотров" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Добавить новый ресурс" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, python-format +msgid "" +"

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

" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Добавить фильтр" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -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 (see " +"%(api_doc_link)s) или скачать %(dump_link)s." -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -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 "" +"Вы можете получить доступ к этому реестру через %(api_link)s (see " +"%(api_doc_link)s)." -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" msgstr "" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" msgstr "" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Отличия" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Отличия редакции" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Дополнительная информация" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Отличие" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Источник" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -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/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "История прежних изменений" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Версия" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Версии" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Страна" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Отменить удаление" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Последнее обновление" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -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/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Теги пакета" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Создать новую организацию" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entity" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Код для просмотра данных" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Заголовок" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Добавить этот просмотр, копируя это в вашу веб-страницу:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "например Описательный заголовок" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Выберите ширину и высоту в пикселях:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "например - мой пакет данных" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Ширина:" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "например - Некоторые полезные заметки про данные" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Высота:" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "например - экономика, психическое здоровье, правительство" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " msgstr "" +"Описание лицензии и дополнительную информацию можно найти на opendefinition.org" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Уведомление URL" - -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Показать больше {facet_type}" - -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Показать только популярное {facet_type}" - -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Нет {facet_type} соответствующего этому поиску" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Организация" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Главная страница" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Нет организаций" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Язык" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Видимость" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Перейти" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Общественный" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "Не Предоставлена Лицензия " +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Активный" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Этот пакет соответствует требованиям Open Definition." +#: 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/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Не существует описания для этой организации" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Вы уверены, что хотите удалить этот пакет данных?" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "У этого массива нет описания" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Далее: Добавить данные" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Отправить" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Сортировать по" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -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 "Joe Bloggs" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Попробуйте поискать еще.

" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "E-mail автора" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" -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/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/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "E-mail администратора" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "обновить Ресурс" -#: 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/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Данные" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" 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/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "например - January 2011 Gold Prices" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Полезные заметки о данных" -#: 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/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "например - CSV, XML или JSON" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" 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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "например - 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Размер Файла" -#: 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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "например - 1024" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME тип" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Социальные сети" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "eg. application/json" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Подписаться" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +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:82 -msgid "Email" -msgstr "Email" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Предыдущий" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Сохранить и добавить другой" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Редактировать" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Конец" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Поиск тэгов" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Что за ресурс?" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -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/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Мои массивы данных" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Исследуй" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Мои организации" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Больше информации" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Мои группы" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Внедрить" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." msgstr "" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Вы не создали ни одного пакета данных" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Создать один сейчас?" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "Вы не являетесь членом ни одной из групп." +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Ширина" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Вы не участвуете ни в одной из организаций." +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +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/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Код" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Информация об аккаунте" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +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/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Данные и Ресурсы" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "В этом пакете данных нет данных" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Полное имя" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Читать пакеты данных как %s" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "eg. Joe Bloggs" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Создать массив данных" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "eg. joe@example.com" +#: 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/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Кратко о себе" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Подпишитесь на рассылку уведомлений" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Сменить пароль" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Удалить фильтр" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" +#: 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/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Пароль" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Отличия" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Подтвердите пароль" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Отличия редакции" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Отличие" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Нет отличий" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "История прежних изменений" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Обновить Профиль" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Версии" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Все пользователи" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +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/revision/read.html:64 +msgid "Changes" +msgstr "Изменения" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Нужен аккаунт?" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Теги пакета" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "Оставьте подпись. Это займет всего минуту." +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entity" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Создать Аккаунт" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Новый активный пункт" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Забыли пароль?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Код для просмотра данных" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" -"Все в порядке, используйте нашу форму восстановления пароля для его сброса." +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Добавить этот просмотр, копируя это в вашу веб-страницу:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Забыли пароль?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Выберите ширину и высоту в пикселях:" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Вышел" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Ширина:" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Вы вышли из системы" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Высота:" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Вы вошли как {user}." +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Выйти" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Уведомление URL" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Запомнить меня" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Показать больше {facet_type}" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Вы только что вошли в систему" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Показать только популярное {facet_type}" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "Вы должны выйти, прежде чем Вы сможете войти как другой пользователь" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Нет {facet_type} соответствующего этому поиску" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Выйти сейчас" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Главная страница" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Регистрация" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Язык" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Зарегистрировать учетную запись" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Перейти" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Зачем регистрироваться?" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Не Предоставлена Лицензия " -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "Создание пакетов данных, групп и других захватывающих вещей" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Этот пакет соответствует требованиям Open Definition." -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "имя пользователя" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Не существует описания для этой организации" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Полное имя" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "У этого массива нет описания" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Создать Аккаунт" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Отправить" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Сбросить пароль" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Сортировать по" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Сброс пароля" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Фильтровать Результаты" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Обновите пароль" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Попробуйте поискать еще.

" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Как это работает?" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -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/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Пользователь не создал ни одного пакета данных." +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "По запросу \"{query}\" пакетов данных не найдено" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Вы не написали биографию." +#: 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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Пользователь не имеет биографии." +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Пакеты данных не найдены" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "Открытый ID" +#: 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/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Это значит, что только вы можете видеть это." +#: 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/user/read_base.html:87 -msgid "Member Since" -msgstr "Участник с" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Группы не найдены" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API ключ" +#: 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/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Восстановить Ваш пароль" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "По запросу \"{query}\" организаций не найдено" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" +#: 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/user/request_reset.html:19 -msgid "Request reset" -msgstr "" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Организации не найдены" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Введите имя пользователя в поле, и мы вышлем Вам письмо с ссылкой для ввода " -"нового пароля." +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Социальные сети" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Деятельность от:" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Подписаться" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -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:82 +msgid "Email" +msgstr "Email" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Вы не подписаны на что-либо" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Нет подписчиков" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Редактировать" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Поиск пользователей" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Поиск тэгов" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Новостная лента" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Мои массивы данных" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Мои организации" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" +#: 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 "" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Ресурс DataStore не найден" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Вы не создали ни одного пакета данных" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" +#: 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:16 +msgid "Create one now?" +msgstr "Создать один сейчас?" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "Источник \"{0}\" не был найден." +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Вы не являетесь членом ни одной из групп." -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "Пользователь {0} не имеет прав для обновления ресурса {1}" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Вы не участвуете ни в одной из организаций." -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -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 "Пользователи" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Информация об аккаунте" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" +#: ckan/templates/user/edit.html:19 +msgid "" +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" +"Ваш профиль позволяет другим CKAN-пользователям знать кто Вы есть и что Вы " +"делаете" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +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 "Произвольный Текст" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Полное имя" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "произвольный текст" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "eg. Joe Bloggs" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Код страны" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "eg. joe@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Кратко о себе" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Подпишитесь на рассылку уведомлений" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Эта группа не имеет описания" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Сменить пароль" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" 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 "" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Пароль" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Подтвердите пароль" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "таблица" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Вы уверены, что хотите удалить этого Пользователя?" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "ка́рта" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Создать новый API ключ" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Обновить Профиль" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Все пользователи" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -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 "Нужен аккаунт?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "Количество строк" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Оставьте подпись. Это займет всего минуту." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "например: 100" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Создать Аккаунт" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Забыли пароль?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." msgstr "" +"Все в порядке, используйте нашу форму восстановления пароля для его сброса." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Забыли пароль?" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Вышел" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Вы вышли из системы" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Вы вошли как {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Выйти" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Запомнить меня" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Вы только что вошли в систему" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Всего пакетов данных" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." +msgstr "Вы должны выйти, прежде чем Вы сможете войти как другой пользователь" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Дата" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Выйти сейчас" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Все пакеты данных" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Регистрация" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Редакции пакетов за неделю" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Зарегистрировать учетную запись" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Все редакции пакетов данных" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Зачем регистрироваться?" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Новые пакеты данных" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Создание пакетов данных, групп и других захватывающих вещей" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Самые популярные пакеты данных" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "имя пользователя" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Средняя оценка" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Полное имя" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Количество оценок" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Создать Аккаунт" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Нет оценок" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Сбросить пароль" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Самые часто редактируемые пакеты данных" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Сброс пароля" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Количество редакций" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Обновите пароль" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Нет редактируемых пакетов данных" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Как это работает?" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Самые большие группы" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Просто введите новый пароль и мы обновим Ваш ​​аккаунт" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Количество пакетов" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Пользователь не создал ни одного пакета данных." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Нет групп" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Вы не написали биографию." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Самые популярные метки" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Пользователь не имеет биографии." -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Имя тега" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Открытый ID" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Количество пакетов" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Это значит, что только вы можете видеть это." -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Участник с" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Меню статистики" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API ключ" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Всего пакетов данных" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Восстановить Ваш пароль" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Текст" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Сброс пароля" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Запросить сброс пароля" + +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Введите имя пользователя в поле, и мы вышлем Вам письмо с ссылкой для ввода " +"нового пароля." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "сайт" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Деятельность от:" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "URL страницы" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Список поиска..." -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -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 "Поиск пользователей" diff --git a/ckan/i18n/sk/LC_MESSAGES/ckan.mo b/ckan/i18n/sk/LC_MESSAGES/ckan.mo index 64850587ac2..520d720ec60 100644 Binary files a/ckan/i18n/sk/LC_MESSAGES/ckan.mo and b/ckan/i18n/sk/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/sk/LC_MESSAGES/ckan.po b/ckan/i18n/sk/LC_MESSAGES/ckan.po index 539ea16a228..b779e7791aa 100644 --- a/ckan/i18n/sk/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sk/LC_MESSAGES/ckan.po @@ -1,4592 +1,4690 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Autorizačná funkcia nenájdená: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Ukončené" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administrátor" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Čakajúce na spracovanie" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Editor" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Nahrávanie" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Člen" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Chyba" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Na spravovanie musíte byť systémový administrátor" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Doposiaľ nenahrané" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Nadpis stránky" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Nenájdený zdroj" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Štýl" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Nemáte oprávnenie na zobrazenie tejto stránky" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Popis portálu" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Nahrať do DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Malé logo portálu" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Chyba pri nahrávaní:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Chyba: " -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Text stránky o projekte" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Úvodný Text" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Stav" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Text na hlavnej stránke" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Naposledy zmenené" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Vlastné CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nikdy" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Prispôsobiteľný css súbor bol vložený do hlavičky stránky" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Nahrať záznam" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Hlavná stránka" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detaily" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Koniec záznamu" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +msgid "format: must be one of %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" +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Požadovaný zdroj z DataStore nebol nájdený" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Mazanie ukončené" +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" +"Dáta boli neplatné (napríklad: číselná hodnota je mimo rozsah alebo bola " +"vložená do textového poľa)." -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Akcia nieje implementovaná." +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Zdroj \"{0}\" nebol nájdený" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Nemáte oprávnenie na zobrazenie tejto stránky" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Používateľ {0} nemá oprávnenie na úpravu zdroja {1}" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Prístup bol odmietnutý" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN dátové API" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Nenájdené" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Chybná požiadavka" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Viac informácií na hlavná dokumentácia CKAN Data API a CKAN " +"DataStore.

" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Názov akcie nie je známy: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Koncové body" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Chyba JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Chybná požiadavka dát: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Vytvoriť" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Nie je možné vypísať prvky tohto typu: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Aktualizovať / Vložiť" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Nie je možné čítať prvky tohto typu: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Dopyt" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Nie je možné vytvoriť nový prvok tohto typu: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Dopyt (prostredníctvom SQL)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Do vyhľadávacieho indexu nie je možné pridať balík" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Dopytovanie" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Nie je možné aktualizovať prvok tohto typu: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Príklad dopytu (prvých 5 výsledkov)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Vyhľadávací index nie je možné aktualizovať" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Príklad dotazu (výsledky obsahujúce 'jones')" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Nie je možné zmazať prvok tohto typu: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Ukážka dopytu (cez SQL výraz)" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Nebola vybraná žiadna revízia" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Ukážka: JavaScript" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Neexistuje verzia s id: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +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" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Chýbajúci hľadaný výraz ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Príklad: Python" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Nie je možné načítať parametre: %r" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Chybný parameter vyhľadávania: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Neznámy register: %s" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Popis" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Poškodená qjson hodnota: %r" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Uložiť" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Parametre požiadavky musia mať formu kódovaného slovníka JSON." +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Skupina nenájdená" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organizácia nebola nájdená." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Nesprávny typ skupiny" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Prebieha načítavanie..." -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organizácie" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Data API" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Skupiny" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tabuľka" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Tagy" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formáty" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licencie" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Nemáte opravnenie na vykonanie hromadnej aktualizácie" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datasetov na stránku" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Nemáte oprávnenie vytvoriť skupinu" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Užívateľ %r nemá oprávnenie meniť %s" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevantnosť" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Chyba v integrite" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Užívateľ %r nemá oprávnenie meniť oprávnenie pre %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Nemáte oprávnenie na vymazanie skupiny %s" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Naposledy zmenené" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organizácia bola vymazaná" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Vlastné pole vzostupne" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Skupina bola vymazaná" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Vlastné pole zostupne" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s bolo vymazaných." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Popularita" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Nemáte oprávnenie na pridanie člena do skupiny %s" +#: 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" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Nemáte oprávnenie na mazanie členov skupiny %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "vlastný text" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Člen skupiny bol vymazaný" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Kód krajiny" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Pred porovnávaním vyberte dve verzie" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "vlastný zdroj textu" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "História revízií skupin CKAN" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Nedávne zmeny skupiny CKAN:" +#: 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/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Správa logu: " +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Teraz sledujete {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 "0 Datasetov" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Už nesledujete {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 "Nástroj CKAN-u na zobrazenie dát má mnoho užitočných funkcií" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Nemate povolenie na sledovanie odberateľov %s" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Odoberatelia" -#: ckan/controllers/home.py:36 -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/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Zdroje" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" -"Prosím aktualizujte svoj profil a pridajte svoju " -"emailovú adresu." +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Obrázok" -#: ckan/controllers/home.py:83 -#, 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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL obrázku" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: 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)" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parameter \"{parameter_name}\" nie je celé číslo" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Data Explorer" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Dataset sa nepodarilo nájsť" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Graf" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Neplatný formát revízie: %r" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Mapa" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -"Prezeranie {package_type} datasetu v {format} formáte is nie je podporované \"\n" -"\"(súbor šablóny {file} nebol nájdený)." -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Nemáte oprávnenie čítať balík %s" - -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Historia revízií CKAN datasetu" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Nedávne zmeny Datasetu CKAN: " +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Nemáte oprávnenie vytvoriť balík." +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Nemáte oprávnenie na upravovanie tohto zdroja" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Nenájdený zdroj" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filtre" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Nemáte oprávnenie na aktualizáciu datasetu" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "offset riadka" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Dataset {id} nebol nájdený." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "napr: 0" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Musíte pridať aspon jeden zdroj" +#: 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" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Chyba" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "napr: 100" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Nemáte oprávnenie na vytvorenie zdroja" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Typ grafu" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Nemáte oprávnenie vytvoriť dátový zdroj pre tento dataset" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Skupina (os 1)" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Do vyhladávacieho indexu nie je možné pridať balík." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Rad (os 2)" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Vyhľadávací index nemožno aktualizovať" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Typ poľa" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Dataset bol vymazaný" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "pole zemepisná šírka" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Nemáte oprávnenie na zmazanie balíka %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "pole zemepisná dĺžka" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Zdroj bol vymazaný" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON pole" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Nemáte oprávnenie na zmazanie zdroja %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Auto zoom funkcií" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Nenájdený náhľad dátového zdroja" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Značky klastra" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Zdroj nebol nájdený" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Celkový počet datasetov" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Žiadne stiahnutie nie je dostupné" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Dátum" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Nemáte oprávnenie na čítanie datasetu %s" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Ceľkový počet datasetov" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Nemáte oprávnenie na čítanie zdroja %s" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Zmeny datasetu za týždeň" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Nemáte oprávnenie na upravovanie tohto zdroja" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Všetky zmeny datasetu" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Nenájdený náhľad" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Nové datasety" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Nenájdený typ náhľadu" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Najlepšie hodnotené datasety" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Nesprávny náhľad dátového zdroja" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Priemerné hodnotenie" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Náhľad nebol nájdený" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Počet hodnotení" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Žiadny náhľad ešte nebol definovaný" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Bez hodnotení" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Historia zmien CKAN úložiska" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Najviac upravované datasety" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Posledné zmeny v úložisku CKAN" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Dataset" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Ovplyvnené datasety: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Počet úprav" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Aktualizovaná revízia" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Žiadne datasety neboli upravené" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Iné" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Najväčšie skupiny" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Tag nebol nájdený" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Skupina" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Používateľ nebol nájdený" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Počet datasetov" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Nemáte oprávnenie registrovať sa ako používateľ." +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Žiadne skupiny" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Nemáte oprávnenie vytvoriť používateľa" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Najčastejšie tagy" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Nemáte oprávnenie vymazať používateľa s id \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Názov tagu" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Nebol vybraný žiadny používateľ" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Počet datasetov" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Nemáte oprávnenie upravovať používateľa %s" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profil upravený" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Používateľ" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Nemáte oprávnenie vytvoriť používateľa %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Štatistické menu" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Nesprávny kontrolný kód. Prosím, skúste to znova." +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Ceľkový počet datasetov" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" msgstr "" -"Používateľ \"%s\" je registrovaný, stále ste však prihlásený ako používateľ " -"\"%s\"" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Nemáte oprávnenie upravovať používateľa." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Webová stránka" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "Používateľ %s nemá oprávnenie upravovať %s" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL webovej stránky" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Bolo yadané nesprávne heslo" +#: 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/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Pôvodné heslo" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Váš webový prehliadač nepodporuje iframe" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "nesprávne heslo" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Autorizačná funkcia nenájdená: %s" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Prihlásenie sa nepodarilo. Zlé prihlasovacie meno alebo heslo." +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administrátor" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Nemáte oprávnenie požiadať o reset hesla." - -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" vyhovuje viacerým používateľom" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Editor" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Neexistuje používateľ: %s" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Člen" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Skontrolujte, či máte v doručenej pošte obnovovací kód." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Na spravovanie musíte byť systémový administrátor" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Nepodarilo sa odoslať odkaz pre obnovenie: %s" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Nadpis stránky" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Neoprávnený na obnovenie hesla." +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Štýl" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Neplatný obnovovací kľúč. Skúste znova." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Popis portálu" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Vaše heslo bolo obnovené." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Malé logo portálu" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Vaše heslo musí mať najmenej 4 znaky." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Zadané heslá nie sú totožné." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Text stránky o projekte" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Musíte zadať heslo" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Úvodný Text" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Sledovaná položka nebola nájdená" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Text na hlavnej stránke" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "Nepodarilo sa nájsť {0}" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Vlastné CSS" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Všetko" +#: ckan/controllers/admin.py:57 +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/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Chýbajúca hodnota" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Hlavná stránka" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Presmerovanie na externú stránku nie je povolené." +#: ckan/controllers/admin.py:161 +#, 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/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} pridal tag {tag} do datasetu {dataset}" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problém pri čistení revízie %s: %s" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} aktualizoval skupinu {group}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Mazanie ukončené" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} aktualizoval organizáciu {organization}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Akcia nieje implementovaná." -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} aktualizoval dataset {dataset}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Prístup bol odmietnutý" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} zmenil rozšírujúci atribút {extra} datasetu {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Nenájdené" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} aktualizoval zdroj {resource} v datasete {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Chybná požiadavka" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} aktualizoval svoj profil" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Názov akcie nie je známy: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} vymazal skupinu {group}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Chyba JSON: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} vymazal organizáciu {organization}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Chybná požiadavka dát: %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} vymazal dataset {dataset}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Nie je možné vypísať prvky tohto typu: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} vymazal rozširovací atribút {extra} datasetu {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Nie je možné čítať prvky tohto typu: %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} vymazal zdroj {resource} datasetu {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Nie je možné vytvoriť nový prvok tohto typu: %s %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} vytvoril skupinu {group}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Do vyhľadávacieho indexu nie je možné pridať balík" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} vytvoril organizáciu {organization}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Nie je možné aktualizovať prvok tohto typu: %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} vytvoril dataset {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Vyhľadávací index nie je možné aktualizovať" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} pridal rozširovací atribút {extra} do datasetu {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Nie je možné zmazať prvok tohto typu: %s %s" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} pridal zdroj {resource} do datasetu {dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Nebola vybraná žiadna revízia" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} sa zaregistroval" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Neexistuje verzia s id: %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} vymazal tag {tag} z datasetu {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Chýbajúci hľadaný výraz ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} začal sledovať {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Nie je možné načítať parametre: %r" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} začal sledovať {user}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Chybný parameter vyhľadávania: %s" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} začal sledovať {group}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Neznámy register: %s" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Zobrazenie" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Poškodená qjson hodnota: %r" -#: 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/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Parametre požiadavky musia mať formu kódovaného slovníka JSON." -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Január" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Skupina nenájdená" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Február" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organizácia nebola nájdená." -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Marec" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Nesprávny typ skupiny" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Apríl" - -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Máj" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organizácie" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Jún" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Skupiny" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Júl" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Tagy" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "August" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formáty" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "September" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licencie" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Október" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Užívateľ %r nemá oprávnenie meniť %s" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "November" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Nemáte opravnenie na vykonanie hromadnej aktualizácie" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "December" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Nemáte oprávnenie vytvoriť skupinu" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Práve teraz" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Chyba v integrite" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "pred {mins} minutami" -msgstr[1] "pred {mins} minútou" -msgstr[2] "pred {mins} minutami" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Užívateľ %r nemá oprávnenie meniť oprávnenie pre %s" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "pred {hours} hodinami" -msgstr[1] "pred {hours} hodinou" -msgstr[2] "pred {hours} hodinami" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nemáte oprávnenie na vymazanie skupiny %s" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "pred {days} dňami" -msgstr[1] "pred {days} dňom" -msgstr[2] "pred {days} dňami" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organizácia bola vymazaná" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "pred {months} mesiacmi" -msgstr[1] "pred {months} mesiacom" -msgstr[2] "pred {months} mesiacmi" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Skupina bola vymazaná" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "pred viac než {years} rokmi" -msgstr[1] "pred viac než {years} rokom" -msgstr[2] "pred viac než {years} rokmi" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s bolo vymazaných." -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" msgstr "" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{day} {month}, {year}" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Nemáte oprávnenie na pridanie člena do skupiny %s" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bajtov" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Nemáte oprávnenie na mazanie členov skupiny %s" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KB" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Člen skupiny bol vymazaný" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MB" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Pred porovnávaním vyberte dve verzie" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GB" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "História revízií skupin CKAN" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Nedávne zmeny skupiny CKAN:" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Správa logu: " -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Teraz sledujete {0}" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Už nesledujete {0}" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Nemate povolenie na sledovanie odberateľov %s" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: 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/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Prosím aktualizujte svoj profil a pridajte svoju " +"emailovú adresu." -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parameter \"{parameter_name}\" nie je celé číslo" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Updadujte svojho avatara na stránke gravatar.com" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Dataset sa nepodarilo nájsť" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Neznáme" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Neplatný formát revízie: %r" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Nepomenovaný zdroj" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Nový dataset vytvorený." +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Nemáte oprávnenie čítať balík %s" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Upravené zdroje." +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Historia revízií CKAN datasetu" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Upravené nastavenia." +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Nedávne zmeny Datasetu CKAN: " -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} videní" -msgstr[1] "{number} videnie" -msgstr[2] "{number} videní" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Nemáte oprávnenie vytvoriť balík." -#: ckan/lib/helpers.py:1618 -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í" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Nemáte oprávnenie na upravovanie tohto zdroja" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Nemáte oprávnenie na aktualizáciu datasetu" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Nie je k dispozícii žiadna emailová adresa prijímateľa!" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Dataset {id} nebol nájdený." -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organizácia" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Musíte pridať aspon jeden zdroj" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "skupina" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Nemáte oprávnenie na vytvorenie zdroja" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Chýbajúca hodnota" - -#: ckan/lib/navl/validators.py:66 -#, 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:118 -msgid "Please enter an integer value" -msgstr "Prosím zadajte hodnotu celého čísla" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Nemáte oprávnenie vytvoriť dátový zdroj pre tento dataset" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Zdroje" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Do vyhladávacieho indexu nie je možné pridať balík." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Neplatný zdroj(e) balíka" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Vyhľadávací index nemožno aktualizovať" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Doplnky" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Dataset bol vymazaný" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Tag \"%s\" neexistuje" - -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Používateľ" +msgid "Unauthorized to delete package %s" +msgstr "Nemáte oprávnenie na zmazanie balíka %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Dataset" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Zdroj bol vymazaný" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Skupina" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Nemáte oprávnenie na zmazanie zdroja %s" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Nepodarilo sa parsovať validný JSON" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Nenájdený náhľad dátového zdroja" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Zdroj nebol nájdený" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organizácia neexistuje" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Žiadne stiahnutie nie je dostupné" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Nieje požné pridať dataset do tejto organizácie" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Nemáte oprávnenie na čítanie datasetu %s" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Neplatné číslo" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Nemáte oprávnenie na čítanie zdroja %s" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Musí byť ṕrirodzené číslo" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Nemáte oprávnenie na upravovanie tohto zdroja" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Musí byť kladné číslo" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Nenájdený náhľad" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Nesprávny formát dát" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Nenájdený typ náhľadu" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "V log_message nie sú povolené odkazy." +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Nesprávny náhľad dátového zdroja" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Dataset s týmto identifikátorom už existuje" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Náhľad nebol nájdený" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Zdroj" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Žiadny náhľad ešte nebol definovaný" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Názov skupiny alebo ID neexistuje." +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Historia zmien CKAN úložiska" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Typ aktivity" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Posledné zmeny v úložisku CKAN" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Mená musia byť reťazce znakov" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Ovplyvnené datasety: %s.\n" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Tento názov nemôže byť použitý" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Aktualizovaná revízia" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "Musí obsahovať minimálne %s znakov" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Iné" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Meno musí mať najviac %i znakov" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Tag nebol nájdený" -#: ckan/logic/validators.py:342 -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/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Nemáte oprávnenie registrovať sa ako používateľ." -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Táto URL už bola použitá." +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Nemáte oprávnenie vytvoriť používateľa" -#: ckan/logic/validators.py:365 -#, 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/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Nemáte oprávnenie vymazať používateľa s id \"{user_id}\"." -#: ckan/logic/validators.py:369 -#, 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/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Nebol vybraný žiadny používateľ" -#: ckan/logic/validators.py:375 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Verzia môže mať maximálne %i znakov." +msgid "Unauthorized to edit user %s" +msgstr "Nemáte oprávnenie upravovať používateľa %s" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Duplicitný kľúč \"%s\"" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Používateľ nebol nájdený" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Názov skupiny už existuje" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profil upravený" -#: ckan/logic/validators.py:415 +#: ckan/controllers/user.py:245 #, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Tag \"%s\" je kratší ako minimálny počet %s znakov" +msgid "Unauthorized to create user %s" +msgstr "Nemáte oprávnenie vytvoriť používateľa %s" -#: ckan/logic/validators.py:419 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Dĺžka tagu \"%s\" presahuje povolené maximum %i" +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Nesprávny kontrolný kód. Prosím, skúste to znova." -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:265 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Tag \"%s\" môže obsahovať iba malé písmená bez diakritiky, číslice a znaky -" -" a _." +"Používateľ \"%s\" je registrovaný, stále ste však prihlásený ako používateľ " +"\"%s\"" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Tag \"%s\" nesmie obsahovať veľké písmená" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Nemáte oprávnenie upravovať používateľa." -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Užívateľské mená musia byť textove reťazce" +#: ckan/controllers/user.py:320 +#, python-format +msgid "User %s not authorized to edit %s" +msgstr "Používateľ %s nemá oprávnenie upravovať %s" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Toto prihlasovacie meno nie je k dispozícii." +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Bolo yadané nesprávne heslo" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Prosím zadajte obe heslá" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Pôvodné heslo" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Heslá musia byť textove reťazce" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "nesprávne heslo" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Heslo musí mať najmenej 4 znaky" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Prihlásenie sa nepodarilo. Zlé prihlasovacie meno alebo heslo." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Zadané heslá sa nezhodujú" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Nemáte oprávnenie požiadať o reset hesla." -#: ckan/logic/validators.py:610 -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/controllers/user.py:490 +#, python-format +msgid "\"%s\" matched several users" +msgstr "\"%s\" vyhovuje viacerým používateľom" -#: ckan/logic/validators.py:619 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Name must be at least %s characters long" -msgstr "Názov musí mať aspoň %s znakov" +msgid "No such user: %s" +msgstr "Neexistuje používateľ: %s" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Toto meno slovníka je už použité." +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Skontrolujte, či máte v doručenej pošte obnovovací kód." -#: ckan/logic/validators.py:633 +#: ckan/controllers/user.py:503 #, 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ť." +msgid "Could not send reset link: %s" +msgstr "Nepodarilo sa odoslať odkaz pre obnovenie: %s" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Slovník tagov nebol nájdený." +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Neoprávnený na obnovenie hesla." -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Tag %s nepatrí do slovníku %s" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Neplatný obnovovací kľúč. Skúste znova." -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Žiaden názov tagu" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Vaše heslo bolo obnovené." -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Tag %s už patrí do slovníku %s" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Vaše heslo musí mať najmenej 4 znaky." -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Prosím, úveďte platnú URL" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Zadané heslá nie sú totožné." -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "rola neexistuje" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Musíte zadať heslo" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Dataset, ktorý nepatrí organizácii nemôže byť súkromný" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Sledovaná položka nebola nájdená" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Toto nieje zoznam" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "Nepodarilo sa nájsť {0}" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Toto nieje textový reťazec" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Všetko" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Tento predok by vytvoril zacyklenie v hierarchii" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Chýbajúca hodnota" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" a \"filter_values\" musia mať rovnakú dĺžku" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Presmerovanie na externú stránku nie je povolené." -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" je povinné v prípade, že \"filter_values\" je vyplnené" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} pridal tag {tag} do datasetu {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" je povinné v prípade, že \"filter_fields\" je vyplnené" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} aktualizoval skupinu {group}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Už existuje schéma s rovnakým menom." +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} aktualizoval organizáciu {organization}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Vytvor objekt %s" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} aktualizoval dataset {dataset}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Vytvor vzťah balíkov: %s %s %s" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} zmenil rozšírujúci atribút {extra} datasetu {dataset}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Vytvoriť objekt %s" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} aktualizoval zdroj {resource} v datasete {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Skúšam vytvoriť organizáciu ako skupinu" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} aktualizoval svoj profil" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "Musíte zadať id alebo meno balíka (parameter \"balík\")." +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} vymazal skupinu {group}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Musíte vyplniť hodnotenie (parameter \"hodnotenie\")." +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} vymazal organizáciu {organization}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Hodnotenie musí byť celé číslo." +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} vymazal dataset {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Hodnotenie musí byť medzi %i a %i." +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} vymazal rozširovací atribút {extra} datasetu {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} vymazal zdroj {resource} datasetu {dataset}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Musíte byť prihlásený, ak chcete sledovať užívateľov" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} vytvoril skupinu {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Nemôžete odoberať sám seba" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} vytvoril organizáciu {organization}" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Už sledujete {0}" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} vytvoril dataset {dataset}" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Musíte byť prihlásený ak chcete sledovať dataset" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} pridal rozširovací atribút {extra} do datasetu {dataset}" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Uživateľ {username} neexistuje" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} pridal zdroj {resource} do datasetu {dataset}" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Musíte byť prihlásený, ak chcete sledovať skupinu." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} sa zaregistroval" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} vymazal tag {tag} z datasetu {dataset}" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Zmazať balík: %s" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} začal sledovať {dataset}" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Zmazať %s" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} začal sledovať {user}" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Zmazať člena: %s" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} začal sledovať {group}" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id nie je v dátach" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Zobrazenie" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Nemožno nájsť slovník \"%s\"" +#: 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/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Nie je možné nájsť tag \"%s\"" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Január" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Musíte byť pripojený pre odber." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Február" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Neodoberáte {0}." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Marec" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Zdroj nebol nájdený." +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Apríl" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Nešpecifikuje \"otázka\" parameter" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Máj" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Musí byť : pár(y)" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Jún" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Pole \"{field}\"nebolo rozpoznané v zdrojovom_vyhľadávaní" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Júl" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Balík nebol nájdený." +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "August" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Aktualizovať objekt %s" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "September" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Aktualizovať vzťah balíkov: %s %s %s" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Október" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus nebol nájdený." +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "November" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organizácia nebola nájdená." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "December" -#: 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/lib/formatters.py:114 +msgid "Just now" +msgstr "Práve teraz" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Používateľ %s nemá oprávnenie upravovať tieto skupiny" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "pred {mins} minutami" +msgstr[1] "pred {mins} minútou" +msgstr[2] "pred {mins} minutami" -#: ckan/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/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "pred {hours} hodinami" +msgstr[1] "pred {hours} hodinou" +msgstr[2] "pred {hours} hodinami" -#: ckan/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/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "pred {days} dňami" +msgstr[1] "pred {days} dňom" +msgstr[2] "pred {days} dňami" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -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/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "pred {months} mesiacmi" +msgstr[1] "pred {months} mesiacom" +msgstr[2] "pred {months} mesiacmi" -#: ckan/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/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "pred viac než {years} rokmi" +msgstr[1] "pred viac než {years} rokom" +msgstr[2] "pred viac než {years} rokmi" -#: ckan/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/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: 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/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{day} {month}, {year}" -#: 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/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bajtov" -#: 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/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KB" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Nemáte oprávnenie na vytvorenie používateľov" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MB" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Skupina nebola nájdená." +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GB" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Na vytvorenie balíka je potrebný platný API kľúč" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TB" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Na vytvorenie skupiny je potrebný API kľúč" +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Používateľ %s nemá oprávnenie na pridanie členov" +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Používateľ %s nemá oprávnenie upravovať skupinu %s" +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/delete.py:56 -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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: 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/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: 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/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: 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/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: 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/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Updadujte svojho avatara na stránke gravatar.com" -#: 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/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Neznáme" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Neoprávnený" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Nepomenovaný zdroj" -#: 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/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Nový dataset vytvorený." -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "Používateľ %s nemá oprávnenie čítať balík %s" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Upravené zdroje." -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Používateľ %s nemá oprávnenie čítať zdroj %s" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Upravené nastavenia." -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "Používateľ %s nemá oprávnenie čítať skupinu %s" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} videní" +msgstr[1] "{number} videnie" +msgstr[2] "{number} videní" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "Musíte byť prihlásený na prístup k nástenke." +#: ckan/lib/helpers.py:1650 +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í" -#: ckan/logic/auth/update.py:39 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to edit package %s" -msgstr "Používateľ %s nemá oprávnenie upravovať balík %s" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Používateľ %s nemá oprávnenie na úpravu zdroja %s" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Nie je k dispozícii žiadna emailová adresa prijímateľa!" -#: ckan/logic/auth/update.py:100 -#, 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizácia" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "Používateľ %s nemá oprávnenie na zmenu organizácie %s" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "skupina" -#: ckan/logic/auth/update.py:145 -#, 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/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Chýbajúca hodnota" -#: ckan/logic/auth/update.py:162 +#: ckan/lib/navl/validators.py:66 #, 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" +msgid "The input field %(name)s was not expected." +msgstr "Neočakávaný názov vstupného poľa %(name)s." -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Musíte byť pripojený na úpravu používateľa" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Prosím zadajte hodnotu celého čísla" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "Používateľ %s nemá oprávnenie upravovať používateľa %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/auth/update.py:208 -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/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Neplatný zdroj(e) balíka" -#: ckan/logic/auth/update.py:216 -#, 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/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Doplnky" -#: ckan/logic/auth/update.py:225 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to update task_status table" -msgstr "Používateľ %s nemá oprávnenie aktualizovať task_status tabuľky" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Tag \"%s\" neexistuje" -#: ckan/logic/auth/update.py:239 -#, 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/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Nepodarilo sa parsovať validný JSON" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Na úpravu balíka je potrebný platný API kľúč" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Na úpravu skupiny je potrebný platný API kľúč" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Organizácia neexistuje" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Nie je uvedená licencia" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Nieje požné pridať dataset do tejto organizácie" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Neplatné číslo" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Musí byť ṕrirodzené číslo" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Musí byť kladné číslo" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Nesprávny formát dát" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "V log_message nie sú povolené odkazy." -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Dataset s týmto identifikátorom už existuje" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Zdroj" -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Ostatné (otvorená licencia)" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Názov skupiny alebo ID neexistuje." -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Ostatné (verejná doména)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Typ aktivity" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Ostatné (licencia s priznaním autorstva)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Mená musia byť reťazce znakov" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Tento názov nemôže byť použitý" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Musí obsahovať minimálne %s znakov" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Ostatné (licencia pre nekomerčné využitie)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Meno musí mať najviac %i znakov" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Ostatné (zatvorená licencia)" +#: ckan/logic/validators.py:343 +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/model/package_relationship.py:54 -#, python-format -msgid "depends on %s" -msgstr "záleží od %s" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Táto URL už bola použitá." -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "is a dependency of %s" -msgstr "je závislosť od %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Názov \"%s\" je kratší, než minimálny počet znakov %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:370 #, python-format -msgid "derives from %s" -msgstr "je odvodené od %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Názov \"%s\" je dlhší, než maximálny počet znakov %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "has derivation %s" -msgstr "má pôvod %s" +msgid "Version must be a maximum of %i characters long" +msgstr "Verzia môže mať maximálne %i znakov." -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:394 #, python-format -msgid "links to %s" -msgstr "odkazuje na %s" +msgid "Duplicate key \"%s\"" +msgstr "Duplicitný kľúč \"%s\"" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Názov skupiny už existuje" + +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "je linkované z %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Tag \"%s\" je kratší ako minimálny počet %s znakov" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "je potomkom %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Dĺžka tagu \"%s\" presahuje povolené maximum %i" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "je predkom %s" +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/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "je príbuzný s %s" +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tag \"%s\" nesmie obsahovať veľké písmená" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Prebieha načítavanie..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Užívateľské mená musia byť textove reťazce" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Neexistuje dátové API na načítanie tohto zdroja" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Toto prihlasovacie meno nie je k dispozícii." -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Zlyhalo načítanie informácie o dátovom API" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Prosím zadajte obe heslá" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Žiadna zhoda" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Heslá musia byť textove reťazce" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Začnite písať..." +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Heslo musí mať najmenej 4 znaky" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Vstup je príliš krátky, zadajte aspoň jeden znak" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Zadané heslá sa nezhodujú" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Neuložili ste vykonané zmeny vo formulári" +#: ckan/logic/validators.py:611 +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/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Prosím, potvrďte túto akciu" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Názov musí mať aspoň %s znakov" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Chcete vykonať túto akciu?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Toto meno slovníka je už použité." -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Potvrdiť" +#: ckan/logic/validators.py:634 +#, 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/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Zrušiť" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Slovník tagov nebol nájdený." -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Odoberať" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Tag %s nepatrí do slovníku %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Prestať odoberať" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Žiaden názov tagu" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Nahrávanie" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tag %s už patrí do slovníku %s" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Odkaz" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Prosím, úveďte platnú URL" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Zmazať" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "rola neexistuje" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Obrázok" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Dataset, ktorý nepatrí organizácii nemôže byť súkromný" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Toto nieje zoznam" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Súbor" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Toto nieje textový reťazec" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Odošlite súbor na váš počítať" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Tento predok by vytvoril zacyklenie v hierarchii" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" a \"filter_values\" musia mať rovnakú dĺžku" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Preusporiadať zdroje" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" je povinné v prípade, že \"filter_values\" je vyplnené" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Uložiť výber" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" je povinné v prípade, že \"filter_fields\" je vyplnené" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Ukladám..." +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Už existuje schéma s rovnakým menom." -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Nahrať súbor" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Vyskytla sa chyba" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Vytvor objekt %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Zdroj nahraný" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Vytvor vzťah balíkov: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Nie je možné nahrať súbor" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Vytvoriť objekt %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Nie je možné autentifikovať nahraté súbory" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Skúšam vytvoriť organizáciu ako skupinu" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Nie je možné pristúpiť k nahranému súboru" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Musíte zadať id alebo meno balíka (parameter \"balík\")." -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "Nahrávate súbor. Chcete odísť preč a prerušiť nahrávanie?" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Musíte vyplniť hodnotenie (parameter \"hodnotenie\")." -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Preusporiadať náhľad dátového zdroja" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Hodnotenie musí byť celé číslo." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Upraviť" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Hodnotenie musí byť medzi %i a %i." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Ukázať viac" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Skryť" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Musíte byť prihlásený, ak chcete sledovať užívateľov" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Chyba %(error_code)s" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Nemôžete odoberať sám seba" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Informácie o {0}" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Už sledujete {0}" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Musíte byť prihlásený ak chcete sledovať dataset" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Uživateľ {username} neexistuje" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Beží na CKAN" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Musíte byť prihlásený, ak chcete sledovať skupinu." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Nastavenia systémového administrátora" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Ukázať profil" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Zmazať balík: %s" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, 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)" +msgid "REST API: Delete %s" +msgstr "REST API: Zmazať %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Nastenka" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Zmazať člena: %s" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Úprava nastavení" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id nie je v dátach" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Nastavenia" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Nemožno nájsť slovník \"%s\"" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Odhlásiť sa" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Nie je možné nájsť tag \"%s\"" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Prihlásiť sa" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Musíte byť pripojený pre odber." -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Zaregistrovať sa" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Neodoberáte {0}." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Datasety" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Zdroj nebol nájdený." -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Vyhľadať datasety" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Nešpecifikuje \"otázka\" parameter" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Hľadať" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Musí byť : pár(y)" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Preskočiť na obsah" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Pole \"{field}\"nebolo rozpoznané v zdrojovom_vyhľadávaní" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Načítať menej" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Balík nebol nájdený." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Načítať viac" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Aktualizovať objekt %s" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "Žiadne udalosti nie sú dostupné" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Aktualizovať vzťah balíkov: %s %s %s" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administrácia" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus nebol nájdený." -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Systémoví administrátori" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organizácia nebola nájdená." -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Konfigurácia" +#: 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/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Kôš" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Používateľ %s nemá oprávnenie upravovať tieto skupiny" -#: ckan/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "Chcete obnoviť konfiguráciu?" +#: 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/templates/admin/config.html:17 -msgid "Reset" -msgstr "Obnoviť" +#: 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/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Upraviť konfiguráciu" - -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN konfigurácia" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +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/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:76 #, 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.

" +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/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Potvrďte reset" +#: 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/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Spravovať CKAN" +#: 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/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:129 #, 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

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

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

" +"Používateľ {user} nemá oprávnenie na vytvorenie používteľom prostredníctvom " +"API" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Vyčistiť" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Nemáte oprávnenie na vytvorenie používateľov" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "

Odstrániť vymazané datasety navždy a nevratne.

" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Skupina nebola nájdená." -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN dátové API" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Na vytvorenie balíka je potrebný platný API kľúč" -#: ckan/templates/ajax_snippets/api_info.html:23 -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" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Na vytvorenie skupiny je potrebný API kľúč" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" -"Viac informácií na hlavná dokumentácia CKAN Data API a CKAN " -"DataStore.

" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Používateľ %s nemá oprávnenie na pridanie členov" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Koncové body" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Používateľ %s nemá oprávnenie upravovať skupinu %s" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "Prístup k dátovému API prostredníctvom nasledujúcich CKAN akcií API" +#: 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/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Vytvoriť" +#: ckan/logic/auth/delete.py:56 +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/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Aktualizovať / Vložiť" +#: 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/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Dopyt" +#: 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/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Dopyt (prostredníctvom SQL)" +#: 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Dopytovanie" +#: 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/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Príklad dopytu (prvých 5 výsledkov)" +#: 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Príklad dotazu (výsledky obsahujúce 'jones')" +#: 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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Ukážka dopytu (cez SQL výraz)" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Neoprávnený" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Ukážka: JavaScript" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Používateľ %s nemá oprávnenie čítať tieto balíky" -#: ckan/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" +#: 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/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Príklad: Python" +#: 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/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/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Používateľ %s nemá oprávnenie čítať skupinu %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Klikni pre viac informácií" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Musíte byť prihlásený na prístup k nástenke." -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Stiahnuť zdroj" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Používateľ %s nemá oprávnenie upravovať balík %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Váš webový prehliadač nepodporuje iframe" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Používateľ %s nemá oprávnenie na úpravu zdroja %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Náhľad nie je k dispozícii" +#: ckan/logic/auth/update.py:100 +#, 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/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Viac detailov..." +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Používateľ %s nemá oprávnenie na zmenu organizácie %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:145 #, 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" +msgid "User %s not authorized to change state of group %s" +msgstr "Používateľ %s nemá oprávnenie meniť stav skupiny %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Štandardný" +#: ckan/logic/auth/update.py:162 +#, 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/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Štandardný vstup" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Musíte byť pripojený na úpravu používateľa" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Stredný" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Používateľ %s nemá oprávnenie upravovať používateľa %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Vstup strednej šírky" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "Používateľ {0} nemá oprávnenie na úpravu profilu používateľa {1}" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Celý" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Používateľ %s nemá oprávnenie meniť stav revízie" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Vstup na celú šírku" +#: ckan/logic/auth/update.py:226 +#, 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/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Veľký" +#: ckan/logic/auth/update.py:240 +#, 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/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Veľký vstup" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Na úpravu balíka je potrebný platný API kľúč" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Predpripravený" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Na úpravu skupiny je potrebný platný API kľúč" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Predpripravený vstup" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Nie je uvedená licencia" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Vlastné pole (prázdne)" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Vlastné pole" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Textové pole" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Zvoliť" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Udalosti" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: 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/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Pridať skupinu" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Ostatné (otvorená licencia)" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Formulár skupiny" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Ostatné (verejná doména)" -#: 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/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Ostatné (licencia s priznaním autorstva)" -#: 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/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: 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/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Spravovať" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Ostatné (licencia pre nekomerčné využitie)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Upraviť skupinu" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Ostatné (zatvorená licencia)" -#: 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/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "záleží od %s" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Odoberatelia" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "je závislosť od %s" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "História" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "je odvodené od %s" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Pridať skupinu" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "má pôvod %s" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Prehľadávať skupiny..." +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "odkazuje na %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Meno vzostupne" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "je linkované z %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Meno zostupne" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "je potomkom %s" -#: 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/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "je predkom %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Čo tak jednu vytvoriť?" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "je príbuzný s %s" -#: 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/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Neexistuje dátové API na načítanie tohto zdroja" -#: 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/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Zlyhalo načítanie informácie o dátovom API" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Pridať člena" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Začnite písať..." -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Existujúci používateľ" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Žiadna zhoda" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Pokiaľ chcete pridať existujúceho používateľa, nižšie vyhľadajte jeho " -"používateľské meno" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "alebo" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Neuložili ste vykonané zmeny vo formulári" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Nový používateľ" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Prosím, potvrďte túto akciu" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "Pokiaľ chcete pozvať nového používateľa, zadajte jeho e-mail" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Chcete vykonať túto akciu?" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Rola" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Potvrdiť" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Skutočne chcete odstrániť tohto člena?" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Zmazať" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Prestať odoberať" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Uložiť" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Odoberať" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Čo sú role?" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Odkaz" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

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/public/base/javascript/modules/image-upload.js:61 +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/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/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Nahrávanie" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Aktualizovať skupinu" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Zmazať" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Vytvoriť skupinu" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Odošlite súbor na váš počítať" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevantnosť" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Naposledy zmenené" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Súbor" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Popularita" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Uložiť výber" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Vyhľadať datasety..." +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Ukladám..." -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Datasety v skupine: {group}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Nahrať súbor" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "História nedávnych úprav" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Vyskytla sa chyba" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Názov" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Nie je možné nahrať súbor" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Moja skupina" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Nie je možné autentifikovať nahraté súbory" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "moja-skupina" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Zdroj nahraný" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Popis" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Nie je možné pristúpiť k nahranému súboru" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Skrátené informácie o mojej skupine" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +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/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Si si istý, že chceš vymazať túto skupinu?" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Pridať filter" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Uložiť skupinu" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Upraviť" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Datasetov" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Ukázať viac" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Zobraziť {name}" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Skryť" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Vymaž dataset, z tejto skupiny" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Chyba %(error_code)s" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Čo sú skupiny?" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Informácie o {0}" -#: 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/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Porovnaj" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Zmazané" +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Beží na CKAN" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "dozvedieť sa viac" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Nastavenia systémového administrátora" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Revízia" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Ukázať profil" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Časový údaj" +#: ckan/templates/header.html:26 +#, 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)" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Autor" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Nastenka" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Správa logu" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Úprava nastavení" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Vitajte" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Nastavenia" -#: 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/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Odhlásiť sa" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Vitajte v CKAN" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Prihlásiť sa" -#: 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/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Zaregistrovať sa" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Toto je vybraná sekcia" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Datasety" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "Napr. prostredie" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Vyhľadať datasety" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Hľadať dáta" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Hľadať" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Populárne tagy" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Preskočiť na obsah" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} štatistika" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Načítať menej" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "dataset" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Načítať viac" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "datasety" +#: 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/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organizácie" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administrácia" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "skupiny" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Systémoví administrátori" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Konfigurácia" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Kôš" + +#: ckan/templates/admin/config.html:16 +#: 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:16 +msgid "Reset" +msgstr "Obnoviť" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Upraviť konfiguráciu" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN konfigurácia" + +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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 "" -"Tu môžete použiť Markdown formátovanie" +"

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/macros/form.html:265 -msgid "This field is required" -msgstr "Toto pole je povinné" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Potvrďte reset" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Upravené" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Spravovať CKAN" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Formulár obsahuje neplatné položky: " +#: 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/macros/form.html:395 -msgid "Required field" -msgstr "Povinné pole" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Vyčistiť" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "

Odstrániť vymazané datasety navždy a nevratne.

" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "Obrázok URL" +#: 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/macros/form.html:424 -msgid "Clear Upload" -msgstr "Vymazať nahrávanie" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Klikni pre viac informácií" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Formulár organizácie" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Stiahnuť zdroj" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Upravit datasety" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Náhľad nie je k dispozícii" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Pridaj dataset" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Viac detailov..." -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "najdené ako výsledok dotazu \"{query}\"" +#: 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/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Pre dotaz \"{query}\" neboli nájdené žiadne výsledky" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Štandardný" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Zprístupniť verejnosti" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Štandardný vstup" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Pridať do súkromných" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Stredný" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Predbežný návrh" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Vstup strednej šírky" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Súkromný" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Celý" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Táto organizácia nemá žiaden dataset spojený s ňou" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Vstup na celú šírku" -#: 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/development/snippets/form.html:8 +msgid "Large" +msgstr "Veľký" -#: 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/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/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "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:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "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:7 +msgid "Add a Group" +msgstr "Pridať skupinu" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Formulár skupiny" + +#: 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/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Pridať organizáciu" +#: 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/organization/index.html:20 -msgid "Search organizations..." -msgstr "Vyhladať organizácie" +#: 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/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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Spravovať" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Používateľské meno" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Upraviť skupinu" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "" +#: ckan/templates/group/edit_base.html:23 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/organization/member_new.html:62 -msgid "Update Member" -msgstr "Upraviť údaje o užívateľovi" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "História" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Pridať skupinu" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Vytvoriť Organizáciu" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Prehľadávať skupiny..." -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Aktualizovať Organizáciu" +#: 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/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Vytvoriť Organizáciu" +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Čo tak jednu vytvoriť?" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Pridať dataset" +#: 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/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Datasety v organizácii: {group}" +#: 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/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Čo sú to Organizácie" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Pridať člena" -#: 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/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Existujúci používateľ" -#: 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. " +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"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" +"Pokiaľ chcete pridať existujúceho používateľa, nižšie vyhľadajte jeho " +"používateľské meno" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "moja-organizácia" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "alebo" -#: 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/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Nový používateľ" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" -"Ste si istý, že chcete zmazať Organizáciu? Súčasne zmažete aj všetky verejné" -" a súkromné datasety, ktoré boli vytvorené za túto organizáciu." +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Pokiaľ chcete pozvať nového používateľa, zadajte jeho e-mail" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Uložiť Organizáciu" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Rola" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Zobraziť {organization_name}" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Vytvoriť dataset" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Zmazať" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Čo sú to datasety?" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Čo sú role?" -#: ckan/templates/package/base_form_page.html:25 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" msgstr "" -"CKAN dataset je súbor dátových zdrojov (ako napríklad súbory), spolu s " -"popisom a ďalšími informáciami na pevnej URL. Datasety sú to, čo " -"používatelia vidia pri vyhľadávaní dát." - -#: ckan/templates/package/confirm_delete.html: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:16 -msgid "View dataset" -msgstr "Zobraziť dataset" - -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Upraviť metadáta" +"

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/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/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/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Náhľad" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Aktualizovať skupinu" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Aktualizovať" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Vytvoriť skupinu" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Priradiť túto skupinu datasetu" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Vyhľadať datasety..." -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Pridať do skupiny" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Datasety v skupine: {group}" -#: 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/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "História nedávnych úprav" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Aktualizovať dataset" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Názov" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Pridať dáta do datasetu" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Moja skupina" -#: 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/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "moja-skupina" -#: 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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Skrátené informácie o mojej skupine" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Nový zdroj" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Si si istý, že chceš vymazať túto skupinu?" -#: 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/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Uložiť skupinu" -#: 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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Zobraziť {name}" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Pridať" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Vymaž dataset, z tejto skupiny" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Čo sú skupiny?" + +#: ckan/templates/group/snippets/helper.html:8 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +" 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 "" -"Toto je staré spracovanie tohto datasetu upravované v %(timestamp)s. Môže sa" -" výrazne líšiť od aktuálnej verzie." +" 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/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Nahrať do DataStore" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Porovnaj" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Chyba pri nahrávaní:" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Zmazané" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Chyba: " +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "dozvedieť sa viac" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Revízia" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Stav" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Časový údaj" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Naposledy zmenené" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Autor" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Nikdy" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Správa logu" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Nahrať záznam" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Vitajte" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Detaily" +#: 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/package/resource_data.html:81 -msgid "End of log" -msgstr "Koniec záznamu" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Vitajte v CKAN" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Všetky zdroje" +#: 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/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Zobraziť zdroj" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Toto je vybraná sekcia" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Upraviť zdroj" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Napr. prostredie" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Hľadať dáta" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Náhľady" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Populárne tagy" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "Koncový bod API" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} štatistika" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Choď ku zdroju" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "dataset" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Stiahnuť" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datasety" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizácie" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Z výňatku datasetu (abstrakt)" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "skupiny" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Zdroj: %(dataset)s" +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Tu môžete použiť Markdown formátovanie" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Pre daný dátový zdroj zatiaľ neexistujú žiadne náhľady." +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Toto pole je povinné" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Nevidíte náhľady, ktoré ste očakávali?" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Upravené" -#: ckan/templates/package/resource_read.html:121 -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/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Formulár obsahuje neplatné položky: " -#: ckan/templates/package/resource_read.html:123 -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/macros/form.html:395 +msgid "Required field" +msgstr "Povinné pole" -#: ckan/templates/package/resource_read.html:124 -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/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"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/macros/form.html:411 +msgid "Image URL" +msgstr "Obrázok URL" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Doplňujúce informácie" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Vymazať nahrávanie" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Pole" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Formulár organizácie" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Hodnota" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Upravit datasety" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "neznámy" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Pridaj dataset" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Vytvorené" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "najdené ako výsledok dotazu \"{query}\"" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Formát" +#: 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/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licencia" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Zprístupniť verejnosti" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Nový náhľad" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Pridať do súkromných" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Náhľad pre tento dátový zdroj nie je k dispozícii" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Predbežný návrh" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Pridať nový zdroj" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Súkromný" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

Dataset neobsahuje dáta, prečo nejaké" -" nepridať?

" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Táto organizácia nemá žiaden dataset spojený s ňou" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: 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/package/search.html:53 -msgid "API Docs" -msgstr "Dokumenty API" +#: 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/package/search.html:55 -msgid "full {format} dump" -msgstr "úplný {format} dump" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Pridať organizáciu" -#: 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/organization/index.html:20 +msgid "Search organizations..." +msgstr "Vyhladať organizácie" -#: 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/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/package/view_edit_base.html:9 -msgid "All views" -msgstr "Všetky náhľady" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Používateľské meno" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "Zobraziť náhľad" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Zobraziť náhľad" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Upraviť údaje o užívateľovi" -#: 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/organization/member_new.html:81 +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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Zdroj" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Vytvoriť Organizáciu" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Verzia" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Aktualizovať Organizáciu" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Stav" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Vytvoriť Organizáciu" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Posledná aktualizácia" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Pridať dataset" -#: 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/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Datasety v organizácii: {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: 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/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Data API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Moja Organizácia" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Nadpis" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "moja-organizácia" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "napr. popisný názov" +#: 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/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "napr. môj-dataset" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Ste si istý, že chcete zmazať Organizáciu? Súčasne zmažete aj všetky verejné" +" a súkromné datasety, ktoré boli vytvorené za túto organizáciu." -#: ckan/templates/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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Uložiť Organizáciu" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "napr. ekonomika, zdravie, vláda" +#: 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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"Informácie o licenciách nájdete na opendefinition.org" +"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/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organizácia" +#: 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/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Žiadna organizácia" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Viditeľnosť" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Zobraziť dataset" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Verejný" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Upraviť metadáta" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Aktívny" +#: 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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Náhľad" -#: 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/edit_view.html:21 +msgid "Update" +msgstr "Aktualizovať" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Ďalej: Pridať dáta" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Priradiť túto skupinu datasetu" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Pridať do skupiny" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Aktualizovať dataset" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Email autora" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Pridať dáta do datasetu" -#: 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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Pridať nový zdroj" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Email správcu" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Aktualizovať dátový 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:81 +msgid "Add" +msgstr "Pridať" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Toto je staré spracovanie tohto datasetu upravované v %(timestamp)s. Môže sa" +" výrazne líšiť od aktuálnej verzie." -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Všetky zdroje" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "napr. cena zlata v januári 2011" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Zobraziť zdroj" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Niekoľko užitočných poznámok o dátach" +#: 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/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "napr. CSV, XML alebo JSON" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Náhľady" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "Bude doplnené automaticky. Môže ostať nevyplnené. " +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "Koncový bod API" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "napr. 2012-06-05" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Choď ku zdroju" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Veľkosť súboru" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Stiahnuť" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "napr. 1024" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME typ" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Z výňatku datasetu (abstrakt)" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "napr. aplikácia/json" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Zdroj: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Ste si istí, že chcete zmazať tento dátový zdroj?" +#: ckan/templates/package/resource_read.html:109 +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/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Predchádzajúce" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Nevidíte náhľady, ktoré ste očakávali?" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Uložiť a pridať ďalší" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Dokončiť" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Čo je dátový zdroj?" +#: ckan/templates/package/resource_read.html:121 +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/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:122 +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 "" -"Dátový zdroj môže byť ľubovoľný súbor alebo odkaz na súbor obsahujúci " -"užitočné dáta." - -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Preskúmať" +"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/snippets/resource_item.html:36 -msgid "More information" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" msgstr "Doplňujúce informácie" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Zakomponovať" - -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "Náhľad dátového zdroja nie je momentálne k dispozícii." +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Pole" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Vložiť náhľad dátového zdroja" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Hodnota" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -"Môžete skopírovať a vložiť pridaný kód do CMS alebo do blog softvéru, ktorý " -"podporuje raw HTML" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Šírka" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "neznámy" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Výška" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Kód" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Vytvorené" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Zobrazenie dátového zdroja" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Formát" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Dáta a Dátové zdroje" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licencia" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Tento dataset neobsahuje dáta" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nový náhľad" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "Načítať datasety z %s" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Náhľad pre tento dátový zdroj nie je k dispozícii" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Vytvoriť dataset" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Pridať nový zdroj" -#: 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/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, python-format +msgid "" +"

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

" +msgstr "" +"

Dataset neobsahuje dáta, prečo nejaké" +" nepridať?

" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "napr. Môj náhľad" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: 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/search.html:53 +msgid "API Docs" +msgstr "Dokumenty API" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Pridať filter" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "úplný {format} dump" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Odstrániť filter" +#: 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/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filtre" +#: 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/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Čo je náhľad?" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Všetky náhľady" -#: 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/package/view_edit_base.html:12 +msgid "View view" +msgstr "Zobraziť náhľad" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Rozdiely" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Zobraziť náhľad" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Rozdiely revízií" +#: 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/revision/diff.html:44 -msgid "Difference" -msgstr "Rozdiel" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Zdroj" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Žiadne rozdiely" +#: 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/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "História revízií" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Verzia" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Revízie" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Stav" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Obnoviť" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Posledná aktualizácia" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Zmeny" +#: 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/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Tagy datasetov" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Prvok" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Nová aktivita" +#: 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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Zakomponovať prehliadač dát" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Nadpis" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Skopírovaním tohto kódu vložíte tento pohľad na vašu stránku." +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "napr. popisný názov" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Zvoľte výšku a šírku v pixeloch: " +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "napr. môj-dataset" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Šírka:" +#: 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/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Výška:" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "napr. ekonomika, zdravie, vláda" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Stav dátovej pumpy: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:41 +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/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Sledovacia URL" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizácia" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Zobraziť viac {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Žiadna organizácia" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Zobrazť iba obľúbené {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Viditeľnosť" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Neexistujú žiadne {facet_type} ktoré zodpovedajú hľadanému výrazu" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Verejný" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Domov" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Aktívny" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Jazyk" +#: 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/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Ísť" +#: 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/snippets/license.html:14 -msgid "No License Provided" -msgstr "Neposkytnutá žiadna licencia" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Ďalej: Pridať dáta" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Tento dataset vyhovuje Open Definition." +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Táto organizácia nemá popis" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Tento dataset nemá popis" +#: 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/snippets/search_form.html:17 -msgid "Submit" -msgstr "Vložiť" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email autora" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Zoradiť podľa" +#: ckan/templates/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/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Výsledky filtrovania" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email správcu" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Prosím vyskúšajte iný vyhľadávací výraz.

" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Aktualizovať dátový zdroj" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" 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}\"" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "Žiadne datasety nenájdené pre dopyt \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "napr. cena zlata v januári 2011" -#: 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" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Niekoľko užitočných poznámok o dátach" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Žiadne datasety nenájdené" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "napr. CSV, XML alebo JSON" + +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Bude doplnené automaticky. Môže ostať nevyplnené. " -#: 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}\"" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "napr. 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Žiadne skupiny nenájdené na dopyt \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Veľkosť súboru" -#: 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" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "napr. 1024" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Nenájdené žiadne skupiny" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME typ" -#: 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}\"" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "napr. aplikácia/json" -#: 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/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Ste si istí, že chcete zmazať tento dátový zdroj?" -#: 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" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Predchádzajúce" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Žiadne organizácie nenájdené" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Uložiť a pridať ďalší" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Zdieľať" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Dokončiť" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Prihlásiť k odberu" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Čo je dátový zdroj?" -#: 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:82 -msgid "Email" -msgstr "Email" +#: 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/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Preskúmať" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Úpravy" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Doplňujúce informácie" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Hľadať tagy" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Zakomponovať" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Novinky" +#: ckan/templates/package/snippets/resource_view.html:24 +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/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Moje datasety" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Vložiť náhľad dátového zdroja" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Moje organizacie" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Môžete skopírovať a vložiť pridaný kód do CMS alebo do blog softvéru, ktorý " +"podporuje raw HTML" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Moje skupiny" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Šírka" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Aktivity z poloziek ktore sledujem" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Výška" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Nemáte vytvorené žiadne datasety." +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Kód" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Vytvoriť jeden teraz?" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Zobrazenie dátového zdroja" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "Nie ste členom žiadnej skupiny." +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Dáta a Dátové zdroje" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Nie ste členom žiadnej organizácie." +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Tento dataset neobsahuje dáta" -#: 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/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Načítať datasety z %s" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Informácie o účte" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Vytvoriť dataset" -#: 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/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/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Zmena údajov" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "napr. Môj náhľad" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Celé meno" +#: 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/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "napr. Joe Bloggs" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Odstrániť filter" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "napr. joe@example.com" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Čo je náhľad?" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Základné informácie o vás" +#: 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/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Prihlásiť sa k emailovým upozorneniam" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Rozdiely" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Zmena hesla" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Rozdiely revízií" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Rozdiel" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Heslo" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Žiadne rozdiely" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Potvrdiť heslo" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "História revízií" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Určite chcete vymazať tohto používateľa?" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Revízie" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "Ste si istí, že chcete nanovo vygenerovať API kľúč?" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Obnoviť" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Nanovo vygenerovať API kľúč" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Zmeny" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Aktualizovať profil" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Tagy datasetov" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Všetci používatelia" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Prvok" -#: 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/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Nová aktivita" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Potrebujete používateľsy účet?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Zakomponovať prehliadač dát" -#: 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/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Skopírovaním tohto kódu vložíte tento pohľad na vašu stránku." -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Vytvoriť účet" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Zvoľte výšku a šírku v pixeloch: " -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Zabudli ste vaše heslo?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Šírka:" -#: 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/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Výška:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Zabudli ste heslo?" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Stav dátovej pumpy: {status}." -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Odhlásený" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Sledovacia URL" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Teraz ste odhlásený." +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Zobraziť viac {facet_type}" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Už ste pihlásený ako {user}" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Zobrazť iba obľúbené {facet_type}" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Odhlásiť sa" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Neexistujú žiadne {facet_type} ktoré zodpovedajú hľadanému výrazu" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Zapamätať si ma" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Domov" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Už ste prihlásený" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Jazyk" -#: ckan/templates/user/logout_first.html:24 -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/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Ísť" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Ihneď odhlásiť" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Neposkytnutá žiadna licencia" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Registrácia" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Tento dataset vyhovuje Open Definition." -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Registrujte sa a vytvorte si účet" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Táto organizácia nemá popis" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Prečo by som sa mal prihlásiť?" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Tento dataset nemá popis" -#: 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/snippets/search_form.html:17 +msgid "Submit" +msgstr "Vložiť" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "Používateľské meno" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Zoradiť podľa" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Celé meno" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Výsledky filtrovania" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Vytvoriť účet" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Prosím vyskúšajte iný vyhľadávací výraz.

" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Obnoviť heslo" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Obnoviť heslo" +#: 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}\"" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Zmeniť heslo" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Žiadne datasety nenájdené pre dopyt \"{query}\"" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Ako to funguje?" +#: 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" -#: ckan/templates/user/perform_reset.html:40 -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/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Žiadne datasety nenájdené" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Používateľ zatiaľ nevytvoril žiadny dataset" +#: 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}\"" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Nezadali ste svoj životopis." +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Žiadne skupiny nenájdené na dopyt \"{query}\"" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Tento používateľ nemá zadaný životopis." +#: 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" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Nenájdené žiadne skupiny" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "To znamená, že len vy to môžete vidieť" +#: 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}\"" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Členom od" +#: 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/user/read_base.html:96 -msgid "API Key" -msgstr "Kľúč API" +#: 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" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Obnoviť heslo" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Žiadne organizácie nenájdené" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Obnoviť heslo" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Zdieľať" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Požiadať o obnovenie" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Prihlásiť k odberu" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Zadajte svoje používateľské meno do poľa a bude Vám zaslaný email s odkazom " -"pre zadanie nového hesla." +#: 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:82 +msgid "Email" +msgstr "Email" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Aktívny od:" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Prehľadať zoznam..." +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Úpravy" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Momentálne nič nenasledujete" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Hľadať tagy" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Žiadny nasledovatelia" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Novinky" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Hľadať používateľov" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Moje datasety" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Ukončené" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Moje organizacie" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Čakajúce na spracovanie" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Moje skupiny" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Nahrávanie" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktivity z poloziek ktore sledujem" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Doposiaľ nenahrané" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Nemáte vytvorené žiadne datasety." -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Požadovaný zdroj z DataStore nebol nájdený" +#: 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:16 +msgid "Create one now?" +msgstr "Vytvoriť jeden teraz?" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" -"Dáta boli neplatné (napríklad: číselná hodnota je mimo rozsah alebo bola " -"vložená do textového poľa)." +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Nie ste členom žiadnej skupiny." -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "Zdroj \"{0}\" nebol nájdený" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Nie ste členom žiadnej organizácie." -#: 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}" +#: 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" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Datasetov na stránku" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informácie o účte" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" +#: 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." -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Vlastné pole vzostupne" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Zmena údajov" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Vlastné pole zostupne" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Celé meno" -#: 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" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "napr. Joe Bloggs" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "vlastný text" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "napr. joe@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Kód krajiny" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Základné informácie o vás" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "vlastný zdroj textu" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Prihlásiť sa k emailovým upozorneniam" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Zmena hesla" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Táto skupina nemá popis" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "Nástroj CKAN-u na zobrazenie dát má mnoho užitočných funkcií" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Heslo" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "URL obrázku" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Potvrdiť heslo" -#: 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)" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Určite chcete vymazať tohto používateľa?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Data Explorer" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Ste si istí, že chcete nanovo vygenerovať API kľúč?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Tabuľka" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Nanovo vygenerovať API kľúč" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Graf" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Aktualizovať profil" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Mapa" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Všetci používatelia" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -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 "Prihlásiť sa" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "offset riadka" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Potrebujete používateľsy účet?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "napr: 0" +#: 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." -#: 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" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Vytvoriť účet" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "napr: 100" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Zabudli ste vaše heslo?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Typ grafu" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Skupina (os 1)" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Zabudli ste heslo?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Rad (os 2)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Odhlásený" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Typ poľa" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Teraz ste odhlásený." -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "pole zemepisná šírka" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Už ste pihlásený ako {user}" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "pole zemepisná dĺžka" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Odhlásiť sa" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "GeoJSON pole" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Zapamätať si ma" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Auto zoom funkcií" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Už ste prihlásený" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Značky klastra" +#: ckan/templates/user/logout_first.html:24 +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ť." -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Celkový počet datasetov" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Ihneď odhlásiť" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Dátum" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registrácia" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Ceľkový počet datasetov" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registrujte sa a vytvorte si účet" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Zmeny datasetu za týždeň" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Prečo by som sa mal prihlásiť?" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Všetky zmeny datasetu" +#: 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í" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Nové datasety" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "Používateľské meno" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Najlepšie hodnotené datasety" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Celé meno" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Priemerné hodnotenie" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Vytvoriť účet" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Počet hodnotení" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Obnoviť heslo" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Bez hodnotení" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Obnoviť heslo" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Najviac upravované datasety" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Zmeniť heslo" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Počet úprav" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Ako to funguje?" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Žiadne datasety neboli upravené" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Jednoducho vložte nové heslo a my Vám zaktualizujeme účet" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Najväčšie skupiny" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Používateľ zatiaľ nevytvoril žiadny dataset" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Počet datasetov" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Nezadali ste svoj životopis." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Žiadne skupiny" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Tento používateľ nemá zadaný životopis." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Najčastejšie tagy" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Názov tagu" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "To znamená, že len vy to môžete vidieť" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Počet datasetov" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Členom od" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "Kľúč API" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Štatistické menu" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Obnoviť heslo" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Ceľkový počet datasetov" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Obnoviť heslo" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Požiadať o obnovenie" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Zadajte svoje používateľské meno do poľa a bude Vám zaslaný email s odkazom " +"pre zadanie nového hesla." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Webová stránka" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Aktívny od:" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "URL webovej stránky" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Prehľadať zoznam..." -#: 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/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" diff --git a/ckan/i18n/sl/LC_MESSAGES/ckan.mo b/ckan/i18n/sl/LC_MESSAGES/ckan.mo index 1e625c0b895..b888321fa95 100644 Binary files a/ckan/i18n/sl/LC_MESSAGES/ckan.mo and b/ckan/i18n/sl/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/sl/LC_MESSAGES/ckan.po b/ckan/i18n/sl/LC_MESSAGES/ckan.po index 007ca185275..cdf2597646a 100644 --- a/ckan/i18n/sl/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sl/LC_MESSAGES/ckan.po @@ -1,4608 +1,4708 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.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" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Manjkajoča avtorizacijska funkcija: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Končano" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administrator" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "V teku" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Urejevalec" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Pošiljam" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Član" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Napaka" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Za administracijo so potrebne sistemske pravice" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Ni še naloženo" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Naslov strani" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Vir ni na voljo" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Stil" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Nimate dovoljenja za ogled te strani" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Napis strani" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Naloži na DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Logo strani" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Napake prenosa:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Napaka:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Besedilo o strani" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Uvodno besedilo" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Besedilo na domači strani" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Nazadnje posodobljeno" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "CSS po meri" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nikoli" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "CSS po meri vstavljen v glavo strani" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Dnevnik prenosov" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Domača stran" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Podrobnosti" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Konec dnevnika" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +msgid "format: must be one of %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" +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "DataStore vir ni na voljo" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Odstranitev dokončana" +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" +"Podatki so napačni (na primer: numerična vrednost je izven dovoljenega " +"obsega ali pa je bila vnešena v tekstovno polje)." -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Ukaz ni implementiran" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Vir \"{0}\" ni na voljo." -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Nimate dovoljenja za ogled te strani" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Uporabnik {0} nima dovoljenja za posodobitev vira {1}" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Dostop zavrnjen" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN podatkovni API" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Ni na voljo" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Neveljavna zahteva" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +" Več informacij o glavnem CKAN podatkovnem API-ju in DataStore " +"dokumentacija.

" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Ime ukaza je neznan: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Končne točke" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON napaka: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Neuspešna zahteva podatkov: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Ustvari" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Ni možno predstaviti entite tega tipa: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Posodobi / Vnesi" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Ni možno prebrati entitete tega tipa: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Pozvedba" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Nove entitete izbranega tipa ni bilo mogoče ustvariti: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Poizvedba (preko SQL)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Ni možno dodati paketa k iskalnemu indeksu" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Poizvedovanje" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Entitete tega tipa ni bilo mogoče posodobiti: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Primer pozvedbe (prvih 5 rezultatov)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Ni možno posodobiti iskalni indeks" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Primer poizvedbe (rezultati ki vsebujejo 'jones')" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Entitete tega tipa ni mogoče izbrisati: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Primer poizvedbe (preko SQL stavkov)" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Revizija ni izbrana" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Primer: Javascript" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Različica za id %s ne obstaja." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Preprosta ajax (JSONP) poizvedba na podatkovni API z uporabo jQuery." -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Manjka iskalni niz ('od id=UUID' ali 'od time=TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Primer: Python" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Ni bilo možno prebrati parametra: %r" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Neveljaven iskalni parameter: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Neznan register: %s" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Opis" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Nepravilna qjson vrednost: %r" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Shrani" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Parametri zahtevka morajo biti zapisani v obliki json slovarja." +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Skupine ni bilo mogoče najti" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organizacije ni bilo mogoče najti" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Nepravilen tip skupine" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Nalaganje..." -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organizacije" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Podatkovni API" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Skupine" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tabela" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Oznake" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formati" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licence" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Nimate dovoljenja za masovne posodobitve" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Nabori podatkov na stran" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Nimate dovoljenja za ustvarjanje skupin" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testna nastavitev" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Uporabnik %r nima dovoljenja za urejanje %s" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Ustreznost" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Napaka v integriteti" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Uporabnik %r nima dovoljenja za urejanje %s dovoljenj" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Nimate dovoljenja za brisanje skupine %s" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Nazadnje spremenjeno" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organizacija je bila izbrisana" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Polje po meri naraščujoče" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Skupina je bila izbrisana" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Polje po meri padajoče" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s je bil izbrisan." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Popularno" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Nimate dovoljenja za dodajanje članov v skupino: %s" +#: 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" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Nimate dovoljenja za brisanje članov skupine :%s" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "tekst po meri" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Član skupine je bil izbrisan." +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Geslo države" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Pred primerjanjem morate izbrati dve verziji." +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "tekst vira po meri" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Zgodovina revizij CKAN skupine" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Nedavne spremembe CKAN skupin: " +#: 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/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Dnevniški zapis: " +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Sedaj sledite {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 "0 naborov podatkov" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Prenehali ste slediti {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 "CKANovo orodje za predogled podatkov ima močne zmogljivosti" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Nimate dovoljenja za prikaz sledilcev :%s" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Sledilci" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "Stran trenutno ni na voljo. Podatkovna baza ni inicializirana." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Viri" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" -"Prosim posodobite svoj profil in dodajte vaš email " -"naslov. " +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Slika" -#: ckan/controllers/home.py:83 -#, 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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "url slike" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "" +#: 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)" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parameter \"{parameter_name}\" ni cela številka" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Data Explorer" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Podatki niso na voljo" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Graf" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Nepravilen foramt revizije: %r" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Zemljevid" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -"Predogled {package_type} naborov podatkov v {format} formatu ni podprto " -"(datoteka z osnutkom {file} ni na voljo)." -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Nimate pravic za branje paketa %s" - -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Zgodovina revizij CKAN podatkov" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Nedavne spremembe CKAN podatkov:" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Nimate dovoljenja za ustvarjenje paketa" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Nimate dovoljenja za urejanje tega vira" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Vir ni na voljo" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filtri" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Nimate dovoljanje za posodobitev nabora podatkov" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Odklon vrstic" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Nabor podatkov {id} ni an voljo" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "npr: 0" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Dodati morate vsaj en podatkovni vir" +#: 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" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Napaka" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "npr: 100" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Nimate dovoljenja za ustvarjenje vira" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tip grafa" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Nimate dovoljenja za ustvarjanje vira za ta paket" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Skupina (os 1)" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Ni mogoče dodate paketa v iskalni indeks" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Serija (os 2)" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Ni mogoče posodobiti iskalni indeks" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tip polja" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Nabor podatkov je bil izbrisan" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Polje zemljepisne širine" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Nimate dovoljenja za izbris paketa %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Polje zemljepisne dolžine" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Vir je bil izbrisan" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON polje" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Nimate dovoljenja za izbris vira %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Samodejni zoom na značilnosti" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Ogled vira ni na voljo" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Markerji gruč" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Podatki o viru niso na voljo" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Celotno število naborov podatkov" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Prenos podatkov ni na voljo" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Datum" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Nimate dovoljenja za branje nabora podatkov %s" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Vsi nabori podatkov" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Nimate dovoljenja za branje vira %s" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Revizije naborov podatkov po tednih" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Nimate dovoljenja za urejanje vira" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "vse revizije podatkov" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Pogled ni na voljo" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Novi nabori podatkov" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Tip pogleda ni na voljo" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Najvišje ocenjeni nabori podatkov" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Nepravilen zahtevek za pogled vira podatkov" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Povprečna ocena" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Vir pogleda ni podan" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Število ocen" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Predogled ni definiran" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Ni ocen" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Zgodovina različic skladišča CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Najbolj urejevani nabori podatkov" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Nedavne spremembe skladišča CKAN." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Nabor podatkov" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Nabori podatki, ki so bili vplivani: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Število urejevanj" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Revizija posodobljena" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Ni urejevanih naborov podatkov" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Drugo" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Največje skupine" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Oznaka ne obstaja" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Skupina" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Uporabnik ne obstaja" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Število naborov podatkov" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Nimate dovoljenja za registracijo kot uporabnik." +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Ni skupin" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Nimate dovoljenja za ustvarjanje novega uporabnika" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Najvišje oznake" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Nimate dovoljenja za brisanje uporabnika z id \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Ime oznake" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Uporabnik ni izbran" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Število naborov podatkov" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Nimate dovoljenja za urejanje uporabnika %s" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profil posodobljen" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Uporabnik" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Nimate dovoljenja za ustvarjenje uporabnika %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Menu statistik" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Napačen Captcha. Prosim poskusite ponovno." +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Celotno število naborov podatkov" -#: ckan/controllers/user.py:265 -#, 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" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Besedilo" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Nimate dovoljenja za urejanje uporabnika" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Spletna stran" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "Uporabnik %s nima dovoljenja za urejanje %s" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL spletne strani" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Vnešeno geslo je napačno" +#: 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/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Staro geslo" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Vaš brskalnik ne podpira iframe-ov." -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "Nepravilno geslo" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Manjkajoča avtorizacijska funkcija: %s" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Prijava neuspešna. Napačno uporabniško ime ali geslo." +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administrator" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Nimate dovoljenja za zahtevo ponastavitve gesla-" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Urejevalec" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" ustreza večim uporabnikom" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Član" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Uporabnik: %s ne obstaja" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Za administracijo so potrebne sistemske pravice" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Prosimo preverite inbox za kodo za ponastavitev." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Naslov strani" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Ni možno poslati povezave za ponastavitev: %s" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Stil" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Nimate dovoljenja za ponastavitev gesla." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Napis strani" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Nepravilen ključ za ponastavitev. Prosim poskusite ponovno." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Logo strani" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Vaše geslo je bilo ponastavljeno." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Vaše geslo mora vsebovat vsaj 4 znake-" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Besedilo o strani" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Vnešeni gesli se ne ujemata." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Uvodno besedilo" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Morate vnesti geslo" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Besedilo na domači strani" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Predmet za sledenje ni na voljo" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "CSS po meri" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} ni na voljo" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "CSS po meri vstavljen v glavo strani" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Vse" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Domača stran" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Manjkajoča vrednost" +#: ckan/controllers/admin.py:161 +#, 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/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Preusmeritev na zunanjo stran ni dovoljena." +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problem pri odstranitvi revizije %s: %s" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} je dodal oznako {tag} k naboru podatkov {dataset}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Odstranitev dokončana" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} je posodobil skupino {group}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Ukaz ni implementiran" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} je posodobil organizacijo {organization}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Dostop zavrnjen" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} je posodobil nabor podatkov {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Ni na voljo" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} je spremenil ekstra {extra} nabora podatkov {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Neveljavna zahteva" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} je posodobil vir {resource} nabora podatkov {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Ime ukaza je neznan: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} je posodobil svoj profil" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON napaka: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} je izbrisal skupino {group}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Neuspešna zahteva podatkov: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} je izbrisal organizacijo {organization}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Ni možno predstaviti entite tega tipa: %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} je izbrisal nabor podatkov {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Ni možno prebrati entitete tega tipa: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} je zbrisal ekstra {extra} nabora podatkov {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Nove entitete izbranega tipa ni bilo mogoče ustvariti: %s %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} je izbrisal vir {resource} nabora podatkov {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Ni možno dodati paketa k iskalnemu indeksu" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} je ustvaril skupino {group}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Entitete tega tipa ni bilo mogoče posodobiti: %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} je ustvaril organizacijo {organization}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Ni možno posodobiti iskalni indeks" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} je ustvaril nabor podatkov {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Entitete tega tipa ni mogoče izbrisati: %s %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} je dodal ekstra {extra} naboru podatkov {dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Revizija ni izbrana" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} je dodal vir {resource} naboru podatkov {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Različica za id %s ne obstaja." -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} se je prijavil" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Manjka iskalni niz ('od id=UUID' ali 'od time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} je odstranil oznako {tag} naboru podatkov {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Ni bilo možno prebrati parametra: %r" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} je začel slediti {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Neveljaven iskalni parameter: %s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} je začel slediti {user}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Neznan register: %s" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} je začel slediti {group}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Nepravilna qjson vrednost: %r" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Preglej" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Parametri zahtevka morajo biti zapisani v obliki json slovarja." -#: 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/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Skupine ni bilo mogoče najti" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Januar" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organizacije ni bilo mogoče najti" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Februar" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Nepravilen tip skupine" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Marec" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organizacije" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "April" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Skupine" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Maj" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Oznake" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Junij" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formati" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Julij" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licence" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Avgust" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Uporabnik %r nima dovoljenja za urejanje %s" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "September" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Nimate dovoljenja za masovne posodobitve" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Oktober" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Nimate dovoljenja za ustvarjanje skupin" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "November" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Napaka v integriteti" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "December" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Uporabnik %r nima dovoljenja za urejanje %s dovoljenj" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "V tem trenutku" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nimate dovoljenja za brisanje skupine %s" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "Pred 0 minutami" -msgstr[1] "Pred 1 minuto" -msgstr[2] "Pred 2 minutama" -msgstr[3] "Pred {mins} minutami" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organizacija je bila izbrisana" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "Pred 0 urami" -msgstr[1] "Pred 1 uro" -msgstr[2] "Pred 2 urama" -msgstr[3] "Pred {hours} urami" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Skupina je bila izbrisana" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "Danes" -msgstr[1] "Včeraj" -msgstr[2] "Predvčerajšnjim" -msgstr[3] "Pred {days} dnevi" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s je bil izbrisan." -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "Ta mesec" -msgstr[1] "Prejšnji mesec" -msgstr[2] "2 meseca nazaj" -msgstr[3] "{months} mesecev nazaj" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "Letos" -msgstr[1] "Lani" -msgstr[2] "Predlani" -msgstr[3] "{years} let nazaj" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Nimate dovoljenja za dodajanje članov v skupino: %s" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Nimate dovoljenja za brisanje članov skupine :%s" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Član skupine je bil izbrisan." -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bajtov" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Pred primerjanjem morate izbrati dve verziji." -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Zgodovina revizij CKAN skupine" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Nedavne spremembe CKAN skupin: " -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Dnevniški zapis: " -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Sedaj sledite {0}" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Prenehali ste slediti {0}" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Nimate dovoljenja za prikaz sledilcev :%s" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: 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/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Prosim posodobite svoj profil in dodajte vaš email " +"naslov. " -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parameter \"{parameter_name}\" ni cela številka" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Podatki niso na voljo" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Nepravilen foramt revizije: %r" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Posodobite svojega avatarja na gravatar.com" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Neznano" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Nimate pravic za branje paketa %s" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Neimenovan vir" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Zgodovina revizij CKAN podatkov" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Nov nabor podatkov ustvarjen" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Nedavne spremembe CKAN podatkov:" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Viri urejeni." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Nimate dovoljenja za ustvarjenje paketa" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Nastavitve urejene." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Nimate dovoljenja za urejanje tega vira" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "Ni ogledov" -msgstr[1] "En ogled" -msgstr[2] "Dva ogleda" -msgstr[3] "{number} ogledov" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Nimate dovoljanje za posodobitev nabora podatkov" -#: ckan/lib/helpers.py:1618 -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/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Nabor podatkov {id} ni an voljo" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Dodati morate vsaj en podatkovni vir" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Email naslov prejemnika ni na voljo" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Nimate dovoljenja za ustvarjenje vira" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organizacija" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Nimate dovoljenja za ustvarjanje vira za ta paket" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "skupine" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Ni mogoče dodate paketa v iskalni indeks" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Manjkajoča vrednost" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Ni mogoče posodobiti iskalni indeks" -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Nabor podatkov je bil izbrisan" + +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "Vnosno polje %(name)s ni bilo pričakovano" +msgid "Unauthorized to delete package %s" +msgstr "Nimate dovoljenja za izbris paketa %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Prosimo vnesite celo številsko vrednost" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Vir je bil izbrisan" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Viri" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Nimate dovoljenja za izbris vira %s" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Paketni vir(i) neustrezni" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Ogled vira ni na voljo" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Dodatno" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Podatki o viru niso na voljo" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Slovar oznak \"%s\" ne obstaja" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Prenos podatkov ni na voljo" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Uporabnik" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Nimate dovoljenja za branje nabora podatkov %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Nabor podatkov" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Nimate dovoljenja za branje vira %s" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Skupina" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Nimate dovoljenja za urejanje vira" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Ni bilo mogoče prebrati kot ustrezen JSON" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Pogled ni na voljo" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Tip pogleda ni na voljo" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organizacija ne obstaja" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Nepravilen zahtevek za pogled vira podatkov" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Ne morete dodati nabora podatkov k tej organizaciji" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Vir pogleda ni podan" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Neustrezna celoštevilska vrednost" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Predogled ni definiran" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Mora biti naravno število" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Zgodovina različic skladišča CKAN" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Mora biti pozitivna celoštevilska vrednost" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Nedavne spremembe skladišča CKAN." -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Neustrezen format datuma" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Nabori podatki, ki so bili vplivani: %s.\n" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Dnevniški zapis ne sme vsebovati povezav." +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Revizija posodobljena" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Nabor podatkov s tem id-jem že obstaja" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Drugo" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Vir" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Oznaka ne obstaja" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "To ime skupine ali ID ne obstaja." +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Nimate dovoljenja za registracijo kot uporabnik." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Tip aktivnosti" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Nimate dovoljenja za ustvarjanje novega uporabnika" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Imena morajo biti nizi" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Nimate dovoljenja za brisanje uporabnika z id \"{user_id}\"." -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "To ime se ne more uporabiti" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Uporabnik ni izbran" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Must be at least %s characters long" -msgstr "Mora biti dolgo vsaj %s znakov" +msgid "Unauthorized to edit user %s" +msgstr "Nimate dovoljenja za urejanje uporabnika %s" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Uporabnik ne obstaja" + +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profil posodobljen" + +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Ime more biti največ %i znakov dolgo" +msgid "Unauthorized to create user %s" +msgstr "Nimate dovoljenja za ustvarjenje uporabnika %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Napačen Captcha. Prosim poskusite ponovno." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Mora biti samo z malimi črkami alfanumeričnih (ascii) znakov in simbolov: -_" +"Uporabnik \"%s\" je sedaj registriran, vendar vi ste še vedno prijavljeni " +"kot \"%s\" od prej" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Ta URL je že v uporabi" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Nimate dovoljenja za urejanje uporabnika" -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Dolžina imena \"%s\" je manjša od minimuma %s" +msgid "User %s not authorized to edit %s" +msgstr "Uporabnik %s nima dovoljenja za urejanje %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Dolžina imena \"%s\" je večja od maksimuma %s" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Vnešeno geslo je napačno" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "verzija mora biti največ %i znakov dolga" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Staro geslo" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Podvojen ključ \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "Nepravilno geslo" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Skupina s tem imenom že obstaja v podatkovni bazi" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Prijava neuspešna. Napačno uporabniško ime ali geslo." -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Dolžina oznake \"%s\" je manjša od minimuma %s" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Nimate dovoljenja za zahtevo ponastavitve gesla-" -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Dolžina oznake \"%s\" je večja od maksimuma %i" +msgid "\"%s\" matched several users" +msgstr "\"%s\" ustreza večim uporabnikom" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "Oznaka \"%s\" mora biti iz alfanumeričnih znakov ali simbolov: -_." +msgid "No such user: %s" +msgstr "Uporabnik: %s ne obstaja" + +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Prosimo preverite inbox za kodo za ponastavitev." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Oznaka \"%s\" ne sme imeti velikih črk" +msgid "Could not send reset link: %s" +msgstr "Ni možno poslati povezave za ponastavitev: %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Uporabniška imena morajo biti nizi" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Nimate dovoljenja za ponastavitev gesla." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "To uporabniško ime ni na voljo" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Nepravilen ključ za ponastavitev. Prosim poskusite ponovno." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Prosimo vnesite obe gesli" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Vaše geslo je bilo ponastavljeno." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Gesli morata biti niza" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Vaše geslo mora vsebovat vsaj 4 znake-" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Vaše geslo mora biti dolgo vsaj 4 znake" - -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Vnešeni gesli se ne ujemata" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Vnešeni gesli se ne ujemata." -#: ckan/logic/validators.py:610 -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/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Morate vnesti geslo" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Ime mora biti dolgo vsaj %s znakov" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Predmet za sledenje ni na voljo" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "To ime je že uporabljeno v slovarju" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} ni na voljo" -#: ckan/logic/validators.py:633 -#, 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/controllers/user.py:654 +msgid "Everything" +msgstr "Vse" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Slovar oznak ni na voljo." +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Manjkajoča vrednost" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Oznaka %s ne pripada slovarju %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Preusmeritev na zunanjo stran ni dovoljena." -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Ni imena oznake" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} je dodal oznako {tag} k naboru podatkov {dataset}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Oznaka %s že pripada slovarju %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} je posodobil skupino {group}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Prosim podajte ustrezen URL" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} je posodobil organizacijo {organization}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "vloga ne obstaja." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} je posodobil nabor podatkov {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Nabori podatkov brez organizacij ne morejo biti zasebni." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} je spremenil ekstra {extra} nabora podatkov {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Ni seznam" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} je posodobil vir {resource} nabora podatkov {dataset}" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Ni niz" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} je posodobil svoj profil" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Ta starš bi naredil krog v hierarhiji" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} je izbrisal skupino {group}" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" in \"filter_values\" morata imeti podobni dolžini" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} je izbrisal organizacijo {organization}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" je nujen ko je \"filter_values\" izpolnjen" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} je izbrisal nabor podatkov {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" je nujen ko je \"filter_fields\" izpolnjen" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} je zbrisal ekstra {extra} nabora podatkov {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Polje sheme z istim imenom že obstaja" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} je izbrisal vir {resource} nabora podatkov {dataset}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Ustvari objekt %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} je ustvaril skupino {group}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Ustvarite relacijo paketa: %s %s %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} je ustvaril organizacijo {organization}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Ustvarite članski objekt %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} je ustvaril nabor podatkov {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Poskušanje ustvarjanja organizacije kot skupine" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} je dodal ekstra {extra} naboru podatkov {dataset}" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "Navesti morate identifikator ali ime paketa (parameter \"package\")." +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} je dodal vir {resource} naboru podatkov {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Navesti morate oceno (parameter \"rating\")." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} se je prijavil" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Ocena mora biti celoštevilska vrednost." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} je odstranil oznako {tag} naboru podatkov {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Ocena mora biti med %i in %i." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} je začel slediti {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} je začel slediti {user}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Za sledenje uporabnikom morate biti prijavljeni" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} je začel slediti {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Ne morete slediti samemu sebi" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Preglej" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Vi že sledite {0}" +#: 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/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Če želite slediti naboru podatkov morate biti prijavljeni." +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Januar" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Uporabnik {username} ne obstaja." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Februar" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Za sledenje skupini morate biti prijavljeni." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Marec" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "April" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Izbris paketa: %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Maj" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Izbris %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Junij" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Izbris člana: %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Julij" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id ni v podatkih" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Avgust" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Ni možno najti slovarja \"%s\"" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "September" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Ni bilo možno najti oznake \"%s\"" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Oktober" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Za prekinitev sledenja se je potrebno prijaviti." +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "November" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Ne sledite {0}." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "December" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Vir ni na voljo." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "V tem trenutku" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Ne navedite, če uporabljate \"query\" parameter" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "Pred 0 minutami" +msgstr[1] "Pred 1 minuto" +msgstr[2] "Pred 2 minutama" +msgstr[3] "Pred {mins} minutami" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Morajo biti : pari" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "Pred 0 urami" +msgstr[1] "Pred 1 uro" +msgstr[2] "Pred 2 urama" +msgstr[3] "Pred {hours} urami" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Polje \"{field}\" ni prepoznano v resource_search." +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "Danes" +msgstr[1] "Včeraj" +msgstr[2] "Predvčerajšnjim" +msgstr[3] "Pred {days} dnevi" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Paket ni na voljo." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "Ta mesec" +msgstr[1] "Prejšnji mesec" +msgstr[2] "2 meseca nazaj" +msgstr[3] "{months} mesecev nazaj" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Posodobitev objekta %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "Letos" +msgstr[1] "Lani" +msgstr[2] "Predlani" +msgstr[3] "{years} let nazaj" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Posodobitev relacije paketa: %s %s %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus ni na voljo." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organizacija ni na voljo." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bajtov" -#: 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/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Uporabnik %s nima dovoljenja za urejanje teh skupin" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: 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/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "Paketa za ta vir ni na voljo, ni možno preveriti avtentikacije." +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: 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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Ni dovoljenja za ustvarjanje uporabnikov" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Skupina ne obstaja." +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Za ustvarjanje paketa potrebujete veljaven API ključ" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Za ustvarjanje skupine potrebujete veljaven API ključ" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Posodobite svojega avatarja na gravatar.com" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Uporabnik %s nima dovoljenja za dodajanje članov" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Neznano" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Uporabnik %s nima dovoljenja za urejanje skupine %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Neimenovan vir" -#: 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/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Nov nabor podatkov ustvarjen" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "Pogled vira ni an voljo, ni možno preveriti avtentikacije." +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Viri urejeni." -#: 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/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Nastavitve urejene." -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "Ni ogledov" +msgstr[1] "En ogled" +msgstr[2] "Dva ogleda" +msgstr[3] "{number} ogledov" -#: 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/lib/helpers.py:1650 +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/logic/auth/delete.py:103 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organizations" -msgstr "Uporabnik %s nima dovoljenja za brisanje organizacij" +msgid "%s <%s>" +msgstr "%s <%s>" -#: 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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Email naslov prejemnika ni na voljo" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizacija" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Nimate dovoljenja" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "skupine" -#: 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/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Manjkajoča vrednost" -#: ckan/logic/auth/get.py:130 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read package %s" -msgstr "Uporabnik %s nima dovoljenja za branje paketa %s" +msgid "The input field %(name)s was not expected." +msgstr "Vnosno polje %(name)s ni bilo pričakovano" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Uporabnik %s nima dovoljenja za branje vira %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Prosimo vnesite celo številsko vrednost" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "Uporabnik %s nima dovoljenja za branje skupine %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "Za dostop do digitalne delovne mize morate biti prijavljeni." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Paketni vir(i) neustrezni" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "Uporabnik %s nima dovoljenja za urejanje paketa %s" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Dodatno" -#: ckan/logic/auth/update.py:71 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Uporabnik %s nima dovoljenja za urejanje vira %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Slovar oznak \"%s\" ne obstaja" -#: ckan/logic/auth/update.py:100 -#, 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:128 -#, 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:145 -#, 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:162 -#, 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:189 -msgid "Have to be logged in to edit user" -msgstr "Za urejanje uporabnika morate biti prijavljeni" - -#: ckan/logic/auth/update.py:197 -#, 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:208 -msgid "User {0} not authorized to update user {1}" -msgstr "Uporabnik {0} nima dovoljenja za posodobitev uporabnika {1}" - -#: ckan/logic/auth/update.py:216 -#, 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:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "Uporabnik %s nima dovoljenja za posodobitev task_status tabele" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Ni bilo mogoče prebrati kot ustrezen JSON" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "Uporabnik %s nima dovoljenja za posodobitev term_translation tabele" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Za urejanje paketa potrebujete veljaven API ključ" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Organizacija ne obstaja" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Za urejanje skupine potrebujete veljaven API ključ" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Ne morete dodati nabora podatkov k tej organizaciji" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Licenca ni določena" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Neustrezna celoštevilska vrednost" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Mora biti naravno število" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Mora biti pozitivna celoštevilska vrednost" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Neustrezen format datuma" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Dnevniški zapis ne sme vsebovati povezav." -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Nabor podatkov s tem id-jem že obstaja" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Vir" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "To ime skupine ali ID ne obstaja." -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Drugo (odprto)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Tip aktivnosti" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Drugo (javna domena)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Imena morajo biti nizi" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Drugo (pripis)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "To ime se ne more uporabiti" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Mora biti dolgo vsaj %s znakov" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Ime more biti največ %i znakov dolgo" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Drugo (ne-komercialno)" +#: ckan/logic/validators.py:343 +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/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Drugo (ni odprto)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Ta URL je že v uporabi" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "odvisen od %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Dolžina imena \"%s\" je manjša od minimuma %s" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "je odvisnost za %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Dolžina imena \"%s\" je večja od maksimuma %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "izhaja iz %s" +msgid "Version must be a maximum of %i characters long" +msgstr "verzija mora biti največ %i znakov dolga" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "ima predelavo %s" +msgid "Duplicate key \"%s\"" +msgstr "Podvojen ključ \"%s\"" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "vodi k %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Skupina s tem imenom že obstaja v podatkovni bazi" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "vodi od %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Dolžina oznake \"%s\" je manjša od minimuma %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "je naslednik %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Dolžina oznake \"%s\" je večja od maksimuma %i" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "je predhodnik %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Oznaka \"%s\" mora biti iz alfanumeričnih znakov ali simbolov: -_." -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "je soroden %s" +msgid "Tag \"%s\" must not be uppercase" +msgstr "Oznaka \"%s\" ne sme imeti velikih črk" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Nalaganje..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Uporabniška imena morajo biti nizi" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Ni na voljo API podatkov za ta vir" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "To uporabniško ime ni na voljo" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Nalaganje podatkov o API informacijah ni uspelo" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Prosimo vnesite obe gesli" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Ni zadetkov" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Gesli morata biti niza" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Začnite tipkati…" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Vaše geslo mora biti dolgo vsaj 4 znake" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Vnos je prekratek, mora biti dolg vsaj 1 znak" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Vnešeni gesli se ne ujemata" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Na tem obrazcu so neshranjene spremembe" +#: ckan/logic/validators.py:611 +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/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Prosim potrdite dejanje" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Ime mora biti dolgo vsaj %s znakov" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Ste prepričani da želite izvesti to dejanje?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "To ime je že uporabljeno v slovarju" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Potrdi" +#: ckan/logic/validators.py:634 +#, 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/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Prekliči" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Slovar oznak ni na voljo." -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Sledi" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Oznaka %s ne pripada slovarju %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Prenehaj slediti" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Ni imena oznake" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Naloži" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Oznaka %s že pripada slovarju %s" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Poveži" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Prosim podajte ustrezen URL" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Odstrani" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "vloga ne obstaja." -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Slika" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Nabori podatkov brez organizacij ne morejo biti zasebni." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Ni seznam" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Datoteka" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Ni niz" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Naložite datoteko z vašega računalnika" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Ta starš bi naredil krog v hierarhiji" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" in \"filter_values\" morata imeti podobni dolžini" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Preuredi vire" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" je nujen ko je \"filter_values\" izpolnjen" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Shrani naročilo" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" je nujen ko je \"filter_fields\" izpolnjen" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Shranjujem..." +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Polje sheme z istim imenom že obstaja" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Naloži datoteko" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Prišlo je do napake" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Ustvari objekt %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Vir naložen" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Ustvarite relacijo paketa: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Ni možno naložiti datoteke" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Ustvarite članski objekt %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Prenosa ni mogoče avtenticirati" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Poskušanje ustvarjanja organizacije kot skupine" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Podatkov za preneseno datoteko ni mogoč pridobiti" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Navesti morate identifikator ali ime paketa (parameter \"package\")." -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Trenutno prenašate datoteko. Ste prepričani da se želite preusmeriti drugam " -"in prekiniti ta prenos?" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Navesti morate oceno (parameter \"rating\")." -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Preuredi pogled vira" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Ocena mora biti celoštevilska vrednost." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Uredi" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Ocena mora biti med %i in %i." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Pokaži več" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Skrij" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Za sledenje uporabnikom morate biti prijavljeni" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Napaka %(error_code)s" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Ne morete slediti samemu sebi" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "O {0}" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Vi že sledite {0}" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Če želite slediti naboru podatkov morate biti prijavljeni." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Uporabnik {username} ne obstaja." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Za sledenje skupini morate biti prijavljeni." + +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -"Portal omogoča CKAN" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Nastavitve skrbnika sistema" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Izbris paketa: %s" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Poglej profil" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Izbris %s" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:318 #, 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" +msgid "REST API: Delete Member: %s" +msgstr "REST API: Izbris člana: %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Digitalna delovna deska" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id ni v podatkih" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Uredi nastavitve" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Ni možno najti slovarja \"%s\"" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Nastavitve" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Ni bilo možno najti oznake \"%s\"" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Odjava" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Za prekinitev sledenja se je potrebno prijaviti." -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Prijava" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Ne sledite {0}." -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Registracija" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Vir ni na voljo." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Nabori podatkov" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Ne navedite, če uporabljate \"query\" parameter" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Preišči nabore podatkov" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Morajo biti : pari" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Išči" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Polje \"{field}\" ni prepoznano v resource_search." -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Preskoči na vsebino" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Paket ni na voljo." -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Naloži manj" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Posodobitev objekta %s" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Naloži več" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Posodobitev relacije paketa: %s %s %s" -#: 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/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus ni na voljo." -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administracija" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Organizacija ni na voljo." -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Skrbniki sistema" +#: 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/templates/admin/base.html:9 -msgid "Config" -msgstr "Nastavitve" - -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Smeti" - -#: ckan/templates/admin/config.html:16 -#: 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:17 -msgid "Reset" -msgstr "Ponastavi" - -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Posodobi nastavitve" - -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN nastavitve" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Uporabnik %s nima dovoljenja za urejanje teh skupin" -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:38 #, 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.

" +msgid "User %s not authorized to add dataset to this organization" 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.

" +"Uporabnik %s nima dovoljenja za dodajanje naborov podatkov k tej " +"organizaciji" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Potrdi ponastavitev" +#: 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/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Administriraj CKAN" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "Paketa za ta vir ni na voljo, ni možno preveriti avtentikacije." -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:76 #, 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

" +msgid "User %s not authorized to create resources on dataset %s" 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

" +"Uporabnik %s nima dovoljenja za ustvarjenje vira na naboru podatkov %s" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Očisti" +#: 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/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "

Očisti izbrisani nabor podatkov za vedno in irreverzibilno.

" +#: 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/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN podatkovni API" +#: 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/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" msgstr "" -"Dostopaj do podatkov virov preko spletnega API-ja z močno query podporo" +"Uporabnik {user} nima dovoljenja za ustvarjanje uporabnikov preko API-ja" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" -" Več informacij o glavnem CKAN podatkovnem API-ju in DataStore " -"dokumentacija.

" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Ni dovoljenja za ustvarjanje uporabnikov" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Končne točke" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Skupina ne obstaja." -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"Do podatkovnega API-ja se lahko dostopa preko naslednjih ukazov iz CKAN API-" -"ja." +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Za ustvarjanje paketa potrebujete veljaven API ključ" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Ustvari" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Za ustvarjanje skupine potrebujete veljaven API ključ" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Posodobi / Vnesi" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Uporabnik %s nima dovoljenja za dodajanje članov" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Pozvedba" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Uporabnik %s nima dovoljenja za urejanje skupine %s" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Poizvedba (preko SQL)" +#: 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Poizvedovanje" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "Pogled vira ni an voljo, ni možno preveriti avtentikacije." -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Primer pozvedbe (prvih 5 rezultatov)" +#: 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Primer poizvedbe (rezultati ki vsebujejo 'jones')" +#: 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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Primer poizvedbe (preko SQL stavkov)" +#: 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/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Primer: Javascript" +#: 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/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." +#: 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/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Primer: Python" +#: 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/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/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Nimate dovoljenja" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Klikni za več informacij." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Uporabnik %s nima dovoljenja za branje teh paketov" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Prenesi vir" +#: 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/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Vaš brskalnik ne podpira iframe-ov." +#: 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/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Predolged ni na voljo." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Uporabnik %s nima dovoljenja za branje skupine %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Več podrobnosti..." +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Za dostop do digitalne delovne mize morate biti prijavljeni." -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:39 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Upravljalec za podatkovni tip %(type)s ni definiran." +msgid "User %s not authorized to edit package %s" +msgstr "Uporabnik %s nima dovoljenja za urejanje paketa %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Standard" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Uporabnik %s nima dovoljenja za urejanje vira %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Standardni vhod" +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Uporabnik %s nima dovoljenja za spremembo stanja paketa %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Srednji" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Uporabnik %s nima dovoljenja za urjanje organizacije %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Srednje obsežni vhod" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Uporabnik %s nima dovoljenja za spremembo stanja skupine %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Polno" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Uporabnik %s nima dovoljenja za urejanje dovoljenj skupine %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Polno obsežni vhod" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Za urejanje uporabnika morate biti prijavljeni" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Velik" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Uporabnik %s nima dovoljenja za urejanje uporabnika %s" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Velik vhod" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "Uporabnik {0} nima dovoljenja za posodobitev uporabnika {1}" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Predpni" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Uporabnik %s nima dovoljenja za spremembo stanje revizija" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Predpni vhod" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Uporabnik %s nima dovoljenja za posodobitev task_status tabele" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Polje po meri (prazno)" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Uporabnik %s nima dovoljenja za posodobitev term_translation tabele" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Polje po meri" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Za urejanje paketa potrebujete veljaven API ključ" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Označevanje" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Za urejanje skupine potrebujete veljaven API ključ" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Tekstovno polje" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Licenca ni določena" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Izberi" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Tok aktivnosti" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: 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/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Dodaj skupino" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Obrazec za skupino" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: 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/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: 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/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: 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/model/license.py:301 +msgid "Other (Open)" +msgstr "Drugo (odprto)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Oskrbi" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Drugo (javna domena)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Uredi skupino" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Drugo (pripis)" -#: 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/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Sledilci" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Zgodovina" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Drugo (ne-komercialno)" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Dodaj skupno" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Drugo (ni odprto)" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Išči po skupinah..." +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "odvisen od %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Naraščajoče po imenih" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "je odvisnost za %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Padajoče po imenih" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "izhaja iz %s" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "Trenutno ni skupin za to stran" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "ima predelavo %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Ali bi naredili novo?" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "vodi k %s" -#: 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/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "vodi od %s" -#: 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:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Dodaj člana" - -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Obstoječi član" - -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Če želite dodati obstoječega člana, poiščite njihovo uporabniško ime spodaj." - -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "ali" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "je naslednik %s" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Nov uporabnik" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "je predhodnik %s" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "Če želite povabiti novega člana, vnesite njihov email naslov." +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "je soroden %s" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Vloga" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Ni na voljo API podatkov za ta vir" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Ste preprićani da želite izbrisati tega člana?" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Nalaganje podatkov o API informacijah ni uspelo" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Izbriši" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Začnite tipkati…" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Shrani" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Ni zadetkov" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Kaj so vloge?" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

Skrbnik: Lahko ureja informacijo o skupini, kot tudi " -"upravlja s člani organizacije.

Član: Lahko " -"doda/odstrani nabore podatkov iz skupin

" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Na tem obrazcu so neshranjene spremembe" -#: 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/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Prosim potrdite dejanje" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Posodobi skupino" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Ste prepričani da želite izvesti to dejanje?" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Ustvari skupino" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Potrdi" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Ustreznost" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Nazadnje spremenjeno" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Prenehaj slediti" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Popularno" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Sledi" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Preišči nabore podatkov..." +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Poveži" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Nabori podatkov v skupini: {group}" +#: ckan/public/base/javascript/modules/image-upload.js:61 +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/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Nedavna zgodovina revizij" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Naloži" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Ime" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Odstrani" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Moja skupina" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Naložite datoteko z vašega računalnika" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "moja-skupina" +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Opis" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Datoteka" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Nekaj informacij o moji skupini..." +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Shrani naročilo" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Ste prepričani, da želite izbrisati to skupino?" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Shranjujem..." -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Shrani skupino" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Naloži datoteko" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} naborov podatkov" -msgstr[1] "1 nabor podatkov" -msgstr[2] "2 nabora podatkov" -msgstr[3] "{num} naborov podatkov" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Prišlo je do napake" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 naborov podatkov" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Ni možno naložiti datoteke" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Pogled {name}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Prenosa ni mogoče avtenticirati" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Izbriši nabor podatkov iz te skupine" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Vir naložen" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Kaj so skupine?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Podatkov za preneseno datoteko ni mogoč pridobiti" -#: ckan/templates/group/snippets/helper.html:8 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 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. " +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" msgstr "" -" CKAN skupine lahko uporabite za ustvarjanje in upravljanje zbirk naborov " -"podatkov. To so lahko katalogi naborov podatkov za določen projekt ali " -"ekipo, ali za določeno tematiko, ali kot preprost način da drugi ljudje " -"najdejo in uporabijo vaše objavljene nabore podatkov. " - -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Primerjaj" +"Trenutno prenašate datoteko. Ste prepričani da se želite preusmeriti drugam " +"in prekiniti ta prenos?" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Izbrisano" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Dodaj filter" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "preberi več" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Različica" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Uredi" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Časovni žig" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Pokaži več" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Avtor" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Skrij" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Dnevniško sporočilo" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Napaka %(error_code)s" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Dobrodošli" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "O {0}" -#: ckan/templates/home/snippets/about_text.html:1 +#: 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 "" -"

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/

" +"Powered by CKAN" 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/

" +"Portal omogoča CKAN" + +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Nastavitve skrbnika sistema" + +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Poglej profil" + +#: ckan/templates/header.html:26 +#, 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:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Digitalna delovna deska" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Uredi nastavitve" + +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Nastavitve" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Odjava" + +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Prijava" + +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registracija" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Nabori podatkov" + +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Preišči nabore podatkov" + +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Išči" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Preskoči na vsebino" + +#: 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:29 +msgid "Trash" +msgstr "Smeti" + +#: ckan/templates/admin/config.html:16 +#: 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:16 +msgid "Reset" +msgstr "Ponastavi" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Posodobi nastavitve" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN nastavitve" + +#: ckan/templates/admin/config.html:33 +#, 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/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Dobrodošli na CKAN" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administriraj CKAN" -#: ckan/templates/home/snippets/promoted.html:10 +#: ckan/templates/admin/index.html:20 +#, python-format 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 " +"

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

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/home/snippets/search.html:6 -msgid "Search data" -msgstr "Preišči podatke" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Očisti" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Popularne oznake" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "

Očisti izbrisani nabor podatkov za vedno in irreverzibilno.

" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} statistike" +#: 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/home/snippets/stats.html:11 -msgid "dataset" -msgstr "nabor podatkov" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Klikni za več informacij." -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "nabori podatkov" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Prenesi vir" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organizacije" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Predolged ni na voljo." -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "skupine" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Več podrobnosti..." -#: ckan/templates/macros/form.html:126 +#: ckan/templates/dataviewer/snippets/no_preview.html:12 #, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" -"Uporabite lahko Markdown formatiranje teksta" - -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "To polje je nujno" - -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Po meri" - -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Ta obrazec vsebuje neveljavne vnose:" +msgid "No handler defined for data type: %(type)s." +msgstr "Upravljalec za podatkovni tip %(type)s ni definiran." -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Nujno polje" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standardni vhod" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL slike" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Srednji" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Počisti prenos" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Srednje obsežni vhod" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Obrazec za organizacije" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Polno" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Uredi nabore podatke" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Polno obsežni vhod" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Dodaj nabor podatkov" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Velik" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr " najdeno za \"{query}\"" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Velik vhod" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Ni na voljo naborov podatkov za \"{query}\"" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Predpni" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Naredi javno" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Predpni vhod" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Naredi zasebno" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Polje po meri (prazno)" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Osnutek" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Polje po meri" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Zasebno" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Označevanje" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Ta organizacija nima naborov podatkov" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Tekstovno polje" -#: 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/development/snippets/form.html:24 +msgid "Select" +msgstr "Izberi" -#: 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/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Tok aktivnosti" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Dodaj organizacijo" +#: 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/organization/index.html:20 -msgid "Search organizations..." -msgstr "Preišči organizacije..." +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Dodaj skupino" -#: 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/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Obrazec za skupino" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Uporabniško ime" +#: ckan/templates/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/organization/member_new.html:50 -msgid "Email address" -msgstr "Email naslov" +#: 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/organization/member_new.html:62 -msgid "Update Member" -msgstr "Posodobi člana" +#: 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/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Oskrbi" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Ustvarite organizacijo" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Uredi skupino" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Posodobite organizacijo" +#: ckan/templates/group/edit_base.html:23 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/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Ustvarite organizacijo" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Zgodovina" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Dodaj nabor podatkov" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Dodaj skupno" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Nabori podatkov v organizaciji: {group}" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Išči po skupinah..." -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Kaj so organizacije?" +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Trenutno ni skupin za to stran" -#: 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/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Ali bi naredili novo?" -#: 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/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Nazaj na vse člane" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Moja organizacija" +#: 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/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "moja-organizacija" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Dodaj člana" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Nekaj informacij o moji organizaciji..." +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Obstoječi član" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"Ste prepričani, da želite izbrisati to organizacijo? To bo izbrisalo vse " -"javne in zasebne nabore podatkov, ki pripadajo tej organizaciji." +"Če želite dodati obstoječega člana, poiščite njihovo uporabniško ime spodaj." -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Shrani organizacijo" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "ali" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Poglej {organization_name}" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Nov uporabnik" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Ustvari nabor podatkov" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Če želite povabiti novega člana, vnesite njihov email naslov." -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Kaj so nabori podatkov?" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Vloga" -#: 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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Izbriši" -#: 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/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Kaj so vloge?" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Poglej nabor podatkov" +#: ckan/templates/group/member_new.html:80 +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/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Uredi nabor podatkov" +#: 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/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/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Posodobi skupino" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Predogled" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Ustvari skupino" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Posodobi" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Preišči nabore podatkov..." -#: 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/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Nabori podatkov v skupini: {group}" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Dodaj k skupini" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Nedavna zgodovina revizij" -#: 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/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Ime" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Posodobi nabor podatkov" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Moja skupina" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Dodaj podatke k naboru podatkov" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "moja-skupina" -#: 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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Nekaj informacij o moji skupini..." -#: 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/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Ste prepričani, da želite izbrisati to skupino?" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Nov vir" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Shrani skupino" -#: 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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Pogled {name}" -#: 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/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Izbriši nabor podatkov iz te skupine" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Dodaj" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Kaj so skupine?" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/group/snippets/helper.html:8 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +" 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 "" -"To je starejša različica tega nabora podatkov, kot je bila urejena " -"%(timestamp)s. Lahko se zelo razlikuje od trenutne " -"revizije." +" 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/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Naloži na DataStore" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Primerjaj" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Napake prenosa:" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Izbrisano" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Napaka:" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "preberi več" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Različica" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Status" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Časovni žig" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Nazadnje posodobljeno" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Avtor" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Nikoli" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Dnevniško sporočilo" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Dnevnik prenosov" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Dobrodošli" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Podrobnosti" +#: 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/package/resource_data.html:81 -msgid "End of log" -msgstr "Konec dnevnika" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Dobrodošli na CKAN" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Vsi viri" +#: 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/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Poglej vir" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "To je posebna sekcija" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Uredi vir" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Npr. okolje" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Preišči podatke" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Pogledi" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Popularne oznake" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API končna točka" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistike" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Pojdi na vir" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "nabor podatkov" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Prenos" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "nabori podatkov" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizacije" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Izvleček iz nabora podatkov" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "skupine" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "Izvor: %(dataset)s" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Ni še narejenih pogledov za ta vir." +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Uporabite lahko Markdown formatiranje teksta" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Nimate na voljo pogledov, ki ste jih pričakovali?" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "To polje je nujno" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "Tukajje nekaj razlogov zakaj se ti pogledi ne prikazujejo:" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Po meri" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "Za ta vir še ni bil ustvarjen ustrezen pogled" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Ta obrazec vsebuje neveljavne vnose:" -#: ckan/templates/package/resource_read.html:124 -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/macros/form.html:395 +msgid "Required field" +msgstr "Nujno polje" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"Č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/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Dodatne informacije" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL slike" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Polje" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Počisti prenos" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Vrednost" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Obrazec za organizacije" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "neznano" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Uredi nabore podatke" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Ustvarjeno" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Dodaj nabor podatkov" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Format" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr " najdeno za \"{query}\"" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licenca" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Ni na voljo naborov podatkov za \"{query}\"" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Nov pogled" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Naredi javno" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Ta vir nima pogledov" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Naredi zasebno" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Dodaj nov vir" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Osnutek" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

Ta nabor podatkov nima podatkov, zakaj jih ne bi nekaj dodali?

" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Zasebno" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Ta organizacija nima naborov podatkov" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API dokumentacija" +#: 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/package/search.html:55 -msgid "full {format} dump" -msgstr "poln {format} izpis" +#: 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/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/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Dodaj organizacijo" -#: 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/organization/index.html:20 +msgid "Search organizations..." +msgstr "Preišči organizacije..." -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "Vsi pogledi" +#: 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/package/view_edit_base.html:12 -msgid "View view" -msgstr "Pogled pogled" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Uporabniško ime" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Predogled pogleda" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email naslov" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Dodatne informacije" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Posodobi člana" -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Izvor" +#: ckan/templates/organization/member_new.html:81 +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/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/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Različica" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Ustvarite organizacijo" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Stanje" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Posodobite organizacijo" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Nazadnje posodobljeno" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Ustvarite organizacijo" -#: 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/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Dodaj nabor podatkov" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Nabori podatkov v organizaciji: {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Podatkovni API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Moja organizacija" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Naslov" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "moja-organizacija" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "npr. Opisni naslov" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Nekaj informacij o moji organizaciji..." -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "npr. moj-nabor-podatkov" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Ste prepričani, da želite izbrisati to organizacijo? To bo izbrisalo vse " +"javne in zasebne nabore podatkov, ki pripadajo tej organizaciji." -#: 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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Shrani organizacijo" -#: 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/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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -" Definicije licenc in dodatne informacije lahko najdete na opendefinition.org " +" 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/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organizacija" +#: 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/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Ni organizacij" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Vidnost" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Poglej nabor podatkov" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Javno" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Uredi nabor podatkov" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Aktivno" +#: 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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Predogled" -#: 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/edit_view.html:21 +msgid "Update" +msgstr "Posodobi" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Naslednje: Dodaj podatke" +#: 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/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Dodaj k skupini" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Posodobi nabor podatkov" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Email avtorja" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Dodaj podatke k naboru podatkov" -#: 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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Dodaj nov vir" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Email skrbnika" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Posodobi vir" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Nov vir" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: 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:81 +msgid "Add" +msgstr "Dodaj" + +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"To je starejša različica tega nabora podatkov, kot je bila urejena " +"%(timestamp)s. Lahko se zelo razlikuje od trenutne " +"revizije." -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Vsi viri" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "npr. Cene zlata Januar 2011" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Poglej vir" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Nekaj uporabnih zapiskov o podatkih" +#: 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/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "npr. CSV, XML ali JSON" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Pogledi" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "Format bo samodejno zaznan. Lahko pustite prazno če želite." +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API končna točka" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "npr. 2012-06-05" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Pojdi na vir" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Velikost datoteke" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Prenos" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "npr. 1024" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME tip" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Izvleček iz nabora podatkov" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "npr. application/json" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Izvor: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Ste prepričani da želite izbrisati ta vir?" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "Ni še narejenih pogledov za ta vir." -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Prejšnji" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Nimate na voljo pogledov, ki ste jih pričakovali?" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Shrani & dodaj novega" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Končaj" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Kaj je vir?" +#: ckan/templates/package/resource_read.html:121 +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/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:122 +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 "" -"Vir je lahko vsaka datoteka ali povezava na datoteko, ki vsebuje uporabne " -"podatke." +"Č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/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Razišči" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Dodatne informacije" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Več informacij" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Polje" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Vključi" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Vrednost" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "Ta pogled vira trenutno ni na voljo." +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Vključi pogled vira" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "neznano" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -"Vključitveno kodo lahko kopirate in prilepite v CMS ali blog software, ki " -"podpira surov HTML zapis" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Širina" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Ustvarjeno" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Višina" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Format" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Koda" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licenca" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Predogled vira" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nov pogled" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Podatki in viri" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Ta vir nima pogledov" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Ta nabor podatkov nima podatkov" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Dodaj nov vir" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format -msgid "Read dataset as of %s" -msgstr "Prebran nabor podatkov %s" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Ustvari nabor podatkov" +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/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/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "npr. Moj pogled" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API dokumentacija" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "npr. Informacije o mojem pogledu" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "poln {format} izpis" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Dodaj filter" +#: 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/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Odstrani filter" +#: 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/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filtri" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Vsi pogledi" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Kaj je pogled?" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Pogled 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/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Predogled pogleda" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Razlike" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Dodatne informacije" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Razlike v revizijah" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Izvor" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Razlika" +#: 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/revision/diff.html:54 -msgid "No Differences" -msgstr "Ni razlik" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Različica" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Zgodovina sprememb" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Stanje" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Različice" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Nazadnje posodobljeno" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Povrni" +#: 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/revision/read.html:64 -msgid "Changes" -msgstr "Spremembe" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Oznake naborov podatkov" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entiteta" +#: 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/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Nova aktivnost" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Naslov" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Vključi Data Viewer" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "npr. Opisni naslov" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Vključi ta pogled s kopiranjem sledečega na svojo spletno stran:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "npr. moj-nabor-podatkov" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Izberi širino in višino v pikslih:" +#: 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/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Širina:" +#: 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/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Višina:" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +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/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Datapusher stanje: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizacija" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Trackback URL" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Ni organizacij" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Prikaži več {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Vidnost" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Prikaži samo popularne {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Javno" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Ni {facet_type} ki ustrezajo tem iskalnim pogojem" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Aktivno" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Domov" +#: 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/snippets/language_selector.html:4 -msgid "Language" -msgstr "Jezik" +#: 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/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Pojdi" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Naslednje: Dodaj podatke" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "Licenca ni izbrana" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Ta nabor podatkov ustreza the Open Definition" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Ni opisa za to organizacijo" +#: 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/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Ta nabor podatkov nima opisa" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email avtorja" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Pošlji" +#: 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/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Uredi po" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email skrbnika" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filtriraj rezultate" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Posodobi vir" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Poskusite drugačno iskanje.

" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" 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/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "npr. Cene zlata Januar 2011" -#: 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/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Nekaj uporabnih zapiskov o podatkih" -#: 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/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "npr. CSV, XML ali JSON" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Ni najdenih naborov podatkov" +#: ckan/templates/package/snippets/resource_form.html:40 +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:51 +msgid "eg. 2012-06-05" +msgstr "npr. 2012-06-05" -#: 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/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Velikost datoteke" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Ni najdenih skupin za \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "npr. 1024" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME tip" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Ni najdenih skupin" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "npr. application/json" -#: 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/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Ste prepričani da želite izbrisati ta vir?" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "Ni najdenih organizacij za \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Prejšnji" -#: 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/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Shrani & dodaj novega" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Ni najdenih organizacij" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Končaj" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Socialno" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Kaj je vir?" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Naroči" +#: 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/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:82 -msgid "Email" -msgstr "Email" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Razišči" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Več informacij" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Ureditve" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Vključi" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Iskalne oznake" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "Ta pogled vira trenutno ni na voljo." -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Vir novic" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Vključi pogled vira" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Moji nabori podatkov" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Vključitveno kodo lahko kopirate in prilepite v CMS ali blog software, ki " +"podpira surov HTML zapis" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Moje organizacije" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Širina" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Moje skupine" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Višina" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Aktivnosti predmetov, ki jim sledim" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Koda" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Niste ustvarili še nobenih naborov podatkov." +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Predogled vira" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Ustvarim enega zdaj?" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Podatki in viri" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "Niste član nobenih skupin." +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Ta nabor podatkov nima podatkov" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Niste član nobenih organizacij." +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Prebran nabor podatkov %s" -#: 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/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Ustvari nabor podatkov" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Informacije o računu" +#: 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/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/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "npr. Moj pogled" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "spremenite podrobnosti" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "npr. Informacije o mojem pogledu" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Polno ime" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Odstrani filter" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "npr. Janez Novak" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Kaj je pogled?" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "npr. janez@novak.sem" +#: 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/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Nekaj informacij o meni" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Razlike" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Prijavi se na notifikacijske emaile" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Razlike v revizijah" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Spremeni geslo" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Razlika" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Ni razlik" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Geslo" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Zgodovina sprememb" + +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Različice" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Potrdi geslo" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Povrni" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Ste prepričani da želite izbrisati uporabnika?" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Spremembe" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "Ste prepričani da želite obnoviti vaš API ključ?" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Oznake naborov podatkov" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Obnovi API ključ" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entiteta" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Posodobi profil" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Nova aktivnost" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Vsi uporabniki" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Vključi Data Viewer" -#: 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/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Vključi ta pogled s kopiranjem sledečega na svojo spletno stran:" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Potrebujete račun?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Izberi širino in višino v pikslih:" -#: 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/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Širina:" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Ustvarite račun" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Višina:" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Ste pozabili svoje geslo?" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher stanje: {status}." -#: 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/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Ste pozabili svoje geslo?" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Prikaži več {facet_type}" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Odjavljen" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Prikaži samo popularne {facet_type}" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Sedaj ste odjavljeni." +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Ni {facet_type} ki ustrezajo tem iskalnim pogojem" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Ste že prijavljeni kot {user}." +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Domov" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Odjava" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Jezik" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Zapomni se me" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Pojdi" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Ste že prijavljeni" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Licenca ni izbrana" -#: ckan/templates/user/logout_first.html:24 -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/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Ta nabor podatkov ustreza the Open Definition" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Odjavi se zdaj" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Ni opisa za to organizacijo" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Registracija" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Ta nabor podatkov nima opisa" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Registrirajte se za račun" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Pošlji" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Zakaj se registrirati?" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Uredi po" -#: 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/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filtriraj rezultate" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "uporabniško ime" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Poskusite drugačno iskanje.

" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Polno ime" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Ustvari račun" +#: 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/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Ponastavi geslo" +#: 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/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Ponastavitev gesla" +#: 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/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Psodobi geslo" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Ni najdenih naborov podatkov" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Kako to deluje?" +#: 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/user/perform_reset.html:40 -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/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Ni najdenih skupin za \"{query}\"" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Uporabnik še ni ustvaril nobenih naborov podatkov." +#: 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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Niste še oddali biografije." +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Ni najdenih skupin" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Ta uporabnik nima biografije." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Odprti ID" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Ni najdenih organizacij" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "To pomeni, da to lahko vidite samo vi" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Socialno" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Član od" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Naroči" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API ključ" +#: 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:82 +msgid "Email" +msgstr "Email" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Ponastavite geslo" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Ponastavitev gesla" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Ureditve" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Zahtevajte ponastavitev" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Iskalne oznake" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Vnesite uporabniško ime v polje in vam bomo poslali email s povezavo, kjer " -"boste vnesli novo geslo." +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Vir novic" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Aktivnost od:" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Moji nabori podatkov" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Preiskovanje seznama..." +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Moje organizacije" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Ne sledite ničemur" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Moje skupine" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Ni sledilcev" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktivnosti predmetov, ki jim sledim" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Preišči uporabnike" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Niste ustvarili še nobenih naborov podatkov." -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Končano" +#: 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:16 +msgid "Create one now?" +msgstr "Ustvarim enega zdaj?" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "V teku" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Niste član nobenih skupin." -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Pošiljam" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Niste član nobenih organizacij." -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Ni še naloženo" +#: 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" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "DataStore vir ni na voljo" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informacije o računu" -#: ckanext/datastore/db.py:663 +#: ckan/templates/user/edit.html:19 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -"Podatki so napačni (na primer: numerična vrednost je izven dovoljenega " -"obsega ali pa je bila vnešena v tekstovno polje)." - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -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/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Nabori podatkov na stran" +" Vaš profil omogoča durgim CKAN uporabnikom, da spoznajo kdo ste in s čim se" +" ukvarjate. " -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Testna nastavitev" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "spremenite podrobnosti" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Polje po meri naraščujoče" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Polno ime" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Polje po meri padajoče" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "npr. Janez Novak" -#: 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" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "npr. janez@novak.sem" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "tekst po meri" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Nekaj informacij o meni" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Geslo države" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Prijavi se na notifikacijske emaile" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "tekst vira po meri" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Spremeni geslo" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "ta skupina nima opisa" - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "CKANovo orodje za predogled podatkov ima močne zmogljivosti" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "url slike" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Geslo" -#: 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)" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Potrdi geslo" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Data Explorer" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Ste prepričani da želite izbrisati uporabnika?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Tabela" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Ste prepričani da želite obnoviti vaš API ključ?" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Graf" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Obnovi API ključ" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Zemljevid" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Posodobi profil" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Vsi uporabniki" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "Odklon vrstic" +#: 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" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "npr: 0" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Potrebujete račun?" -#: 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" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "npr: 100" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Ustvarite račun" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Tip grafa" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Ste pozabili svoje geslo?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Skupina (os 1)" +#: 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" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Serija (os 2)" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Ste pozabili svoje geslo?" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Tip polja" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Odjavljen" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Polje zemljepisne širine" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Sedaj ste odjavljeni." -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Polje zemljepisne dolžine" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Ste že prijavljeni kot {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "GeoJSON polje" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Odjava" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Samodejni zoom na značilnosti" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Zapomni se me" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Markerji gruč" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Ste že prijavljeni" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Celotno število naborov podatkov" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Datum" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Odjavi se zdaj" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Vsi nabori podatkov" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registracija" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Revizije naborov podatkov po tednih" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registrirajte se za račun" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "vse revizije podatkov" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Zakaj se registrirati?" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Novi nabori podatkov" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Ustvarite nabore podatkov, skupine in druge zanimive stvari" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Najvišje ocenjeni nabori podatkov" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "uporabniško ime" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Povprečna ocena" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Polno ime" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Število ocen" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Ustvari račun" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Ni ocen" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Ponastavi geslo" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Najbolj urejevani nabori podatkov" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Ponastavitev gesla" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Število urejevanj" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Psodobi geslo" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Ni urejevanih naborov podatkov" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Kako to deluje?" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Največje skupine" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Samo vnesite novo geslo in vam bomo posodobili račun" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Število naborov podatkov" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Uporabnik še ni ustvaril nobenih naborov podatkov." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Ni skupin" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Niste še oddali biografije." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Najvišje oznake" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Ta uporabnik nima biografije." -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Ime oznake" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Odprti ID" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Število naborov podatkov" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "To pomeni, da to lahko vidite samo vi" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Član od" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Menu statistik" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API ključ" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Celotno število naborov podatkov" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Ponastavite geslo" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Besedilo" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Ponastavitev gesla" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Zahtevajte ponastavitev" + +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Vnesite uporabniško ime v polje in vam bomo poslali email s povezavo, kjer " +"boste vnesli novo geslo." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Spletna stran" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Aktivnost od:" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "URL spletne strani" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Preiskovanje seznama..." -#: 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/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" diff --git a/ckan/i18n/sq/LC_MESSAGES/ckan.mo b/ckan/i18n/sq/LC_MESSAGES/ckan.mo index a2e990ae646..f61188bd218 100644 Binary files a/ckan/i18n/sq/LC_MESSAGES/ckan.mo and b/ckan/i18n/sq/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/sq/LC_MESSAGES/ckan.po b/ckan/i18n/sq/LC_MESSAGES/ckan.po index b7b38805d2c..c63924834f0 100644 --- a/ckan/i18n/sq/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sq/LC_MESSAGES/ckan.po @@ -1,4570 +1,4666 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Funksioni i autorizimit nuk u gjet:%s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Ka përfunduar" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Administratori" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Në pritje" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Redaktori" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Duke u dorëzuar" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Anëtar" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Gabim" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Duhesh me qenë administrator i sistemit për të administruar" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Ende nuk është ngarkuar" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Titulli faqes" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Burimi nuk u gjet" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Stilizimi" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Nuk jeni i autorizuar për të parë këtë faqe" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Etiketat e faqës" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Ngarko në DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Etiketa e logos së faqës" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Gabim në ngarkim:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Gabim:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Teksti i faqes Rreth nesh" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Teksti hyrës" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Statusi" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Teksti në ballinë" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Ndryshimi i fundit" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Kostumizo CSS-in" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Asnjëherë" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Ne kreun e faqes u shtua css is kostumizuar" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Ngarkoni log-un" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Ballina" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detajet" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Fundi i llogarisë" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Burimi i depove të të dhënave nuk u gjet" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Nuk mund të largohet paketa %s si version i lidhur i %s, perfshirë %s " -"paketat të cilat nuk janë fshirë." +"Të dhënat ishin të pavlefshme (si për shembull: një vlerë numerike është " +"jashtë rangut ose është futur në një fushë të tekstit)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Problem në largimin e versionit %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Burimi \"{0}\" nuk u gjet." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Largimi u kompletua" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Përdoruesi {0} nuk është i autorizuar të ndryshoj burimin {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Veprimi nuk u përfundua." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN API i të dhënave" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Nuk jeni i autorizuar për të parë këtë faqe" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Ndalohet qasja" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Informata shtesë në API kryesor të të dhënave të CKAN dhe dokumentimi i depos " +"të të dhënave.

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Nuk u gjet" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Pika të fundit" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Kërkesë e gabuar" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Emri i veprimit nuk është i njohur:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Krijo" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Gabim në JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Përditso / shto" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Kërkesë e gabuar e të dhënave: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Kërkesa" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Nuk mund të listoj ente të këtij tipi: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Kërkesa(përmes SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Nuk mund të lexoj ente të këtij tipi: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Kërkimi" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Nuk mund të krijoj një ent të këtij grupi: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Shembull i kërkesës (5 rezultatet e para)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "E pamundur të shtohet një paketë për të kërkuar ideksin" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Shembull i kërkesës (rezultatet që përmbajnë 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Nuk mund ta updatoj këtë tip: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Shembull i kërkesës (përmes SQL shprehjës)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "E pamundur të ndryshohet indeksi i kërkimit" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Shembull: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Nuk mund të fshij entin e këtij tipi: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +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" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Asnjë rishikim i specifikuar" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Shembull: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Nuk ka ndryshime me këtë id: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Mungon kushti i kerkimit ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Nuk munda të lexoja parametrat: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Përshkrimi" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Vecori e gabuar e kërkimit: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Ruaj" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Regjistër i panjohur: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Vlerë e gabuar e QJSON-it: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" msgstr "" -"Parametrat e kërkimit duhet të jenë në formë json ose në një fjalor të " -"koduar json" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Grupi nuk u gjet" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Duke u ngarkuar..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organizata nuk u gjet" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "API i të dhënave" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Tip i gabuar i grupimit" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Tabela" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organizatat" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Grupe" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Etiketat" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formatet" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Seti i të dhënave për faqe" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licencat" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testo conf" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Nuk jeni i autorizuar të kryeni bulk ndryshime" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Ndërlidhja" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "I paautorizuar për të krijuar një grup" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Përdoruesi %r nuk është i autorizuar të modifikojë %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Gabim i brendshëm" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "U ndryshua për herë të fundit" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Përdoruesi %r nuk është i autorizuar të modifikojë autorizimet %s" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Fusha e kustomizuar rritëse" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Nuk jeni i autorizuar për të fshirë grupin %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Fusha e kustomizuar zvogëluese" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organizata është fshirë." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Popullarizuar" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Grupi është fshirë." +#: 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" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s është fshirë." +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "teksti i kustomizuar" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Nuk jeni i autorizuar për të shtuar anëtar në grupin %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Kodi i vendit" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Nuk jeni i autorizuar për të fshirë anëtar në grupin %s" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "teksti burimor i kustomizuar" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Anëtari i grupit është fshirë." +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Zgjidhni dy versione para se të bëni krahasimin" +#: 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/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "CKAN Historia e versioneve" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Ndryshimet e fundit te CKAN Grupi:" +#: 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" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Mesazhet e log:" +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Tani po ndiqni {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Ndjekësit" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Më nuk ndiqni {0}" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Burime" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Të paautorizuar për të shikuar ndjekësit %s" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Figurë" -#: ckan/controllers/home.py:36 -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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Url e imazhit" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -"Ju lutem ndryshoni profilin tuaj, si dhe shtoni email " -"adresën " +"p.sh. http://example.com/image.jpg (nëse vendi bosh përdor url-në e burimit)" -#: ckan/controllers/home.py:83 -#, 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." +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Të dhënat eksploruese" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Grafi" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parametri \"{parameter_name}\" nuk është një numër i plotë." +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Harta" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Seti i të dhënave nuk u gjet" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Format rishikimi i pavlefshëm :%r" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" msgstr "" -"Shikimi i seteve të të dhënave {package_type} në formatin {format} nuk " -"përkrahet (skedari {file} nuk u gjet)." -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "I paautorizuar të lexoni paketën %s" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Historiku i ndryshimeve të setit të dhënave të CKAN-it" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Ndryshimet e fundit në setin e të dhënave të CKAN:" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filterët" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "I paautorizuar të krijoni një paketë" +#: 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" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Të paautorizuar për t'a redaktuar këtë burim" +#: 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" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Burimi nuk u gjet" +#: 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" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Të paautorizuar të ndryshoni setin e të dhënave" +#: 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" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Seti i të dhënave {id} nuk u gjet" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Lloji i grafit" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Duhet të shtoni të paktën nj burim të të dhënave" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupi (boshti 1)" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Gabim" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Seritë (boshti 2)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Të paautorizuar për të krijuar një burim" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Lloji i fushës" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Të paautorizuar të krijoni një burim për këtë paketë" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Fusha e gjerësisë" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "E pamundur të shtoni paketën për të kërkuar indeksin" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Fusha e gjatësisë" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "E pamundur të ndryshoni indeksin e kërkimit." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Fusha GeoJSON" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Seti i të dhënave është fshirë." +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Zmadhim automatik tek tiparet" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "I paautorizuar për të fshirë paketën %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Tregjet thërrmuese" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Burimi është fshirë." +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Numri total i setit të të dhënave" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Të paautorizuar për të fshirë burimin %s" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Data" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Faqja burimore nuk u gjet" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Totali i setit të të dhënave" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Të dhënat burimore nuk u gjetën" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Rishikimet e setit të të dhënave në javë" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Asnjë shkarkim nuk është në dispozicion" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Rishikimet e gjithë setit të të dhënave" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Të paautorizuar të lexoni setin e të dhënave %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Seti i të dhënave të reja" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Të paautorizuar të lexoni burimin %s" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Të dhënat më të vlerësuara" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Të paautorizuar të redaktoni burimin" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Mesatarja" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Pamja nuk u gjet" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Numri i vlerësimeve" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Lloji i Pamjës nuk u gjet" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Nuk ka vlerësime" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Burim i gabuar i shikimit të të dhënave" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Të dhënat më të modifikuara" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Faqja burimore nuk u dha" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Të dhëna" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Nuk u përcaktua asnjë parapamje" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Numri i modifikimeve" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Historia e ndryshimeve të paketës së CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Asnjë set i të dhënave nuk u redaktua" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Ndryshime të fundit në katalogun CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Grupet më të mëdha" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Setet e të dhënave janë prekur: %s.\n" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Grup" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Rishikimi u përditësua" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Numri i të dhënave" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Tjetër" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Nuk ka grupe" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Tag nuk u gjet" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Togfjalëshat kryesorë" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Përdoruesi nuk u gjet" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Emri i etiketës" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Jeni të paautorizuar të regjistroheni si përdorues" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Numri i setit të të dhënave" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Jeni të paautorizuar për të krijuar një përdorues" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Të paautorizuar për të fshirë përdoruesin me id \"{user_id}\"." +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Përdorues" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Asnjë përdorues i përcaktuar" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Mënyja e statistikave" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Të paautorizuar për të redaktuar %s" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Numri total i seteve të të dhënave" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profili u përditsua" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Teksti" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Të paautorizuar për të krijuar përdoruesin %s" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Uebfaqja" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Captcha keqe. Ju lutem provoni përsëri." +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Url e uebfaqes" -#: ckan/controllers/user.py:265 -#, 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ë" +#: 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/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Të paautorizuar për të redaktuar përdoruesin" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Shfletuesi juaj nuk i përkrah iframes." -#: ckan/controllers/user.py:320 +#: ckan/authz.py:182 #, python-format -msgid "User %s not authorized to edit %s" -msgstr " Përdoruesi %s nuk është i autorizuar për të redaktuar %s" +msgid "Authorization function not found: %s" +msgstr "Funksioni i autorizimit nuk u gjet:%s" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Fjalëkalimi i dhënë është gabim" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Administratori" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Fjalëkalimi i vjetër" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Redaktori" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "Fjalëkalimi gabim" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Anëtar" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Kycja dështoi. Emri përdoruesit ose fjalëkalimi gabim." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Duhesh me qenë administrator i sistemit për të administruar" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Nuk jeni i autorizuar për t'a kërkuar ndrrimin e fjalëkalimit. " +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Titulli faqes" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" u gjet në disa përdorues" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Stilizimi" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Asnjë përdorues i tillë:%s" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Etiketat e faqës" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Ju lutem kontrolloni kutinë tuaj për një kod rigjenerimi" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Etiketa e logos së faqës" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Nuk mund të dërgoni kodin për rigjenerim fjalëkalimi :%s" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Nuk jeni i autorizuar për t'a ndërruar fjalëkalimin. " +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Teksti i faqes Rreth nesh" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Kod i gabuar rigjenerimi. Ju lutem provoni përsëri." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Teksti hyrës" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Fjalëkalimi juaj është rigjeneruar" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Teksti në ballinë" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Fjalëkalimi juaj duhet të jetë 4 shkronja ose më i gjatë." +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Kostumizo CSS-in" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Fjalëkalimet nuk përputhen." +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Ne kreun e faqes u shtua css is kostumizuar" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Duhet të jepni një fjalëkalim" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Ballina" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Artikulli Ndjek nuk u gjet" +#: ckan/controllers/admin.py:161 +#, 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/user.py:640 -msgid "{0} not found" -msgstr "{0} nuk u gjet" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problem në largimin e versionit %s: %s" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Gjithçka" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Largimi u kompletua" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Vlera mungon" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Veprimi nuk u përfundua." -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Ridrejtimi në faqën e jashtme nuk lejohet." +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Ndalohet qasja" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} shtoi etiketën {tag} në setin e të dhënave {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Nuk u gjet" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} ndryshoj grupin {group}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Kërkesë e gabuar" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} ndryshoj organizatën {organization}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Emri i veprimit nuk është i njohur:%s" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} ndryshoj setin e të dhënave {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Gabim në JSON: %s" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} ndryshoj extra vlerën {extra} në setin e të dhënave {dataset}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Kërkesë e gabuar e të dhënave: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} ndryshoj burimin {resource} në setin e të dhënave {dataset}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Nuk mund të listoj ente të këtij tipi: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} ndryshoj profilin e tyre" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Nuk mund të lexoj ente të këtij tipi: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} fshiu grupin {group}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Nuk mund të krijoj një ent të këtij grupi: %s %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} fshiu organizatën {organization}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "E pamundur të shtohet një paketë për të kërkuar ideksin" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} fshiu setin e të dhënave {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Nuk mund ta updatoj këtë tip: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} fshiu ekstra {extra} nga seti i të dhënave {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "E pamundur të ndryshohet indeksi i kërkimit" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} fshiu burimin {resource} nga seti i të dhënave {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Nuk mund të fshij entin e këtij tipi: %s %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} krijoi grupin {group}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Asnjë rishikim i specifikuar" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} krijoi organizatën {organization}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Nuk ka ndryshime me këtë id: %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} krijoi setin e të dhënave {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Mungon kushti i kerkimit ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} shtoi ekstra {extra} në setin e të dhënave {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Nuk munda të lexoja parametrat: %r" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} shtoi burimin {resource} në setin e të dhënave {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Vecori e gabuar e kërkimit: %s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} u regjistrua" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Regjistër i panjohur: %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} fshiu etiketën {tag} nga seti i të dhënave {dataset}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Vlerë e gabuar e QJSON-it: %r" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} filloi të ndjek {dataset}" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" +"Parametrat e kërkimit duhet të jenë në formë json ose në një fjalor të " +"koduar json" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} filloi të ndjek {user}" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Grupi nuk u gjet" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} filloi të ndjek {group}" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organizata nuk u gjet" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Shikoni" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Tip i gabuar i grupimit" -#: 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/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organizatat" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Janar" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Grupe" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Shkurt" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Etiketat" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Mars" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formatet" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Prill" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licencat" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Maj" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Përdoruesi %r nuk është i autorizuar të modifikojë %s" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Qershor " +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Nuk jeni i autorizuar të kryeni bulk ndryshime" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Korrik" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "I paautorizuar për të krijuar një grup" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Gusht" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Gabim i brendshëm" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Shtator" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Përdoruesi %r nuk është i autorizuar të modifikojë autorizimet %s" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Tetor" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nuk jeni i autorizuar për të fshirë grupin %s" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Nëntor" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organizata është fshirë." -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Dhjetor" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Grupi është fshirë." -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Tani" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s është fshirë." -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:705 +#, 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/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Nuk jeni i autorizuar për të fshirë anëtar në grupin %s" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Anëtari i grupit është fshirë." -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Zgjidhni dy versione para se të bëni krahasimin" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "CKAN Historia e versioneve" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Ndryshimet e fundit te CKAN Grupi:" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bajta" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Mesazhet e log:" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Tani po ndiqni {0}" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Më nuk ndiqni {0}" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Të paautorizuar për të shikuar ndjekësit %s" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: 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/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/home.py:73 +#, 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/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametri \"{parameter_name}\" nuk është një numër i plotë." -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Seti i të dhënave nuk u gjet" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Format rishikimi i pavlefshëm :%r" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "I paautorizuar të lexoni paketën %s" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Historiku i ndryshimeve të setit të dhënave të CKAN-it" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Ndrysho avatarin tuaj në gravatar.com" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Ndryshimet e fundit në setin e të dhënave të CKAN:" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "I panjohur" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "I paautorizuar të krijoni një paketë" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Burim i pa emëruar" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Të paautorizuar për t'a redaktuar këtë burim" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "U krijua seti i ri i të dhënave" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Të paautorizuar të ndryshoni setin e të dhënave" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Redakto burimet." +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Seti i të dhënave {id} nuk u gjet" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Redakto cilësimet" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Duhet të shtoni të paktën nj burim të të dhënave" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Të paautorizuar për të krijuar një burim" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Të paautorizuar të krijoni një burim për këtë paketë" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "E pamundur të shtoni paketën për të kërkuar indeksin" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Asnjë adresë elektronike marrëse në dispozicion!" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "E pamundur të ndryshoni indeksin e kërkimit." -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organizata" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Seti i të dhënave është fshirë." -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "grup" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "I paautorizuar për të fshirë paketën %s" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Vlera mungon" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Burimi është fshirë." -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1052 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "Fusha hyrëse %(name)s nuk pritej." +msgid "Unauthorized to delete resource %s" +msgstr "Të paautorizuar për të fshirë burimin %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Ju lutem vendosni një vlerë të plotë" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Faqja burimore nuk u gjet" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Burime" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Të dhënat burimore nuk u gjetën" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Paketa e burimit(eve) e pavlefshme" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Asnjë shkarkim nuk është në dispozicion" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Ekstra" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Të paautorizuar të lexoni setin e të dhënave %s" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1404 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Fjali i etiketës \"%s\" nuk ekziston" +msgid "Unauthorized to read resource %s" +msgstr "Të paautorizuar të lexoni burimin %s" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Përdorues" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Të paautorizuar të redaktoni burimin" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Të dhëna" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Pamja nuk u gjet" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Grup" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Lloji i Pamjës nuk u gjet" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Nuk mund të konvertoj si JSON valid" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Burim i gabuar i shikimit të të dhënave" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Faqja burimore nuk u dha" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organizata nuk ekziston" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Nuk u përcaktua asnjë parapamje" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Nuk mund të shtoni set të të dhënave në këtë organizatë" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Historia e ndryshimeve të paketës së CKAN" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Numër i plotë i pavlefshëm" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Ndryshime të fundit në katalogun CKAN" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Duhet të jetë një numër natyror" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Setet e të dhënave janë prekur: %s.\n" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Duhet të jetë një numër i plotë pozitiv" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Rishikimi u përditësua" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Formati i datës është gabim" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Tjetër" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Nuk lejohen linke në messazhet log" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Tag nuk u gjet" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Seti i të dhënave tashmë ekziston" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Jeni të paautorizuar të regjistroheni si përdorues" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Burimi" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Jeni të paautorizuar për të krijuar një përdorues" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Emri i tillë i grupit ose ID-s nuk ekziston." +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Të paautorizuar për të fshirë përdoruesin me id \"{user_id}\"." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Lloji aktivitetit" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Asnjë përdorues i përcaktuar" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Emrat duhet të jenë në fjalë" +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Të paautorizuar për të redaktuar %s" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Ky emër nuk mund të përdoret" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Përdoruesi nuk u gjet" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "Duhet të jetë së paku %s karaktere i gjatë" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profili u përditsua" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Emri duhet të jetë një maksimum prej %i karaktere i gjatë" +msgid "Unauthorized to create user %s" +msgstr "Të paautorizuar për të krijuar përdoruesin %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Captcha keqe. Ju lutem provoni përsëri." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -"Duhet të jenë karaktere aflanumerike të vogla (ascii) dhe këto simbole: -_" +"Përdoruesi \"%s\" është i regjistruar tani, mirëpo ju jeni ende të kyçur si " +"\"%s\", nga më parë" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Ky URL është tashmë në përdorim" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Të paautorizuar për të redaktuar përdoruesin" -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Gjatësia e emrit \"%s\" është më pak se minimumi %s" +msgid "User %s not authorized to edit %s" +msgstr " Përdoruesi %s nuk është i autorizuar për të redaktuar %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Gjatësia e emrit \"%s\" është më shumë se maksimumi %s" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Fjalëkalimi i dhënë është gabim" -#: ckan/logic/validators.py:375 -#, 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/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Fjalëkalimi i vjetër" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Celës i dyfishuar \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "Fjalëkalimi gabim" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Ky emër grupi gjendet në databazë" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Kycja dështoi. Emri përdoruesit ose fjalëkalimi gabim." -#: ckan/logic/validators.py:415 -#, 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/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Nuk jeni i autorizuar për t'a kërkuar ndrrimin e fjalëkalimit. " -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Gjatësia e etiketës \"%s\" është më shumë se maksimumi %i" +msgid "\"%s\" matched several users" +msgstr "\"%s\" u gjet në disa përdorues" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "Termi \"%s\" duhet të jetë shkronjë ose një nga simbolet: -_." +msgid "No such user: %s" +msgstr "Asnjë përdorues i tillë:%s" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Termi \"%s\" nuk duhet të jetë me shkronja të mëdha" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Ju lutem kontrolloni kutinë tuaj për një kod rigjenerimi" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Emri përoruesit duhet të jet me fjalë" +#: ckan/controllers/user.py:503 +#, python-format +msgid "Could not send reset link: %s" +msgstr "Nuk mund të dërgoni kodin për rigjenerim fjalëkalimi :%s" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Emri i pëdoruesit nuk është në dispozicion." +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Nuk jeni i autorizuar për t'a ndërruar fjalëkalimin. " -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Ju lutem jepni dy fjalëkalimet" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Kod i gabuar rigjenerimi. Ju lutem provoni përsëri." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Fjalëkalimet duhet të jenë vargje" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Fjalëkalimi juaj është rigjeneruar" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Fjalëkalimi juaj duhet të jetë 4 karaktere ose më i gjatë" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Fjalëkalimi juaj duhet të jetë 4 shkronja ose më i gjatë." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Fjalëkalimi i dhënë nuk përputhet" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Fjalëkalimet nuk përputhen." -#: ckan/logic/validators.py:610 -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/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Duhet të jepni një fjalëkalim" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Emri duhet të jetë të paktën %s karaktere" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Artikulli Ndjek nuk u gjet" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Ai emër i fjalorit është tashmë në përdorim. " +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} nuk u gjet" -#: ckan/logic/validators.py:633 -#, 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/controllers/user.py:654 +msgid "Everything" +msgstr "Gjithçka" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Etiketa e fjalorit nuk u gjet." +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Vlera mungon" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Etiketa %s nuk i takon fjalorit %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Ridrejtimi në faqën e jashtme nuk lejohet." -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Nuk emër të etiketës" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} shtoi etiketën {tag} në setin e të dhënave {dataset}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Etiketa %s tashmë i takon fjalorit %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} ndryshoj grupin {group}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Ju lutem jepni një URL valid" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} ndryshoj organizatën {organization}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "Roli nuk ekziston" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} ndryshoj setin e të dhënave {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Setet e të dhënave pa organizim nuk mund të jenë private." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} ndryshoj extra vlerën {extra} në setin e të dhënave {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Nuk është listë" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} ndryshoj burimin {resource} në setin e të dhënave {dataset}" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Nuk është një varg" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} ndryshoj profilin e tyre" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Ky prind do të krijonte një unazë në hierarki" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} fshiu grupin {group}" -#: ckan/logic/validators.py:791 -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/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} fshiu organizatën {organization}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" është e nevojshme kur \"filter_values\" është e mbushur" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} fshiu setin e të dhënave {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" është e nevojshme kur \"filter_fields\" është e mbushur" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} fshiu ekstra {extra} nga seti i të dhënave {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Është një fushë skemë me të njëjtin emër" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} fshiu burimin {resource} nga seti i të dhënave {dataset}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "API REST: Krijo objektin %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} krijoi grupin {group}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "API REST: Krijoni lidhjen e pakos: %s %s %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} krijoi organizatën {organization}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Krijo objektin anëtar %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} krijoi setin e të dhënave {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Duke u përpjekur për të krijuar një organizatë si një grup" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} shtoi ekstra {extra} në setin e të dhënave {dataset}" -#: ckan/logic/action/create.py:881 -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/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} shtoi burimin {resource} në setin e të dhënave {dataset}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Duhet të jepni një vlerësim (parametri \"vlerësimi\")" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} u regjistrua" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Vlera duhet të jetë numerike." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} fshiu etiketën {tag} nga seti i të dhënave {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Vlera duhet të jetë midis %i dhe %i." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} filloi të ndjek {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} filloi të ndjek {user}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Ju duhet të jeni të kyçur për të ndjekur përdoruesit" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} filloi të ndjek {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Nuk mund t'a ndiqni veten" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Shikoni" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Tani po ndiqni {0}" +#: 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/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -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/lib/formatters.py:19 +msgid "January" +msgstr "Janar" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Përdoruesi {username} nuk ekziston." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Shkurt" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -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/lib/formatters.py:27 +msgid "March" +msgstr "Mars" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Prill" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "API REST: Fshij paketën: %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Maj" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "API REST: Fshij %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Qershor " -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Fshij anëtarin: %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Korrik" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "Id nuk është në të dhënat" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Gusht" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Fjalori nuk u gjet \"%s\"" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Shtator" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Etiketa nuk u gjet \"%s\"" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Tetor" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Ju duhet të jeni të kyçur mos ndjekni diçka." +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Nëntor" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Ju nuk jeni duke ndjekur {0}." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Dhjetor" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Burimi nuk u gjet." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Tani" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Mos specifikoni nëse jeni duke përdorur \"query\" parametrin" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Duhet të jenë : palë(t)" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Fusha \"{field}\" nuk njihet në resource_search." +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Paketa nuk u gjet" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Ndrysho objektin %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "API REST: Update lidhjen e paketës: %s %s %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus nuk u gjet." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organizata nuk u gjet" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bajta" -#: 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/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, 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/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: 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/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -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/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: 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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Nuk jeni të autorizuar të krijoni përdorues" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Grupi nuk u gjet." +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Çelës valid i API-së nevojitet për të krijuar një paketë" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Çelës valid i API-së nevojitet për të krijuar një grup" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Ndrysho avatarin tuaj në gravatar.com" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Përdoruesi %s nuk është i autorizuar të shtoj anëtarë" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "I panjohur" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj grupin %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Burim i pa emëruar" -#: 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/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "U krijua seti i ri i të dhënave" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "Faqja e burimit nuk u gjet, nuk mund të kryhet autentikimi." +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Redakto burimet." -#: 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/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Redakto cilësimet" -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" -#: 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/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/auth/delete.py:103 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organizations" -msgstr "Përdoruesi %s nuk është i autorizuar të fshij organizatat" +msgid "%s <%s>" +msgstr "%s <%s>" -#: 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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Asnjë adresë elektronike marrëse në dispozicion!" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizata" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Nuk jeni i autorizuar" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grup" -#: 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/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Vlera mungon" -#: ckan/logic/auth/get.py:130 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read package %s" -msgstr "Përdoruesi %s nuk është i autorizuar të lexoj paketën %s" +msgid "The input field %(name)s was not expected." +msgstr "Fusha hyrëse %(name)s nuk pritej." -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Përdoruesi %s nuk është i autorizuar të lexoj burimin %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Ju lutem vendosni një vlerë të plotë" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "Përdoruesi %s nuk është i autorizuar të lexoj grupin %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/auth/get.py:258 -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/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Paketa e burimit(eve) e pavlefshme" -#: ckan/logic/auth/update.py:39 -#, 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/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Ekstra" -#: ckan/logic/auth/update.py:71 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj burimin %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Fjali i etiketës \"%s\" nuk ekziston" -#: ckan/logic/auth/update.py:100 -#, 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/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Nuk mund të konvertoj si JSON valid" -#: ckan/logic/auth/update.py:128 -#, 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/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "" -#: ckan/logic/auth/update.py:145 -#, 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/validators.py:47 +msgid "Organization does not exist" +msgstr "Organizata nuk ekziston" -#: ckan/logic/auth/update.py:162 -#, 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/validators.py:52 +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/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Duhet të jeni të kyçur që të redaktoni përdoruesin" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Numër i plotë i pavlefshëm" -#: ckan/logic/auth/update.py:197 -#, 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/validators.py:97 +msgid "Must be a natural number" +msgstr "Duhet të jetë një numër natyror" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "Përdoruesi {0} nuk është i autorizuar të ndryshoj përdoruesin {1}" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Duhet të jetë një numër i plotë pozitiv" -#: ckan/logic/auth/update.py:216 -#, 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/validators.py:130 +msgid "Date format incorrect" +msgstr "Formati i datës është gabim" + +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Nuk lejohen linke në messazhet log" + +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Seti i të dhënave tashmë ekziston" + +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Burimi" + +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Emri i tillë i grupit ose ID-s nuk ekziston." + +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Lloji aktivitetit" + +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Emrat duhet të jenë në fjalë" + +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Ky emër nuk mund të përdoret" -#: ckan/logic/auth/update.py:225 +#: ckan/logic/validators.py:338 #, 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" +msgid "Must be at least %s characters long" +msgstr "Duhet të jetë së paku %s karaktere i gjatë" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "User %s not authorized to update term_translation table" +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:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" msgstr "" -"Përdoruesi %s nuk është i autorizuar të ndryshoj tabelën e term_translation" +"Duhet të jenë karaktere aflanumerike të vogla (ascii) dhe këto simbole: -_" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Çelës valid i API-së nevojitet për t'a redaktuar një paketë" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Ky URL është tashmë në përdorim" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Çelës valid i API-së nevojitet për t'a redaktuar një grup" +#: ckan/logic/validators.py:366 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Gjatësia e emrit \"%s\" është më pak se minimumi %s" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Licenca nuk është specifikuar" +#: ckan/logic/validators.py:370 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Gjatësia e emrit \"%s\" është më shumë se maksimumi %s" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:376 +#, 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/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:394 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Celës i dyfishuar \"%s\"" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Licenca e atributëve të Open Data Commons" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Ky emër grupi gjendet në databazë" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:416 +#, 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/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:420 +#, 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/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:428 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Termi \"%s\" duhet të jetë shkronjë ose një nga simbolet: -_." -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Dokumentimi i Licencës Pa Pagesë " +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Termi \"%s\" nuk duhet të jetë me shkronja të mëdha" -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Tjera (Hape)" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Emri përoruesit duhet të jet me fjalë" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Tjera (Domena Publike)" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Emri i pëdoruesit nuk është në dispozicion." -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Tjera(Atributet)" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Ju lutem jepni dy fjalëkalimet" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Fjalëkalimet duhet të jenë vargje" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Ndonjë)" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Fjalëkalimi juaj duhet të jetë 4 karaktere ose më i gjatë" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Tjera (Jo-komerciale)" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Fjalëkalimi i dhënë nuk përputhet" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Tjera (Pa Hapura)" +#: ckan/logic/validators.py:611 +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/model/package_relationship.py:54 +#: ckan/logic/validators.py:620 #, python-format -msgid "depends on %s" -msgstr "varet nga %s" +msgid "Name must be at least %s characters long" +msgstr "Emri duhet të jetë të paktën %s karaktere" -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is a dependency of %s" -msgstr "është varësi e %s" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Ai emër i fjalorit është tashmë në përdorim. " -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:634 #, python-format -msgid "derives from %s" -msgstr "rrjedh nga %s" +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/model/package_relationship.py:55 -#, python-format -msgid "has derivation %s" -msgstr "ka si pasuese %s" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Etiketa e fjalorit nuk u gjet." -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:656 #, python-format -msgid "links to %s" -msgstr "lidhet me %s" +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Etiketa %s nuk i takon fjalorit %s" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "is linked from %s" -msgstr "është e lidhur nga %s" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Nuk emër të etiketës" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:675 #, python-format -msgid "is a child of %s" -msgstr "është bijë e %s" +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Etiketa %s tashmë i takon fjalorit %s" -#: ckan/model/package_relationship.py:57 -#, python-format -msgid "is a parent of %s" -msgstr "është prind i %s" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Ju lutem jepni një URL valid" -#: ckan/model/package_relationship.py:61 -#, python-format -msgid "has sibling %s" -msgstr "ka vëlla %s" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "Roli nuk ekziston" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Duke u ngarkuar..." +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Setet e të dhënave pa organizim nuk mund të jenë private." -#: ckan/public/base/javascript/modules/api-info.js:20 -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/logic/validators.py:747 +msgid "Not a list" +msgstr "Nuk është listë" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Dështoi ngarkimi i informacioneve të të dhënave të API-së" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Nuk është një varg" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Asnjë rezultat nuk u përputh" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Ky prind do të krijonte një unazë në hierarki" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Fillo shkrimin..." +#: ckan/logic/validators.py:792 +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/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "E dhëna është shum e shkurtër, duhet të jet të paktën një karakter" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" është e nevojshme kur \"filter_values\" është e mbushur" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Forma përmbanë ndryshime të paruajtura" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" është e nevojshme kur \"filter_fields\" është e mbushur" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Ju lutem konfirmoni veprimin" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Është një fushë skemë me të njëjtin emër" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "A jeni te sigurte qe doni ta kryeni këtë veprim?" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Konfirmo" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "API REST: Krijo objektin %s" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Anulo" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "API REST: Krijoni lidhjen e pakos: %s %s %s" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Ndjek" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Krijo objektin anëtar %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Mos ndjek" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Duke u përpjekur për të krijuar një organizatë si një grup" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Ngarko" +#: ckan/logic/action/create.py:893 +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/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Lidhëse" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Duhet të jepni një vlerësim (parametri \"vlerësimi\")" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Largo" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Vlera duhet të jetë numerike." -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Figurë" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Vlera duhet të jetë midis %i dhe %i." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Skedari" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Ju duhet të jeni të kyçur për të ndjekur përdoruesit" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Ngarko një skedar në kompjuerin tuaj" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Nuk mund t'a ndiqni veten" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Tani po ndiqni {0}" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "rirendit burimet" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +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/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Ruaj renditjen" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Përdoruesi {username} nuk ekziston." -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Duke u ruajtur..." +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +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/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Ngarko një skedar" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Ka ndodhur një gabim" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "API REST: Fshij paketën: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Burimi u ngarkua" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "API REST: Fshij %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Skedari nuk u ngarkua" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Fshij anëtarin: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "E pamundur të autentikohet ngarkimi" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "Id nuk është në të dhënat" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "E pamundur të nxirren të dhënat për dosjen e ngarkuar" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Fjalori nuk u gjet \"%s\"" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Ju jeni duke ngarkuar një skedar. A jeni të sigurt që doni të largoheni dhe " -"t'a ndalni këtë ngarkim?" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Etiketa nuk u gjet \"%s\"" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Ri-renditni pamjen e burumit" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Ju duhet të jeni të kyçur mos ndjekni diçka." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Modifikoni" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Ju nuk jeni duke ndjekur {0}." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Shfaq më shumë" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Burimi nuk u gjet." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Fsheh" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Mos specifikoni nëse jeni duke përdorur \"query\" parametrin" -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Duhet të jenë : palë(t)" + +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Fusha \"{field}\" nuk njihet në resource_search." + +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Paketa nuk u gjet" + +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 #, python-format -msgid "Error %(error_code)s" -msgstr "Gabim %(error_code)s" +msgid "REST API: Update object %s" +msgstr "REST API: Ndrysho objektin %s" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Rreth {0}" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "API REST: Update lidhjen e paketës: %s %s %s" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus nuk u gjet." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/action/update.py:1059 +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:45 +#, 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/templates/footer.html:24 -msgid "" -"Powered by CKAN" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." msgstr "" -"Mundësuar nga CKAN" +"Asnjë id e setit të të dhënave nuk është dhënë, nuk mund të kryeni " +"autentikimin." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Cilësimet e Administratorit të sistemit" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +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/templates/header.html:19 -msgid "View profile" -msgstr "Shiko Profilin" +#: 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/templates/header.html:26 +#: ckan/logic/auth/create.py:108 #, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" +msgid "User %s not authorized to edit these packages" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj këto paketa" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Paneli" +#: 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/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Redakto cilësimet" +#: 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/templates/header.html:37 -msgid "Settings" -msgstr "Cilësimet" +#: 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/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Dilni nga sistemi" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Nuk jeni të autorizuar të krijoni përdorues" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Kyçu" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Grupi nuk u gjet." -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Regjistrohu" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Çelës valid i API-së nevojitet për të krijuar një paketë" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Seti i të dhënave" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Çelës valid i API-së nevojitet për të krijuar një grup" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Kërko Setet e të dhënave" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Përdoruesi %s nuk është i autorizuar të shtoj anëtarë" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Kërko" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj grupin %s" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Kalo te përmbajtja" +#: 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/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Ngarko më shum" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "Faqja e burimit nuk u gjet, nuk mund të kryhet autentikimi." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Ngarko më pak" +#: 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/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/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/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administrimi" +#: 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/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Administratorët e sistemit" +#: 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/templates/admin/base.html:9 -msgid "Config" -msgstr "Konfigurimet" +#: 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/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Shporta" +#: 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/templates/admin/config.html:16 -#: 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/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Nuk jeni i autorizuar" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Reseto" +#: ckan/logic/auth/get.py:109 +#, 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/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Ndrysho Konfigurimin" +#: 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/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "Opcionet e konfigurimit të CKAN" +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/get.py:170 #, 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 "" +msgid "User %s not authorized to read group %s" +msgstr "Përdoruesi %s nuk është i autorizuar të lexoj grupin %s" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Konfirmo rivendosjen" +#: ckan/logic/auth/get.py:252 +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/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Administratro CKAN-in " +#: ckan/logic/auth/update.py:39 +#, 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/templates/admin/index.html:20 +#: ckan/logic/auth/update.py:71 #, 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

" +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:100 +#, python-format +msgid "User %s not authorized to change state of package %s" 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

" +"Përdoruesi %s nuk është i autorizuar të ndryshoj gjendjen e paketës %s" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Largo" +#: ckan/logic/auth/update.py:128 +#, 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/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" -"

Largo setet e të dhënave të fshira përgjithmonë dhe në mënyrë të " -"pakthyeshme.

" +#: ckan/logic/auth/update.py:145 +#, 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/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN API i të dhënave" +#: ckan/logic/auth/update.py:162 +#, 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/templates/ajax_snippets/api_info.html:23 -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" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Duhet të jeni të kyçur që të redaktoni përdoruesin" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" -"Informata shtesë në API kryesor të të dhënave të CKAN dhe dokumentimi i depos " -"të të dhënave.

" +#: ckan/logic/auth/update.py:198 +#, 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/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Pika të fundit" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "Përdoruesi {0} nuk është i autorizuar të ndryshoj përdoruesin {1}" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" msgstr "" -"API i të dhënave mund të qaset përmes veprimeve në vijim të API-s të " -"veprimit të CKAN-it" +"Përdoruesi %s nuk është i autorizuar të ndryshoj gjendjen e versionit të " +"ripunuar" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Krijo" +#: ckan/logic/auth/update.py:226 +#, 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/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Përditso / shto" +#: ckan/logic/auth/update.py:240 +#, 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/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Kërkesa" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Çelës valid i API-së nevojitet për t'a redaktuar një paketë" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Kërkesa(përmes SQL)" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Çelës valid i API-së nevojitet për t'a redaktuar një grup" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Kërkimi" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Licenca nuk është specifikuar" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Shembull i kërkesës (5 rezultatet e para)" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Shembull i kërkesës (rezultatet që përmbajnë 'jones')" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Shembull i kërkesës (përmes SQL shprehjës)" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Licenca e atributëve të Open Data Commons" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Shembull: Javascript" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/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" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Shembull: Python" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: 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/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Dokumentimi i Licencës Pa Pagesë " -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Kliko këtu për më shum informacione" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Tjera (Hape)" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Shakrko burimin" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Tjera (Domena Publike)" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Shfletuesi juaj nuk i përkrah iframes." +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Tjera(Atributet)" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Asnjë inspektim në dispozicion" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Më shum detaje..." +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Ndonjë)" -#: 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/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Tjera (Jo-komerciale)" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Standard" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Tjera (Pa Hapura)" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "E dhënë standarde" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "varet nga %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Mesatare" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "është varësi e %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "E dhënë me gjerësi mesatare" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "rrjedh nga %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "E plotë" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "ka si pasuese %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "E dhënë me gjerësi të plotë" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "lidhet me %s" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "E madhe" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "është e lidhur nga %s" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "E dhënë e madhe" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "është bijë e %s" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Parashto" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "është prind i %s" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Parashtro të dhënën" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "ka vëlla %s" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Kostumizo Fushën(e zbrazët)" +#: ckan/public/base/javascript/modules/api-info.js:96 +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/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Kostumizo Fushën" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Dështoi ngarkimi i informacioneve të të dhënave të API-së" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Fillo shkrimin..." -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Textarea" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Asnjë rezultat nuk u përputh" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Selekto" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Rrjedha e Aktivitetit" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Forma përmbanë ndryshime të paruajtura" -#: 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/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Ju lutem konfirmoni veprimin" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Shto një Grup" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "A jeni te sigurte qe doni ta kryeni këtë veprim?" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Forma e grupit" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Konfirmo" -#: 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/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/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/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Mos ndjek" -#: 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/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Ndjek" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Menaxho" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Lidhëse" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Redakto Grupin" +#: ckan/public/base/javascript/modules/image-upload.js:61 +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/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/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Ngarko" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Ndjekësit" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Largo" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Historiku" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Ngarko një skedar në kompjuerin tuaj" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Shto Grupin" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Kërko grupin..." +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Skedari" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Renditje rritëse" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Ruaj renditjen" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Renditje zbritëse" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Duke u ruajtur..." -#: 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/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Ngarko një skedar" -#: 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/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Ka ndodhur një gabim" -#: 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/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Skedari nuk u ngarkua" -#: 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/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "E pamundur të autentikohet ngarkimi" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Shto Anëtar" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Burimi u ngarkua" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Përdorues ekzistues" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "E pamundur të nxirren të dhënat për dosjen e ngarkuar" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" msgstr "" -"Nëse dëshironi të shtoni një përdorues ekzistues, kërkoni emrin e " -"përdoruesit poshtë." - -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "ose" +"Ju jeni duke ngarkuar një skedar. A jeni të sigurt që doni të largoheni dhe " +"t'a ndalni këtë ngarkim?" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Përdorues i ri" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Shtoni filterin" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" msgstr "" -"Nëse dëshrioni të shtoni një përdorues të ri, shtypni elmain adresën e tyre." -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Roli" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Modifikoni" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "A jeni i sigurtë që dëshironi të fshini këtë anëtar?" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Shfaq më shumë" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Fshij" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Fsheh" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Ruaj" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Gabim %(error_code)s" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Çka janë rolet?" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Rreth {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" -#: ckan/templates/group/member_new.html:81 +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 msgid "" -"

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

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

" +"Powered by CKAN" 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

" +"Mundësuar nga CKAN" -#: 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/header.html:12 +msgid "Sysadmin settings" +msgstr "Cilësimet e Administratorit të sistemit" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Përditëso Grupin" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Shiko Profilin" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Krijo Grupin" +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Ndërlidhja" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Paneli" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "U ndryshua për herë të fundit" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Redakto cilësimet" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Popullarizuar" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Cilësimet" -#: ckan/templates/group/read.html:21 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/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Dilni nga sistemi" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Seti i të dhënave në grupin: {group}" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Kyçu" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Historiku i versioneve të fundit" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Regjistrohu" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Emri" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Seti i të dhënave" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Grupi Im" - -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "grupi-im" - -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Përshkrimi" - -#: 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:60 -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:64 -msgid "Save Group" -msgstr "Ruaj grupin" - -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 sete të të dhënave" - -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Shiko {name}" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Kërko Setet e të dhënave" -#: 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/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Kërko" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Çfarë janë Grupet?" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Kalo te përmbajtja" -#: 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/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Ngarko më shum" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Krahaso" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Ngarko më pak" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "E fshirë" +#: 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/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "lexo më shum" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administrimi" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Ndryshimi" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Administratorët e sistemit" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Data" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Konfigurimet" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Autor" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Shporta" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Mesazhi " +#: ckan/templates/admin/config.html:16 +#: 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/home/index.html:4 -msgid "Welcome" -msgstr "Mirësevini" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Reseto" -#: 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/admin/config.html:17 +msgid "Update Config" +msgstr "Ndrysho Konfigurimin" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Mirësevini në CKAN" +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "Opcionet e konfigurimit të CKAN" -#: ckan/templates/home/snippets/promoted.html:10 +#: ckan/templates/admin/config.html:33 +#, python-format 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 " +"

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 "" -"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/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Konfirmo rivendosjen" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "grupe" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administratro CKAN-in " -#: ckan/templates/macros/form.html:126 +#: ckan/templates/admin/index.html:20 #, python-format msgid "" -"You can use Markdown formatting here" +"

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 "" -"Mund të përdorni Markdown formatimin here" - -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Kjo fushë duhet të plotësohet" - -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Kostumizo" - -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Forma përmban këto fusha të gabuara:" - -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Kjo fushë duhet të plotësohet" - -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" - -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "Imazhi i URL-it" - -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Pastro Ngarkimin" - -#: ckan/templates/organization/base_form_page.html:5 -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:6 -msgid "Add dataset" -msgstr "Shto set të 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}\"" +"

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/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Bëje publike" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Largo" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Bëje private" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "" +"

Largo setet e të dhënave të fshira përgjithmonë dhe në mënyrë të " +"pakthyeshme.

" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Draft" +#: 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/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Private" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Kliko këtu për më shum informacione" -#: ckan/templates/organization/bulk_process.html:88 -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/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Shakrko burimin" -#: 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/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Asnjë inspektim në dispozicion" -#: 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/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Më shum detaje..." -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Shto Organizatën" +#: 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/organization/index.html:20 -msgid "Search organizations..." -msgstr "Kërko Organizatën..." +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" -#: 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/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "E dhënë standarde" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Emri përdoruesit" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Mesatare" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "Email adresa" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "E dhënë me gjerësi mesatare" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "Përditëso Anëtarin" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "E plotë" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "E dhënë me gjerësi të plotë" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Krijo një Organizatë" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "E madhe" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Modifiko Organizatën" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "E dhënë e madhe" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Krijo Organizatën" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Parashto" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Shto Setin e të dhënave" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Parashtro të dhënën" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Setet e të dhënave në organizatën: {group}" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Kostumizo Fushën(e zbrazët)" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Çfarë janë Organizatat?" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Kostumizo Fushën" -#: 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/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" -#: 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/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textarea" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Organizata ime" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Selekto" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "organizata-ime" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Rrjedha e Aktivitetit" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Disa informacione rreth organizatës time..." +#: 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/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" -"Jeni të sigurtë që doni ta fshini këtë organizatë? Kjo do të fshijë të " -"gjitha setet e të dhënave publike dhe private që i përkasin kësaj " -"organizate." +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Shto një Grup" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Ruaj organizatën" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Forma e grupit" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Shiko {organization_name}" +#: 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/package/base.html:22 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/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/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Çfarë janë setet e të dhënave?" +#: 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/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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Menaxho" -#: 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/group/edit.html:12 +msgid "Edit Group" +msgstr "Redakto Grupin" -#: 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/group/edit_base.html:23 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/package/edit_base.html:16 -msgid "View dataset" -msgstr "Shfaq setin e të dhënave" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Historiku" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Redakto të dhënat" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Shto Grupin" -#: 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/group/index.html:20 +msgid "Search groups..." +msgstr "Kërko grupin..." -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Parashih" +#: 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/package/edit_view.html:21 -msgid "Update" -msgstr "Ndrysho" +#: 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/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "" +#: 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/package/group_list.html:14 -msgid "Add to group" -msgstr "Shto në grup" +#: 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/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Shto Anëtar" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Ndrysho setin e të dhënave" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Përdorues ekzistues" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" +"Nëse dëshironi të shtoni një përdorues ekzistues, kërkoni emrin e " +"përdoruesit poshtë." + +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "ose" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Përdorues i ri" -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" +"Nëse dëshrioni të shtoni një përdorues të ri, shtypni elmain adresën e tyre." -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Roli" -#: 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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Fshij" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Shto" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Çka janë rolet?" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/group/member_new.html:80 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"

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

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

" msgstr "" -"Ky është një verison i vjetër i setit të të dhënave, e modifikuar më " -"%(timestamp)s. Mund të dalloj thelbësisht prej versionit momental ." +"

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/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Ngarko në DataStore" +#: 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/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Gabim në ngarkim:" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Përditëso Grupin" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Gabim:" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Krijo Grupin" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/group/read.html:21 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/package/resource_data.html:48 -msgid "Status" -msgstr "Statusi" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Seti i të dhënave në grupin: {group}" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Ndryshimi i fundit" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Historiku i versioneve të fundit" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Asnjëherë" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Emri" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Ngarkoni log-un" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Grupi Im" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Detajet" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "grupi-im" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "Fundi i llogarisë" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Pak informacione rreth grupit tim..." -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Të gjitha burimet" +#: ckan/templates/group/snippets/group_form.html:60 +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/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Shiko burimin" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Ruaj grupin" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Ndrysho burimin" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Shiko {name}" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: 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/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Pamjet" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Çfarë janë Grupet?" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "Pika fundore e API-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 "" +"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/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Shko tek burimi" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Krahaso" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Shkarko" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "E fshirë" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "lexo më shum" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Nga abstrakti i setit të të dhënave" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Ndryshimi" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source:
%(dataset)s" -msgstr "Burimi: %(dataset)s" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Data" -#: ckan/templates/package/resource_read.html:112 -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/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Autor" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Nuk shihni faqet e pritura?" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Mesazhi " -#: ckan/templates/package/resource_read.html:121 -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/home/index.html:4 +msgid "Welcome" +msgstr "Mirësevini" -#: ckan/templates/package/resource_read.html:123 -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/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/package/resource_read.html:124 -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/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Mirësevini në CKAN" -#: ckan/templates/package/resource_read.html:125 +#: ckan/templates/home/snippets/promoted.html:10 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" +"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 "" -"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" +"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/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Informata shtesë" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Ky është një seksion i paraqitur" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Fusha" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "P.sh. ambienti" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Vlera" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Kërko të dhënat" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "I panjohur" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Etiketa të popullarizaura" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "U krijua" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistikat" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Formati" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "set i të dhënave" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licenca" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "setet e të dhënave" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Faqe të reja" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizatat" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Ky burim nuk ka faqe" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupe" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Shtoni burim të ri" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 +#: ckan/templates/macros/form.html:126 #, python-format msgid "" -"

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

" +"You can use Markdown formatting here" msgstr "" -"

Ky set i të dhënave nuk ka të dhëna, pse të mos shtoni disa?

" +"Mund të përdorni Markdown formatimin here" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Kjo fushë duhet të plotësohet" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API Docs" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Kostumizo" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Forma përmban këto fusha të gabuara:" -#: 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/macros/form.html:395 +msgid "Required field" +msgstr "Kjo fushë duhet të plotësohet" -#: 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/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "Të gjitha faqet" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "Imazhi i URL-it" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "Shiko faqen" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Pastro Ngarkimin" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Shiko inspektimin" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Forma e Organizatës" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Info shtesë" +#: 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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Burimi" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Shto set të të dhënave" -#: 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/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "u gjet për \"{query}\"" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Versioni" +#: 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/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Shtet" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Bëje publike" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Ndryshuar së fundmi" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Bëje private" -#: 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/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Draft" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Private" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." -msgstr "" +#: ckan/templates/organization/bulk_process.html:88 +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/package/snippets/cannot_create_package.html:19 -msgid "" -"Ask a system administrator to create an organization before you can " -"continue." -msgstr "" +#: 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "API i të dhënave" +#: 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/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Titulli" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Shto Organizatën" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "p.sh. Një titull përshkrues" +#: 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/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "p.sh. Seti i të dhënave të mia" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Emri përdoruesit" -#: ckan/templates/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/organization/member_new.html:50 +msgid "Email address" +msgstr "Email adresa" -#: 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/organization/member_new.html:61 +msgid "Update Member" +msgstr "Përditëso Anëtarin" -#: ckan/templates/package/snippets/package_basic_fields.html:41 +#: ckan/templates/organization/member_new.html:81 msgid "" -" License definitions and additional information can be found at opendefinition.org " +"

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ërkufizimet e licencës dhe informacione shtesë mund të gjenden në opendefinition.org" +"

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/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organizatë" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Asnjë organizatë" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Krijo një Organizatë" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Dukshmëria" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Modifiko Organizatën" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Publiku" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Krijo Organizatën" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Aktiv" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Shto Setin e të dhënave" -#: ckan/templates/package/snippets/package_form.html:28 +#: ckan/templates/organization/snippets/feeds.html:3 +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 "" -"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." +"

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 "" -"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?" +"

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/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Tjetër: Shtoni të dhëna" +#: 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/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Organizata ime" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "organizata-ime" -#: 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/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Disa informacione rreth organizatës time..." -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Adresa elektronike e autorit" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Jeni të sigurtë që doni ta fshini këtë organizatë? Kjo do të fshijë të " +"gjitha setet e të dhënave publike dhe private që i përkasin kësaj " +"organizate." -#: ckan/templates/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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Ruaj organizatën" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Mirëmbajtësi i adresës elektronike" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Ndrysho burimet" +#: ckan/templates/package/base.html:22 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/snippets/resource_form.html:24 -msgid "Data" -msgstr "" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Çfarë janë setet e të dhënave?" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: 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/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "p.sh. Janar 2011 Çmimet e Arta" - -#: ckan/templates/package/snippets/resource_form.html:32 -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:37 -msgid "eg. CSV, XML or JSON" -msgstr "p.sh. CSV, XML ose JSON" +#: 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/snippets/resource_form.html:40 -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/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/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "p.sh. 2012-06-05" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Shfaq setin e të dhënave" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Madhësia e skedarit" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Redakto të dhënat" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "p.sh. 1024" +#: 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/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME Type" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Parashih" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "p.sh application/json" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Ndrysho" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Jeni të sigurtë që doni të fshini këtë burim?" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "I mëparshëm" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Shto në grup" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Ruaj & shtoni një tjetër" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Përfundo" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Ndrysho setin e të dhënave" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Çfarë është një burim?" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "" -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" msgstr "" -"Një burim mund të jetë çdo skedar ose lidhje në një skedar që përmban të " -"dhëna të dobishme." -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Hulumto" +#: 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/snippets/resource_item.html:36 -msgid "More information" -msgstr "Më shumë informacione" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Ndërthur" +#: 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/snippets/resource_view.html:24 -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/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/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Ndërthur faqen burimore" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Shto" -#: ckan/templates/package/snippets/resource_view.html:66 +#: ckan/templates/package/read_base.html:32 +#, python-format msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" -"Ju mund të kopjoni dhe ngjisni kodin e ndërthurur në një CMS apo blog " -"softuer që mbështet HTML të papërpunuar" +"Ky është një verison i vjetër i setit të të dhënave, e modifikuar më " +"%(timestamp)s. Mund të dalloj thelbësisht prej versionit momental ." -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Gjerësia" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Të gjitha burimet" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Lartësia" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Shiko burimin" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Kodi" +#: 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/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Inspektimi burimit" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Pamjet" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Të dhënat dhe burimet" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "Pika fundore e API-së" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Ky set i të dhënave nuk ka të dhëna" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Shko tek burimi" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Shkarko" + +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Nga abstrakti i setit të të dhënave" + +#: ckan/templates/package/resource_read.html:68 #, python-format -msgid "Read dataset as of %s" -msgstr "Lexoni setin e të dhënave si %s" +msgid "Source: %(dataset)s" +msgstr "Burimi: %(dataset)s" -#: 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/resource_read.html:109 +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/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/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Nuk shihni faqet e pritura?" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "p.sh. Faqja ime" +#: ckan/templates/package/resource_read.html:118 +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/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "p.sh. Info rreth faqës time" +#: ckan/templates/package/resource_read.html:120 +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/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Shtoni filterin" +#: ckan/templates/package/resource_read.html:121 +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/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Fshij filterin" +#: ckan/templates/package/resource_read.html:122 +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/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filterët" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Informata shtesë" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Çfarë është një faqe?" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Fusha" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Vlera" + +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -"Një faqe është një përfaqësim i të dhënave, të mbajtura kundër një burimi" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Dallimet" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "I panjohur" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Dallimet e rishikuara" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Dallimi" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "U krijua" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Nuk ka dallime" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Formati" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Historia e ndryshimit" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licenca" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Ndryshime" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Faqe të reja" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Mos fshij" +#: ckan/templates/package/resource_views.html:28 +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:26 +#, 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/revision/read.html:64 -msgid "Changes" -msgstr "Ndryshime" +#: 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/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Etiketa e setit të të dhënave" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Të gjitha faqet" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Entitet" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Shiko faqen" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Artikulli i ri i aktivitetit" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Shiko inspektimin" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Ndërthur faqën e të dhënave" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Info shtesë" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Ndërthur këtë faqe duke kopjuar në ueb faqen tuaj:" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Burimi" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Zgjidhni gjerësinë dhe lartësinë në piksela:" +#: 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/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Gjerësia:" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versioni" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Lartësia:" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Shtet" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Statusi i shtytësit të të dhënave: {status}." +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Ndryshuar së fundmi" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "URL-i gjurmimit" +#: 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/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Tregoni më shumë {facet_type}" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Tregoni vetëm të popullarizuarat {facet_type}" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" -#: ckan/templates/snippets/facet_list.html:87 -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/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Kreu" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titulli" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Gjuha" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "p.sh. Një titull përshkrues" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Shko" +#: 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/snippets/license.html:14 -msgid "No License Provided" -msgstr "Asnjë licencë e pajisur" +#: 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/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Ky set i të dhënave plotëson definicion e hapur." +#: 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/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Nuk ka asnjë përshkrim për këtë organizatë" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +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/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Ky set i të dhënave nuk ka përshkrim" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizatë" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Paraqit" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Asnjë organizatë" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Rendit nga" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Dukshmëria" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filtro rezultatet" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Publiku" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Ju lutem provoni të kërkoni diçka tjetër

" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Aktiv" -#: ckan/templates/snippets/search_form.html:86 +#: ckan/templates/package/snippets/package_form.html:28 msgid "" -"

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

" +"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/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/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/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/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Tjetër: Shtoni të dhëna" -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Asnjë set i të dhënave nuk është gjetur" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: 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/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/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Asnjë grup nuk është gjetur për \"{query}\"" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Adresa elektronike e autorit" -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" -msgstr[1] "" +#: 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/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Asnjë grup nuk është gjetur" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +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/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: 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/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "p.sh. Janar 2011 Çmimet e Arta" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Disa shënime të dobishme në lidhje me të dhënat" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Asnjë organizatë nuk është gjetur" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "p.sh. CSV, XML ose JSON" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Shoqëror" +#: ckan/templates/package/snippets/resource_form.html:40 +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/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Abonohu" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "p.sh. 2012-06-05" -#: 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:82 -msgid "Email" -msgstr "Adresa elektronike" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Madhësia e skedarit" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "p.sh. 1024" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Redaktimet" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME Type" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Etiketat e kërkimit" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "p.sh application/json" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Furnizimi i lajmeve" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Jeni të sigurtë që doni të fshini këtë burim?" -#: 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/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "I mëparshëm" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Organizatat e mia" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Ruaj & shtoni një tjetër" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Grupet e mia" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Përfundo" -#: 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/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Çfarë është një burim?" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Ju nuk keni krijuar asnjë set të të dhënave." +#: 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/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Krijoni një tani?" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Hulumto" -#: 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/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Më shumë informacione" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Ju nuk jeni anëtar i asnjë organizate." +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Ndërthur" -#: 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/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "Kjo faqe burimore nuk është në dispozicion në këtë moment." -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Info mbi llogarinë" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Ndërthur faqen burimore" -#: ckan/templates/user/edit.html:19 +#: ckan/templates/package/snippets/resource_view.html:66 msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" msgstr "" -"Profili juaj lejon që përdoruesit e tjerë të CKAN të dijnë se kush jeni ju " -"dhe se çfarë bëni." +"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/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Ndryshoni detajet" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Gjerësia" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Emri i plotë" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Lartësia" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "p.sh. Joe Bloggs" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Kodi" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "p.sh. joe@example.com" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Inspektimi burimit" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Disa informacione për veten" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Të dhënat dhe burimet" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Abonohuni tek adresat elektronike të njoftimeve" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Ky set i të dhënave nuk ka të dhëna" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Ndryshoni fjalëkalimin" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Lexoni setin e të dhënave si %s" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" +#: 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/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Fjalëkalimi" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Dallimet" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Konfirmo fjalëkalimin" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Dallimet e rishikuara" + +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Dallimi" + +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Nuk ka dallime" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Jeni të sigurtë që doni të fshini këtë përdorues?" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Historia e ndryshimit" -#: ckan/templates/user/edit_user_form.html:51 -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/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Ndryshime" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Rigjeneroni çelësin e API" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Mos fshij" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Ndryshoni profilin" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Ndryshime" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Të gjithë përdoruesit" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Etiketa e setit të të dhënave" -#: 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/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Entitet" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Ju nevojitet një llogari?" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Artikulli i ri i aktivitetit" -#: 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/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Ndërthur faqën e të dhënave" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Krijoni një llogari" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Ndërthur këtë faqe duke kopjuar në ueb faqen tuaj:" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Keni harruar fjalëkalimin tuaj?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Zgjidhni gjerësinë dhe lartësinë në piksela:" -#: 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/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Gjerësia:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Keni harruar fjalëkalimin tuaj?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Lartësia:" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Jasht sistemit" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Statusi i shtytësit të të dhënave: {status}." -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Ju jeni tashmë jasht sistemit." +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "URL-i gjurmimit" -#: 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/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Tregoni më shumë {facet_type}" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Dilni nga sistemi" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Tregoni vetëm të popullarizuarat {facet_type}" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Më mbani në mend" +#: ckan/templates/snippets/facet_list.html:87 +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/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Ju jeni tashmë të kyçur" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Kreu" -#: ckan/templates/user/logout_first.html:24 -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/snippets/language_selector.html:3 +msgid "Language" +msgstr "Gjuha" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Dilni nga sistemi tani" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Shko" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Regjistrimi" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Asnjë licencë e pajisur" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Regjistrohu për një llogari" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Ky set i të dhënave plotëson definicion e hapur." -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Pse të regjistroheni?" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Nuk ka asnjë përshkrim për këtë organizatë" -#: 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/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Ky set i të dhënave nuk ka përshkrim" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "Emri i përdoruesit" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Paraqit" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Emri i plotë" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Rendit nga" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Krijo llogari" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filtro rezultatet" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Rivendosni fjalëkalimin tuaj" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Ju lutem provoni të kërkoni diçka tjetër

" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Fjalëkalimi u rivendos" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Ndryshoni fjalëkalimin" +#: 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/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Si funksionon kjo?" +#: 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/user/perform_reset.html:40 -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/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Përdoruesi nuk ka krijuar asnjë set të të dhënave." +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Asnjë set i të dhënave nuk është gjetur" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Ju nuk keni dhënë një biografi." +#: 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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Ky përdorues nuk ka biografi." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "ID e hapur" +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Kjo do të thotë që vetëm ju mund të shihni këtë" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Asnjë grup nuk është gjetur" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Anëtar që nga" +#: 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/user/read_base.html:96 -msgid "API Key" -msgstr "API çelësi" +#: 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/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Rivendosni fjalëkalimin tuaj" +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Fjalëkalimi u rivendos" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Asnjë organizatë nuk është gjetur" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Kërkesa u rivendos" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Shoqëror" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Shtypni emrin tuaj të përdoruesit në kuti dhe ne do të ju dërgojmë një " -"lidhje për të shtypur një fjalëkalim të ri." +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Abonohu" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Aktiviteti nga:" +#: 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:82 +msgid "Email" +msgstr "Adresa elektronike" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Lista e kërkimit..." +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Ju nuk jeni duke ndjekur asgjë" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Redaktimet" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Asnjë ndjekës" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Etiketat e kërkimit" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Kërko përdorues" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Furnizimi i lajmeve" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Ka përfunduar" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Seti i të dhënave të mia" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Në pritje" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Organizatat e mia" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Duke u dorëzuar" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Grupet e mia" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Ende nuk është ngarkuar" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktiviteti nga artikujt që jam duke i ndjekur" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Burimi i depove të të dhënave nuk u gjet" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Ju nuk keni krijuar asnjë set të të dhënave." -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" -"Të dhënat ishin të pavlefshme (si për shembull: një vlerë numerike është " -"jashtë rangut ose është futur në një fushë të tekstit)." +#: 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:16 +msgid "Create one now?" +msgstr "Krijoni një tani?" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "Burimi \"{0}\" nuk u gjet." +#: 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." -#: 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}" +#: 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." -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Seti i të dhënave për faqe" +#: 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" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Testo conf" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Info mbi llogarinë" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Fusha e kustomizuar rritëse" +#: 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." -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Fusha e kustomizuar zvogëluese" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Ndryshoni detajet" -#: 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" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Emri i plotë" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "teksti i kustomizuar" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "p.sh. Joe Bloggs" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Kodi i vendit" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "p.sh. joe@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "teksti burimor i kustomizuar" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Disa informacione për veten" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Abonohuni tek adresat elektronike të njoftimeve" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Ky grup nuk ka përshkrim" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Ndryshoni fjalëkalimin" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -"Mjeti i CKAN për rishikimin e të dhënave ka shumë karakteristika të fuqishme" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "Url e imazhit" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Fjalëkalimi" -#: 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)" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Konfirmo fjalëkalimin" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Të dhënat eksploruese" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Jeni të sigurtë që doni të fshini këtë përdorues?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Tabela" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Jeni të sigurtë që doni të rigjeneroni çelësin e API?" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Grafi" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Rigjeneroni çelësin e API" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Harta" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Ndryshoni profilin" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Të gjithë përdoruesit" -#: 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" +#: 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" -#: 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" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Ju nevojitet një llogari?" -#: 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" +#: 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ë." -#: 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" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Krijoni një llogari" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Lloji i grafit" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Keni harruar fjalëkalimin tuaj?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Grupi (boshti 1)" +#: 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ë." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Seritë (boshti 2)" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Keni harruar fjalëkalimin tuaj?" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Lloji i fushës" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Jasht sistemit" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Fusha e gjerësisë" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Ju jeni tashmë jasht sistemit." -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Fusha e gjatësisë" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Ju jeni tashmë të kyçur si {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "Fusha GeoJSON" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Dilni nga sistemi" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Zmadhim automatik tek tiparet" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Më mbani në mend" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Tregjet thërrmuese" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Ju jeni tashmë të kyçur" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Numri total i setit të të dhënave" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Data" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Dilni nga sistemi tani" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Totali i setit të të dhënave" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Regjistrimi" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Rishikimet e setit të të dhënave në javë" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Regjistrohu për një llogari" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Rishikimet e gjithë setit të të dhënave" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Pse të regjistroheni?" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Seti i të dhënave të reja" +#: 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" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Të dhënat më të vlerësuara" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "Emri i përdoruesit" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Mesatarja" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Emri i plotë" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Numri i vlerësimeve" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Krijo llogari" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Nuk ka vlerësime" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Rivendosni fjalëkalimin tuaj" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Të dhënat më të modifikuara" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Fjalëkalimi u rivendos" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Numri i modifikimeve" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Ndryshoni fjalëkalimin" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Asnjë set i të dhënave nuk u redaktua" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Si funksionon kjo?" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Grupet më të mëdha" +#: ckan/templates/user/perform_reset.html:40 +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." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Numri i të dhënave" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Përdoruesi nuk ka krijuar asnjë set të të dhënave." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Nuk ka grupe" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Ju nuk keni dhënë një biografi." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Togfjalëshat kryesorë" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Ky përdorues nuk ka biografi." -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Emri i etiketës" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "ID e hapur" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Numri i setit të të dhënave" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Kjo do të thotë që vetëm ju mund të shihni këtë" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Anëtar që nga" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Mënyja e statistikave" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API çelësi" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Numri total i seteve të të dhënave" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Rivendosni fjalëkalimin tuaj" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Teksti" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Fjalëkalimi u rivendos" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Kërkesa u rivendos" + +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Shtypni emrin tuaj të përdoruesit në kuti dhe ne do të ju dërgojmë një " +"lidhje për të shtypur një fjalëkalim të ri." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Uebfaqja" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Aktiviteti nga:" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "Url e uebfaqes" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Lista e kërkimit..." -#: 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/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" diff --git a/ckan/i18n/sr/LC_MESSAGES/ckan.mo b/ckan/i18n/sr/LC_MESSAGES/ckan.mo index a10da31034b..ae979eed94e 100644 Binary files a/ckan/i18n/sr/LC_MESSAGES/ckan.mo and b/ckan/i18n/sr/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/sr/LC_MESSAGES/ckan.po b/ckan/i18n/sr/LC_MESSAGES/ckan.po index 7874c538ba5..d091025ebb5 100644 --- a/ckan/i18n/sr/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sr/LC_MESSAGES/ckan.po @@ -1,38 +1,673 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.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" -#: ckan/authz.py:179 +#: 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:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Грешка" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Ресурс није пронађен" + +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Немате овлашћења да бисте видели ову страницу" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Грешка:" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Последње ажурирање" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/controller.py:46 +#, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" + +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: 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:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Опис" + +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Сачувај" + +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Учитавање ..." + +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "АПИ података" + +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +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:28 +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:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Последња промена" + +#: 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:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "" + +#: 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:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "" + +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ресурси" + +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +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:101 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +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/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Укупан број скупова података" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Најбоље оцењени скупови података" + +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Просечна оцена" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Број оцена" + +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Без оцене" + +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Највише мењани скупови података" + +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Скуп података" + +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Број промена" + +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Највеће групе" + +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Група" + +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Број скупова података" + +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Најчешћи тагови" + +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Корисник" + +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "" + +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "" + +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +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:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckan/authz.py:182 #, python-format msgid "Authorization function not found: %s" msgstr "Функција ауторизације није пронађена: %s" -#: ckan/authz.py:191 ckan/templates/header.html:14 +#: ckan/authz.py:194 ckan/templates/header.html:14 msgid "Admin" msgstr "" -#: ckan/authz.py:195 +#: ckan/authz.py:198 msgid "Editor" msgstr "" -#: ckan/authz.py:199 +#: ckan/authz.py:202 msgid "Member" msgstr "" @@ -56,7 +691,7 @@ msgstr "" msgid "Site Tag Logo" msgstr "" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 #: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 @@ -65,31 +700,31 @@ msgstr "" msgid "About" msgstr "О сервису" -#: ckan/controllers/admin.py:54 +#: ckan/controllers/admin.py:55 msgid "About page text" msgstr "" -#: ckan/controllers/admin.py:55 +#: ckan/controllers/admin.py:56 msgid "Intro Text" msgstr "" -#: ckan/controllers/admin.py:55 +#: ckan/controllers/admin.py:56 msgid "Text on home page" msgstr "" -#: ckan/controllers/admin.py:56 +#: ckan/controllers/admin.py:57 msgid "Custom CSS" msgstr "" -#: ckan/controllers/admin.py:56 +#: ckan/controllers/admin.py:57 msgid "Customisable css inserted into the page header" msgstr "" -#: ckan/controllers/admin.py:57 +#: ckan/controllers/admin.py:58 msgid "Homepage" msgstr "" -#: ckan/controllers/admin.py:160 +#: ckan/controllers/admin.py:161 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " @@ -98,155 +733,146 @@ msgstr "" "Немогуће одбацивање пакета %s јер придружена верзија %s садржи пакете који " "се не могу обрисати %s" -#: ckan/controllers/admin.py:182 +#: ckan/controllers/admin.py:183 #, python-format msgid "Problem purging revision %s: %s" msgstr "Проблем при одбацивању верзије %s: %s" -#: ckan/controllers/admin.py:184 +#: ckan/controllers/admin.py:185 msgid "Purge complete" msgstr "Одбацивање комплетно" -#: ckan/controllers/admin.py:186 +#: ckan/controllers/admin.py:187 msgid "Action not implemented." msgstr "Акција није имплементирана" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Немате овлашћења да бисте видели ову страницу" - -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 msgid "Access denied" msgstr "Приступ одбијен" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 #: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 msgid "Not found" msgstr "Није пронађено" -#: ckan/controllers/api.py:134 +#: ckan/controllers/api.py:136 msgid "Bad request" msgstr "Лош захтев" -#: ckan/controllers/api.py:168 +#: ckan/controllers/api.py:170 #, python-format msgid "Action name not known: %s" msgstr "Име акције није познато: %s" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 #, python-format msgid "JSON Error: %s" msgstr "JSON Грешка: %s" -#: ckan/controllers/api.py:195 +#: ckan/controllers/api.py:197 #, python-format msgid "Bad request data: %s" msgstr "Неисправан податак: %s" -#: ckan/controllers/api.py:298 +#: ckan/controllers/api.py:300 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Немогуће излиставање ентитета овог типа: %s" -#: ckan/controllers/api.py:327 +#: ckan/controllers/api.py:329 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Не може се прочитати ентитет овог типа: %s" -#: ckan/controllers/api.py:365 +#: ckan/controllers/api.py:367 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Не може се креирати нови ентитет овог типа: %s %s" -#: ckan/controllers/api.py:398 +#: ckan/controllers/api.py:400 msgid "Unable to add package to search index" msgstr "Није могуће додати пакет у регистар претраге" -#: ckan/controllers/api.py:428 +#: ckan/controllers/api.py:430 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Не може се ажурирати ентитет овог типа: %s" -#: ckan/controllers/api.py:452 +#: ckan/controllers/api.py:454 msgid "Unable to update search index" msgstr "Није могуће ажурирати регистар претраге" -#: ckan/controllers/api.py:475 +#: ckan/controllers/api.py:477 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Не може се избрисати ентитет овог типа: %s %s" -#: ckan/controllers/api.py:498 +#: ckan/controllers/api.py:500 msgid "No revision specified" msgstr "Промена није наведена" -#: ckan/controllers/api.py:502 +#: ckan/controllers/api.py:504 #, python-format msgid "There is no revision with id: %s" msgstr "Нема верзије чији је ID: %s" -#: ckan/controllers/api.py:512 +#: ckan/controllers/api.py:514 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/controllers/api.py:524 +#: ckan/controllers/api.py:526 #, python-format msgid "Could not read parameters: %r" msgstr "Немогуће читање параметара: %r" -#: ckan/controllers/api.py:585 +#: ckan/controllers/api.py:587 #, python-format msgid "Bad search option: %s" msgstr "Лоша опција претраге: %s" -#: ckan/controllers/api.py:588 +#: ckan/controllers/api.py:590 #, python-format msgid "Unknown register: %s" msgstr "Непознат регистaр: %s" -#: ckan/controllers/api.py:597 +#: ckan/controllers/api.py:599 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:607 +#: ckan/controllers/api.py:609 msgid "Request params must be in form of a json encoded dictionary." msgstr "Параметри захтева морају бити у облику кодираног ЈСОН речника." -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 msgid "Group not found" msgstr "Група није пронађена" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 msgid "Incorrect group type" msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 #: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 @@ -258,22 +884,23 @@ msgstr "" msgid "Organizations" msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 #: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 #: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Групе" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 #: 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 @@ -281,280 +908,270 @@ msgstr "Групе" msgid "Tags" msgstr "Тагови" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 msgid "Formats" msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:448 +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Корисник %r није овлашћен да meња %s" + +#: ckan/controllers/group.py:442 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:466 +#: ckan/controllers/group.py:460 msgid "Unauthorized to create a group" msgstr "Нема овлашћења за креирање групе" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Корисник %r није овлашћен да meња %s" - -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 #: ckan/controllers/user.py:249 ckan/controllers/user.py:379 #: ckan/controllers/user.py:548 msgid "Integrity Error" msgstr "Грешка интегритета" -#: ckan/controllers/group.py:600 +#: ckan/controllers/group.py:594 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Корисник %r није овлашћен да мења %s овлашћења" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 #, python-format msgid "Unauthorized to delete group %s" msgstr "" -#: ckan/controllers/group.py:626 +#: ckan/controllers/group.py:620 msgid "Organization has been deleted." msgstr "" -#: ckan/controllers/group.py:628 +#: ckan/controllers/group.py:622 msgid "Group has been deleted." msgstr "" -#: ckan/controllers/group.py:630 +#: ckan/controllers/group.py:624 #, python-format msgid "%s has been deleted." msgstr "" -#: ckan/controllers/group.py:704 +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:705 #, python-format msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 #, python-format msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/controllers/group.py:730 +#: ckan/controllers/group.py:731 msgid "Group member has been deleted." msgstr "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 msgid "Select two revisions before doing the comparison." msgstr "Одаберите две верзије пре поређења." -#: ckan/controllers/group.py:778 +#: ckan/controllers/group.py:779 msgid "CKAN Group Revision History" msgstr "Историја верзија CKAN група" -#: ckan/controllers/group.py:782 +#: ckan/controllers/group.py:783 msgid "Recent changes to CKAN Group: " msgstr "Недавне промене у CKAN Групи:" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 msgid "Log message: " msgstr "Лог порука:" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 #: ckan/controllers/user.py:715 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 #: ckan/controllers/user.py:735 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 #, python-format msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/controllers/home.py:36 +#: ckan/controllers/home.py:35 msgid "This site is currently off-line. Database is not initialised." msgstr "Сајт је тренутно недоступан. База није иницијализована." -#: ckan/controllers/home.py:81 +#: ckan/controllers/home.py:73 #, python-format msgid "Please update your profile and add your email address. " msgstr "" "Молимо Вас, ажурирајте Ваш профил и додајте своју емаил " "адресу." -#: ckan/controllers/home.py:83 +#: ckan/controllers/home.py:75 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s користни Вашу емаил адресу, ако желите да ресетујете Вашу шифру." -#: ckan/controllers/package.py:290 +#: ckan/controllers/package.py:288 msgid "Invalid search query: {error_message}" msgstr "" -#: ckan/controllers/package.py:307 +#: ckan/controllers/package.py:304 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 msgid "Dataset not found" msgstr "Скуп података није пронађен" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 #, python-format msgid "Invalid revision format: %r" msgstr "Неисправан формат верзије: %r" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 #, python-format msgid "Unauthorized to read package %s" msgstr "Неовлашћено читање пакета %s" -#: ckan/controllers/package.py:448 +#: ckan/controllers/package.py:444 msgid "CKAN Dataset Revision History" msgstr "CKAN Историја верзија скупа података" -#: ckan/controllers/package.py:451 +#: ckan/controllers/package.py:447 msgid "Recent changes to CKAN Dataset: " msgstr "Недавне промене на CKAN скупу података" -#: ckan/controllers/package.py:507 +#: ckan/controllers/package.py:503 msgid "Unauthorized to create a package" msgstr "Неовлашћено креирања пакета" -#: ckan/controllers/package.py:577 +#: ckan/controllers/package.py:573 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Ресурс није пронађен" - -#: ckan/controllers/package.py:654 +#: ckan/controllers/package.py:644 msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:660 +#: ckan/controllers/package.py:650 msgid "You must add at least one data resource" msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Грешка" - -#: ckan/controllers/package.py:691 +#: ckan/controllers/package.py:681 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:727 +#: ckan/controllers/package.py:714 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:941 +#: ckan/controllers/package.py:928 msgid "Unable to add package to search index." msgstr "Није могуће додати пакет у регистар претраге" -#: ckan/controllers/package.py:989 +#: ckan/controllers/package.py:976 msgid "Unable to update search index." msgstr "Није могуће ажурирати регистар претраге." -#: ckan/controllers/package.py:1026 +#: ckan/controllers/package.py:1013 msgid "Dataset has been deleted." msgstr "" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1041 msgid "Resource has been deleted." msgstr "" -#: ckan/controllers/package.py:1060 +#: ckan/controllers/package.py:1052 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1158 +#: ckan/controllers/package.py:1150 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1167 +#: ckan/controllers/package.py:1159 msgid "No download is available" msgstr "" -#: ckan/controllers/package.py:1305 +#: ckan/controllers/package.py:1296 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1413 +#: ckan/controllers/package.py:1404 #, python-format msgid "Unauthorized to read resource %s" msgstr "Немате права да читате ресурс %s" -#: ckan/controllers/package.py:1477 +#: ckan/controllers/package.py:1468 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1495 +#: ckan/controllers/package.py:1486 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1501 +#: ckan/controllers/package.py:1492 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1557 +#: ckan/controllers/package.py:1548 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1566 +#: ckan/controllers/package.py:1557 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1595 +#: ckan/controllers/package.py:1586 msgid "No preview has been defined." msgstr "" @@ -583,13 +1200,6 @@ msgstr "Остало" msgid "Tag not found" msgstr "Таг није пронађен" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Корисник није пронађен" - #: ckan/controllers/user.py:161 msgid "Unauthorized to register as a user." msgstr "" @@ -612,6 +1222,13 @@ msgstr "Ниједан корисник није специфициран" msgid "Unauthorized to edit user %s" msgstr "Неовлашћено мењање корисника %s" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Корисник није пронађен" + #: ckan/controllers/user.py:234 ckan/controllers/user.py:367 msgid "Profile updated" msgstr "Профил ажуриран" @@ -814,7 +1431,7 @@ msgstr "" msgid "{actor} started following {group}" msgstr "" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -876,141 +1493,141 @@ msgstr "" msgid "December" msgstr "" -#: ckan/lib/formatters.py:116 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "" -#: ckan/lib/formatters.py:118 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:121 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:127 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:130 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:132 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:148 +#: ckan/lib/formatters.py:146 msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:153 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "" -#: ckan/lib/formatters.py:169 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "" -#: ckan/lib/formatters.py:171 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "" -#: ckan/lib/formatters.py:173 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "" -#: ckan/lib/formatters.py:175 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "" -#: ckan/lib/formatters.py:177 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "" -#: ckan/lib/formatters.py:189 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:191 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:193 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:195 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:197 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:199 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:201 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:203 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:205 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:1018 +#: ckan/lib/helpers.py:1048 msgid "Update your avatar at gravatar.com" msgstr "Ажурирај свој аватар на gravatar.com" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 msgid "Unknown" msgstr "Непознато" -#: ckan/lib/helpers.py:1330 +#: ckan/lib/helpers.py:1361 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1370 +#: ckan/lib/helpers.py:1401 msgid "Created new dataset." msgstr "Направи нови скуп података." -#: ckan/lib/helpers.py:1372 +#: ckan/lib/helpers.py:1403 msgid "Edited resources." msgstr "Измењени ресурси." -#: ckan/lib/helpers.py:1374 +#: ckan/lib/helpers.py:1405 msgid "Edited settings." msgstr "Измењена подешавања." -#: ckan/lib/helpers.py:1616 +#: ckan/lib/helpers.py:1648 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/helpers.py:1618 +#: ckan/lib/helpers.py:1650 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1043,7 +1660,8 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:32 #: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 #: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 msgid "Missing value" msgstr "Недостаје вредност" @@ -1056,199 +1674,174 @@ msgstr "Поље за унос %(name)s није очекивано." msgid "Please enter an integer value" msgstr "Молимо Вас унесите целобројну вредност" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Ресурси" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 msgid "Package resource(s) invalid" msgstr "Ресурс(и) пакета неисправан" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 #: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 msgid "Extras" -msgstr "Додаци" - -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Таг - речник \"%s\" не постоји" - -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Корисник" - -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Скуп података" - -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Група" +msgstr "Додаци" + +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Таг - речник \"%s\" не постоји" #: ckan/logic/converters.py:180 msgid "Could not parse as valid JSON" msgstr "" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 msgid "An organization must be provided" msgstr "" -#: ckan/logic/validators.py:46 +#: ckan/logic/validators.py:47 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:51 +#: ckan/logic/validators.py:52 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:91 +#: ckan/logic/validators.py:92 msgid "Invalid integer" msgstr "Неисправан број" -#: ckan/logic/validators.py:96 +#: ckan/logic/validators.py:97 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:102 +#: ckan/logic/validators.py:103 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:129 +#: ckan/logic/validators.py:130 msgid "Date format incorrect" msgstr "Неисправан формат датума" -#: ckan/logic/validators.py:138 +#: ckan/logic/validators.py:139 msgid "No links are allowed in the log_message." msgstr "Линкови нису дозвољени у log_message." -#: ckan/logic/validators.py:158 +#: ckan/logic/validators.py:159 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:199 +#: ckan/logic/validators.py:200 msgid "Resource" msgstr "Ресурс" -#: ckan/logic/validators.py:253 +#: ckan/logic/validators.py:254 msgid "That group name or ID does not exist." msgstr "Име групе или ИД не постоје." -#: ckan/logic/validators.py:267 +#: ckan/logic/validators.py:268 msgid "Activity type" msgstr "Тип активности" -#: ckan/logic/validators.py:330 +#: ckan/logic/validators.py:331 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:334 +#: ckan/logic/validators.py:335 msgid "That name cannot be used" msgstr "То име не може бити коришћено" -#: ckan/logic/validators.py:337 +#: ckan/logic/validators.py:338 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Име може бити дуго највише %i карактера" -#: ckan/logic/validators.py:342 +#: ckan/logic/validators.py:343 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:360 +#: ckan/logic/validators.py:361 msgid "That URL is already in use." msgstr "Тај УРЛ је већ у употреби." -#: ckan/logic/validators.py:365 +#: ckan/logic/validators.py:366 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Дужина имена \"%s\" је мања од минималне %s" -#: ckan/logic/validators.py:369 +#: ckan/logic/validators.py:370 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Дужина имена \"%s\" је већа од максималне %s" -#: ckan/logic/validators.py:375 +#: ckan/logic/validators.py:376 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Верзија мора бити највише %i карактера дужине" -#: ckan/logic/validators.py:393 +#: ckan/logic/validators.py:394 #, python-format msgid "Duplicate key \"%s\"" msgstr "Дуплирани кључ \"%s\"" -#: ckan/logic/validators.py:409 +#: ckan/logic/validators.py:410 msgid "Group name already exists in database" msgstr "Група са тим именом већ постоји у бази." -#: ckan/logic/validators.py:415 +#: ckan/logic/validators.py:416 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Дужина тага \"%s\" је мања од минималне %s" -#: ckan/logic/validators.py:419 +#: ckan/logic/validators.py:420 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Дужина тага \"%s\" је вeћа од максималне (%i)" -#: ckan/logic/validators.py:427 +#: ckan/logic/validators.py:428 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" "Таг \"%s\" мора бити састављен од алфанумеричких карактера или симбола: -_." -#: ckan/logic/validators.py:435 +#: ckan/logic/validators.py:436 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Таг \"%s\" не сме да буде великим словима." -#: ckan/logic/validators.py:544 +#: ckan/logic/validators.py:545 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:560 +#: ckan/logic/validators.py:561 msgid "That login name is not available." msgstr "То корисничко име није слободно." -#: ckan/logic/validators.py:569 +#: ckan/logic/validators.py:570 msgid "Please enter both passwords" msgstr "Молимо Вас да унесете обе лозинке" -#: ckan/logic/validators.py:577 +#: ckan/logic/validators.py:578 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:581 +#: ckan/logic/validators.py:582 msgid "Your password must be 4 characters or longer" msgstr "Ваша лозинка мора бити дужине најмање 4" -#: ckan/logic/validators.py:589 +#: ckan/logic/validators.py:590 msgid "The passwords you entered do not match" msgstr "Лозинке које сте унели се не поклапају" -#: ckan/logic/validators.py:610 +#: ckan/logic/validators.py:611 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." @@ -1256,225 +1849,229 @@ msgstr "" "Мењања није дозвољено, јер изгледа непожељно. Избегавајте линкове у Вашем " "опису." -#: ckan/logic/validators.py:619 +#: ckan/logic/validators.py:620 #, python-format msgid "Name must be at least %s characters long" msgstr "Име мора бити најмање %s карактера дугачко." -#: ckan/logic/validators.py:627 +#: ckan/logic/validators.py:628 msgid "That vocabulary name is already in use." msgstr "То име речника је већ употребљено." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:634 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" "Немогуће је променити вредност кључа са %s на %s. Овај кључ је само за " "читање" -#: ckan/logic/validators.py:642 +#: ckan/logic/validators.py:643 msgid "Tag vocabulary was not found." msgstr "Таг - речник није пронађен." -#: ckan/logic/validators.py:655 +#: ckan/logic/validators.py:656 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Таг %s не припада речнику %s" -#: ckan/logic/validators.py:661 +#: ckan/logic/validators.py:662 msgid "No tag name" msgstr "Нема таг имена" -#: ckan/logic/validators.py:674 +#: ckan/logic/validators.py:675 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Таг %s већ припада речнику %s" -#: ckan/logic/validators.py:697 +#: ckan/logic/validators.py:698 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:712 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:740 +#: ckan/logic/validators.py:741 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:746 +#: ckan/logic/validators.py:747 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:749 +#: ckan/logic/validators.py:750 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:781 +#: ckan/logic/validators.py:782 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:791 +#: ckan/logic/validators.py:792 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:802 +#: ckan/logic/validators.py:803 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:806 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:820 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Креирaj објекaт %s" -#: ckan/logic/action/create.py:532 +#: ckan/logic/action/create.py:544 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Креирај однос пакета: %s %s %s" -#: ckan/logic/action/create.py:573 +#: ckan/logic/action/create.py:585 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Креирај члан објекат %s" -#: ckan/logic/action/create.py:792 +#: ckan/logic/action/create.py:804 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:881 +#: ckan/logic/action/create.py:893 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Морате обезбедити ID пакета или име (параметар \"package\")." -#: ckan/logic/action/create.py:884 +#: ckan/logic/action/create.py:896 msgid "You must supply a rating (parameter \"rating\")." msgstr "Морате да доставите оцену (параметар \"rating\")." -#: ckan/logic/action/create.py:889 +#: ckan/logic/action/create.py:901 msgid "Rating must be an integer value." msgstr "Оцена мора бити целобројна вредност." -#: ckan/logic/action/create.py:893 +#: ckan/logic/action/create.py:905 #, python-format msgid "Rating must be between %i and %i." msgstr "Оцена мора бити између %i и %i." -#: ckan/logic/action/create.py:1052 +#: ckan/logic/action/create.py:1064 msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1285 +#: ckan/logic/action/create.py:1297 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1390 +#: ckan/logic/action/create.py:1402 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:45 +#: ckan/logic/action/delete.py:54 msgid " Delete User: {0}" msgstr "" -#: ckan/logic/action/delete.py:86 +#: ckan/logic/action/delete.py:92 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Бриши пакет: %s" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Бриши %s" -#: ckan/logic/action/delete.py:312 +#: ckan/logic/action/delete.py:318 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 msgid "id not in data" msgstr "ид није у подацима" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Речник \"%s\" није пронађен" -#: ckan/logic/action/delete.py:572 +#: ckan/logic/action/delete.py:578 #, python-format msgid "Could not find tag \"%s\"" msgstr "Таг \"%s\" није пронађен" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:613 +#: ckan/logic/action/delete.py:619 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 msgid "Resource was not found." msgstr "Ресурс није пронађен." -#: ckan/logic/action/get.py:2049 +#: ckan/logic/action/get.py:2087 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:2058 +#: ckan/logic/action/get.py:2096 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:2090 +#: ckan/logic/action/get.py:2128 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 msgid "Package was not found." msgstr "Пакет није пронађен." -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Ажужирање објекта %s" -#: ckan/logic/action/update.py:380 +#: ckan/logic/action/update.py:401 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Ажурирање односа пакета: %s %s %s" -#: ckan/logic/action/update.py:740 +#: ckan/logic/action/update.py:761 msgid "TaskStatus was not found." msgstr "TaskStatus није пронађен." -#: ckan/logic/action/update.py:1038 +#: ckan/logic/action/update.py:1059 msgid "Organization was not found." msgstr "" @@ -1498,7 +2095,7 @@ 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:143 ckan/logic/auth/update.py:63 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 msgid "No package found for this resource, cannot check auth." msgstr "" "Нема пронађених пакетa за овај ресурс, не може да провери аут (лош превод)." @@ -1531,24 +2128,24 @@ msgstr "" msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:191 +#: ckan/logic/auth/create.py:189 msgid "Group was not found." msgstr "Група није пронађена." -#: ckan/logic/auth/create.py:211 +#: ckan/logic/auth/create.py:209 msgid "Valid API key needed to create a package" msgstr "Валидан API кључ потребан за креирање пакета" -#: ckan/logic/auth/create.py:219 +#: ckan/logic/auth/create.py:217 msgid "Valid API key needed to create a group" msgstr "Валидан API кључ потребан за креирање групи" -#: ckan/logic/auth/create.py:239 +#: ckan/logic/auth/create.py:237 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Корисник %s није овлашћен да мења групу %s" @@ -1592,31 +2189,31 @@ msgstr "" msgid "User %s not authorized to delete task_status" msgstr "Корисник %s није овлашћен да избрише task_status" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 msgid "Not authorized" msgstr "" -#: ckan/logic/auth/get.py:108 +#: ckan/logic/auth/get.py:109 #, python-format msgid "User %s not authorized to read these packages" msgstr "Корисник %s није овлашћен да чита ове пакете" -#: ckan/logic/auth/get.py:130 +#: 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:149 +#: 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:176 +#: ckan/logic/auth/get.py:170 #, python-format msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:258 +#: ckan/logic/auth/get.py:252 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1650,39 +2247,39 @@ msgstr "Корисник %s није овлашћен да мења стање msgid "User %s not authorized to edit permissions of group %s" msgstr "Корисник %s није овлашћен да уређује дозволе групе %s" -#: ckan/logic/auth/update.py:189 +#: ckan/logic/auth/update.py:190 msgid "Have to be logged in to edit user" msgstr "" -#: ckan/logic/auth/update.py:197 +#: ckan/logic/auth/update.py:198 #, python-format msgid "User %s not authorized to edit user %s" msgstr "Корисник %s није овлашћен да мења корисника %s" -#: ckan/logic/auth/update.py:208 +#: ckan/logic/auth/update.py:209 msgid "User {0} not authorized to update user {1}" msgstr "" -#: ckan/logic/auth/update.py:216 +#: ckan/logic/auth/update.py:217 #, python-format msgid "User %s not authorized to change state of revision" msgstr "Корисник %s није овлашћен да промени стање верзије" -#: ckan/logic/auth/update.py:225 +#: ckan/logic/auth/update.py:226 #, python-format msgid "User %s not authorized to update task_status table" msgstr "Корисник %s није овлашћен да ажурира task_status табелу" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/auth/update.py:240 #, python-format msgid "User %s not authorized to update term_translation table" msgstr "Кориснику %s није омогућено да ажурира табелу term_translation" -#: ckan/logic/auth/update.py:261 +#: ckan/logic/auth/update.py:262 msgid "Valid API key needed to edit a package" msgstr "Валидан API кључ је потребан за измене пакета" -#: ckan/logic/auth/update.py:271 +#: ckan/logic/auth/update.py:272 msgid "Valid API key needed to edit a group" msgstr "Валидан API кључ је потребан за измене групе" @@ -1791,57 +2388,51 @@ msgstr "је предак од %s" msgid "has sibling %s" msgstr "односи се на %s" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Учитавање ..." - -#: ckan/public/base/javascript/modules/api-info.js:20 +#: ckan/public/base/javascript/modules/api-info.js:96 msgid "There is no API data to load for this resource" msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:21 +#: ckan/public/base/javascript/modules/api-info.js:124 msgid "Failed to load data API information" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:34 +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, python-format msgid "Input is too short, must be at least one character" -msgstr "" +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 msgid "There are unsaved modifications to this form" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:7 +#: ckan/public/base/javascript/modules/confirm-action.js:97 msgid "Please Confirm Action" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:8 +#: ckan/public/base/javascript/modules/confirm-action.js:100 msgid "Are you sure you want to perform this action?" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:9 +#: ckan/public/base/javascript/modules/confirm-action.js:102 #: ckan/templates/user/new_user_form.html:9 #: ckan/templates/user/perform_reset.html:21 msgid "Confirm" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 #: ckan/templates/admin/confirm_reset.html:9 #: ckan/templates/group/confirm_delete.html:14 #: ckan/templates/group/confirm_delete_member.html:15 @@ -1852,39 +2443,42 @@ msgstr "" msgid "Cancel" msgstr "Откажи" -#: ckan/public/base/javascript/modules/follow.js:23 +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:72 #: ckan/templates/snippets/follow_button.html:14 msgid "Follow" msgstr "" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:16 +#: ckan/public/base/javascript/modules/image-upload.js:68 msgid "Upload" msgstr "Допреми" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:18 +#: ckan/public/base/javascript/modules/image-upload.js:72 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 #: ckan/templates/snippets/search_form.html:68 msgid "Remove" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Слика" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: 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 @@ -1892,84 +2486,78 @@ msgstr "Слика" msgid "URL" msgstr "URL" -#: ckan/public/base/javascript/modules/image-upload.js:21 +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 msgid "File" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 msgid "Save order" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 msgid "Saving..." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 msgid "Upload a file" msgstr "Допреми фајл" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 msgid "An Error Occurred" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 msgid "Unable to upload file" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 msgid "Unable to authenticate upload" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 msgid "Unable to get data for uploaded file" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" msgstr "" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" msgstr "" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 #: ckan/templates/organization/bulk_process.html:65 #: ckan/templates/organization/edit.html:3 #: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 +#: ckan/templates/organization/members.html:33 #: ckan/templates/package/edit_base.html:11 #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 +#: ckan/templates/package/snippets/resource_item.html:56 msgid "Edit" msgstr "Уређивање" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 msgid "Show more" msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 msgid "Hide" msgstr "" @@ -2101,19 +2689,19 @@ msgstr "Смеће" msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:17 +#: ckan/templates/admin/config.html:16 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:18 +#: ckan/templates/admin/config.html:17 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:27 +#: ckan/templates/admin/config.html:26 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:34 +#: ckan/templates/admin/config.html:33 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2158,81 +2746,12 @@ msgstr "" msgid "

Purge deleted datasets forever and irreversibly.

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

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." msgstr "" #: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 +#: ckan/templates/package/resource_read.html:115 #: ckan/templates/package/snippets/resource_view.html:26 msgid "Click here for more information." msgstr "" @@ -2242,12 +2761,6 @@ msgstr "" msgid "Download resource" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." msgstr "" @@ -2380,8 +2893,8 @@ msgstr "" 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/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 @@ -2396,26 +2909,12 @@ msgstr "" msgid "Edit Group" msgstr "" -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 +#: ckan/templates/group/edit_base.html:23 ckan/templates/group/members.html:3 #: ckan/templates/organization/edit_base.html:24 #: ckan/templates/organization/members.html:3 msgid "Members" msgstr "Чланови" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "" - #: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 #: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 msgid "History" @@ -2430,28 +2929,6 @@ msgstr "Додај групу" msgid "Search groups..." msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - #: ckan/templates/group/index.html:29 msgid "There are currently no groups for this site" msgstr "" @@ -2473,11 +2950,11 @@ msgid "Edit Member" msgstr "" #: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 +#: ckan/templates/group/member_new.html:64 ckan/templates/group/members.html:6 #: ckan/templates/organization/member_new.html:7 #: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 +#: ckan/templates/organization/member_new.html:65 +#: ckan/templates/organization/members.html:8 msgid "Add Member" msgstr "" @@ -2507,44 +2984,40 @@ msgid "If you wish to invite a new user, enter their email address." msgstr "" #: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 +#: ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 +#: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" #: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 +#: ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 +#: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 #: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 #: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 #: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 +#: ckan/templates/user/edit_user_form.html:45 msgid "Delete" msgstr "Избриши" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Сачувај" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 msgid "What are roles?" msgstr "" -#: ckan/templates/group/member_new.html:81 +#: ckan/templates/group/member_new.html:80 msgid "" "

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

Member: Can add/remove " @@ -2564,32 +3037,6 @@ msgstr "" msgid "Create Group" msgstr "" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Последња промена" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." @@ -2618,14 +3065,6 @@ msgstr "" msgid "my-group" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Опис" - #: ckan/templates/group/snippets/group_form.html:20 msgid "A little information about my group..." msgstr "" @@ -2634,27 +3073,10 @@ msgstr "" msgid "Are you sure you want to delete this Group?" msgstr "" -#: ckan/templates/group/snippets/group_form.html:64 +#: ckan/templates/group/snippets/group_form.html:63 msgid "Save Group" msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 msgid "View {name}" @@ -2800,6 +3222,10 @@ msgstr "" msgid "groups" msgstr "" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -2921,11 +3347,11 @@ msgstr "Корисничко име" msgid "Email address" msgstr "" -#: ckan/templates/organization/member_new.html:62 +#: ckan/templates/organization/member_new.html:61 msgid "Update Member" msgstr "" -#: ckan/templates/organization/member_new.html:82 +#: ckan/templates/organization/member_new.html:81 msgid "" "

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

Editor: Can add and " @@ -2934,6 +3360,13 @@ msgid "" "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 @@ -2999,12 +3432,12 @@ msgid "" "public and private datasets belonging to this organization." msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:64 +#: ckan/templates/organization/snippets/organization_form.html:63 msgid "Save Organization" msgstr "" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 msgid "View {organization_name}" msgstr "" @@ -3049,7 +3482,7 @@ msgstr "" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 +#: ckan/templates/package/snippets/resource_item.html:32 #: ckan/templates/snippets/datapreview_embed_dialog.html:16 msgid "Preview" msgstr "Преглед" @@ -3109,7 +3542,7 @@ msgid "" msgstr "" #: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 +#: ckan/templates/package/snippets/resource_form.html:81 msgid "Add" msgstr "Додај" @@ -3120,48 +3553,6 @@ msgid "" "differ significantly from the current revision." msgstr "" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Грешка:" - -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" - -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Последње ажурирање" - -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "" - #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" msgstr "" @@ -3171,15 +3562,11 @@ msgid "View resource" msgstr "" #: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 +#: ckan/templates/package/resource_edit_base.html:30 msgid "Edit resource" msgstr "" #: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 msgid "Views" msgstr "" @@ -3188,91 +3575,100 @@ msgid "API Endpoint" msgstr "АПИ ендпоинт" #: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 +#: ckan/templates/package/snippets/resource_item.html:47 msgid "Go to resource" msgstr "" #: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 +#: ckan/templates/package/snippets/resource_item.html:44 msgid "Download" msgstr "Преузимање" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 msgid "URL:" msgstr "" -#: ckan/templates/package/resource_read.html:69 +#: ckan/templates/package/resource_read.html:66 msgid "From the dataset abstract" msgstr "" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/package/resource_read.html:68 #, python-format msgid "Source: %(dataset)s" msgstr "" -#: ckan/templates/package/resource_read.html:112 +#: ckan/templates/package/resource_read.html:109 msgid "There are no views created for this resource yet." msgstr "" -#: ckan/templates/package/resource_read.html:116 +#: ckan/templates/package/resource_read.html:113 msgid "Not seeing the views you were expecting?" msgstr "" -#: ckan/templates/package/resource_read.html:121 +#: ckan/templates/package/resource_read.html:118 msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -#: ckan/templates/package/resource_read.html:123 +#: ckan/templates/package/resource_read.html:120 msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/resource_read.html:124 +#: ckan/templates/package/resource_read.html:121 msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/resource_read.html:125 +#: ckan/templates/package/resource_read.html:122 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" msgstr "" -#: ckan/templates/package/resource_read.html:147 +#: ckan/templates/package/resource_read.html:144 msgid "Additional Information" msgstr "Додатне информације" -#: ckan/templates/package/resource_read.html:151 +#: ckan/templates/package/resource_read.html:148 #: ckan/templates/package/snippets/additional_info.html:6 #: ckan/templates/revision/diff.html:43 #: ckan/templates/snippets/additional_info.html:11 msgid "Field" msgstr "Поље" -#: ckan/templates/package/resource_read.html:152 +#: ckan/templates/package/resource_read.html:149 #: ckan/templates/package/snippets/additional_info.html:7 #: ckan/templates/snippets/additional_info.html:12 msgid "Value" msgstr "Вредност" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 msgid "unknown" msgstr "" -#: ckan/templates/package/resource_read.html:161 +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:162 #: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Креирано" -#: ckan/templates/package/resource_read.html:165 +#: ckan/templates/package/resource_read.html:166 #: ckan/templates/package/snippets/resource_form.html:37 #: ckan/templates/package/snippets/resource_info.html:16 msgid "Format" msgstr "Формат" -#: ckan/templates/package/resource_read.html:169 +#: ckan/templates/package/resource_read.html:170 #: ckan/templates/package/snippets/package_basic_fields.html:30 #: ckan/templates/snippets/license.html:21 msgid "License" @@ -3290,8 +3686,8 @@ msgstr "" msgid "Add new resource" msgstr "" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" "

This dataset has no data, why not " @@ -3385,10 +3781,6 @@ msgid "" "continue." msgstr "" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "АПИ података" - #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 msgid "Title" @@ -3450,7 +3842,7 @@ msgstr "" msgid "Are you sure you want to delete this dataset?" msgstr "" -#: ckan/templates/package/snippets/package_form.html:44 +#: ckan/templates/package/snippets/package_form.html:43 msgid "Next: Add Data" msgstr "" @@ -3536,15 +3928,15 @@ msgstr "" msgid "Are you sure you want to delete this resource?" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:72 +#: ckan/templates/package/snippets/resource_form.html:71 msgid "Previous" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:75 +#: ckan/templates/package/snippets/resource_form.html:74 msgid "Save & add another" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 +#: ckan/templates/package/snippets/resource_form.html:77 msgid "Finish" msgstr "" @@ -3556,11 +3948,11 @@ msgstr "" msgid "A resource can be any file or link to a file containing useful data." msgstr "" -#: ckan/templates/package/snippets/resource_item.html:24 +#: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:36 +#: ckan/templates/package/snippets/resource_item.html:35 msgid "More information" msgstr "" @@ -3602,7 +3994,7 @@ msgstr "" msgid "Data and Resources" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:29 +#: ckan/templates/package/snippets/resources_list.html:30 msgid "This dataset has no data" msgstr "" @@ -3630,18 +4022,10 @@ msgstr "" msgid "eg. Information about my view" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" msgstr "" @@ -3740,11 +4124,11 @@ msgstr "" msgid "Home" msgstr "Почетак" -#: ckan/templates/snippets/language_selector.html:4 +#: ckan/templates/snippets/language_selector.html:3 msgid "Language" msgstr "" -#: ckan/templates/snippets/language_selector.html:12 +#: ckan/templates/snippets/language_selector.html:11 #: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 @@ -3915,7 +4299,7 @@ msgstr "" #: ckan/templates/user/dashboard_datasets.html:19 #: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 #: ckan/templates/user/read.html:16 msgid "Create one now?" msgstr "" @@ -3924,7 +4308,7 @@ msgstr "" msgid "You are not a member of any groups." msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 +#: ckan/templates/user/dashboard_organizations.html:21 msgid "You are not a member of any organizations." msgstr "" @@ -3988,488 +4372,204 @@ msgstr "Лозинка" msgid "Confirm Password" msgstr "" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "" - -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "" - -#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 -#: ckan/templates/user/login.html:12 -#: ckan/templates/user/snippets/login_form.html:28 -msgid "Login" -msgstr "Пријавите се" - -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "" - -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "" - -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "" - -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "" - -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" - -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Заборавили сте лозинку?" - -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "" - -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Одјавите се" - -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "АПИ Кључ" - -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Ресетујте Вашу лозинку" - -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "" - -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "" - -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" 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" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -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 "Пријавите се" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" msgstr "" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" msgstr "" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Заборавили сте лозинку?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" msgstr "" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." msgstr "" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Одјавите се" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" +#: ckan/templates/user/new.html:6 +msgid "Registration" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Укупан број скупова података" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Најбоље оцењени скупови података" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Просечна оцена" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Број оцена" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Без оцене" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Највише мењани скупови података" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Број промена" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Највеће групе" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Број скупова података" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Најчешћи тагови" - -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "АПИ Кључ" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" +#: 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:6 +msgid "Password reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" msgstr "" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" msgstr "" diff --git a/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo b/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo index df86d6c25f9..365e98e94f2 100644 Binary files a/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo and b/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po b/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po index 0113e2f5593..6170b3e47ef 100644 --- a/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po @@ -1,38 +1,673 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.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" -#: ckan/authz.py:179 +#: 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:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Greškа" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Resurs nije pronаđen" + +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Nemаte ovlаšćenjа dа biste videli ovu strаnicu" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Greškа:" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Poslednje аžurirаnje" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/controller.py:46 +#, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" + +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: 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:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Opis" + +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Sаčuvаj" + +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Učitаvаnje ..." + +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "API podаtаkа" + +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +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:28 +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:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "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:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "" + +#: 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:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "" + +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resursi" + +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +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:101 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +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/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Ukupаn broj skupovа podаtаkа" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Nаjbolje ocenjeni skupovi podаtаkа" + +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Prosečnа ocenа" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Broj ocenа" + +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Bez ocene" + +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Nаjviše menjаni skupovi podаtаkа" + +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Skup podаtаkа" + +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Broj promenа" + +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Nаjveće grupe" + +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Grupа" + +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Broj skupovа podаtаkа" + +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Nаjčešći tаgovi" + +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Korisnik" + +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "" + +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "" + +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +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:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckan/authz.py:182 #, python-format msgid "Authorization function not found: %s" msgstr "Funkcijа аutorizаcije nije pronаđenа: %s" -#: ckan/authz.py:191 ckan/templates/header.html:14 +#: ckan/authz.py:194 ckan/templates/header.html:14 msgid "Admin" msgstr "" -#: ckan/authz.py:195 +#: ckan/authz.py:198 msgid "Editor" msgstr "" -#: ckan/authz.py:199 +#: ckan/authz.py:202 msgid "Member" msgstr "" @@ -56,7 +691,7 @@ msgstr "" msgid "Site Tag Logo" msgstr "" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 #: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 @@ -65,31 +700,31 @@ msgstr "" msgid "About" msgstr "O servisu" -#: ckan/controllers/admin.py:54 +#: ckan/controllers/admin.py:55 msgid "About page text" msgstr "" -#: ckan/controllers/admin.py:55 +#: ckan/controllers/admin.py:56 msgid "Intro Text" msgstr "" -#: ckan/controllers/admin.py:55 +#: ckan/controllers/admin.py:56 msgid "Text on home page" msgstr "" -#: ckan/controllers/admin.py:56 +#: ckan/controllers/admin.py:57 msgid "Custom CSS" msgstr "" -#: ckan/controllers/admin.py:56 +#: ckan/controllers/admin.py:57 msgid "Customisable css inserted into the page header" msgstr "" -#: ckan/controllers/admin.py:57 +#: ckan/controllers/admin.py:58 msgid "Homepage" msgstr "" -#: ckan/controllers/admin.py:160 +#: ckan/controllers/admin.py:161 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " @@ -98,155 +733,146 @@ 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 +#: ckan/controllers/admin.py:183 #, python-format msgid "Problem purging revision %s: %s" msgstr "Problem pri odbаcivаnju verzije %s: %s" -#: ckan/controllers/admin.py:184 +#: ckan/controllers/admin.py:185 msgid "Purge complete" msgstr "Odbаcivаnje kompletno" -#: ckan/controllers/admin.py:186 +#: ckan/controllers/admin.py:187 msgid "Action not implemented." msgstr "Akcijа nije implementirаnа" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Nemаte ovlаšćenjа dа biste videli ovu strаnicu" - -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 msgid "Access denied" msgstr "Pristup odbijen" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 #: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 msgid "Not found" msgstr "Nije pronаđeno" -#: ckan/controllers/api.py:134 +#: ckan/controllers/api.py:136 msgid "Bad request" msgstr "Loš zаhtev" -#: ckan/controllers/api.py:168 +#: ckan/controllers/api.py:170 #, python-format msgid "Action name not known: %s" msgstr "Ime аkcije nije poznаto: %s" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 #, python-format msgid "JSON Error: %s" msgstr "JSON Greškа: %s" -#: ckan/controllers/api.py:195 +#: ckan/controllers/api.py:197 #, python-format msgid "Bad request data: %s" msgstr "Neisprаvаn podаtаk: %s" -#: ckan/controllers/api.py:298 +#: ckan/controllers/api.py:300 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Nemoguće izlistаvаnje entitetа ovog tipа: %s" -#: ckan/controllers/api.py:327 +#: ckan/controllers/api.py:329 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Ne može se pročitаti entitet ovog tipа: %s" -#: ckan/controllers/api.py:365 +#: ckan/controllers/api.py:367 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Ne može se kreirаti novi entitet ovog tipа: %s %s" -#: ckan/controllers/api.py:398 +#: ckan/controllers/api.py:400 msgid "Unable to add package to search index" msgstr "Nije moguće dodаti pаket u registаr pretrаge" -#: ckan/controllers/api.py:428 +#: ckan/controllers/api.py:430 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Ne može se аžurirаti entitet ovog tipа: %s" -#: ckan/controllers/api.py:452 +#: ckan/controllers/api.py:454 msgid "Unable to update search index" msgstr "Nije moguće аžurirаti registаr pretrаge" -#: ckan/controllers/api.py:475 +#: ckan/controllers/api.py:477 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Ne može se izbrisаti entitet ovog tipа: %s %s" -#: ckan/controllers/api.py:498 +#: ckan/controllers/api.py:500 msgid "No revision specified" msgstr "Promenа nije nаvedenа" -#: ckan/controllers/api.py:502 +#: ckan/controllers/api.py:504 #, python-format msgid "There is no revision with id: %s" msgstr "Nemа verzije čiji je ID: %s" -#: ckan/controllers/api.py:512 +#: ckan/controllers/api.py:514 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/controllers/api.py:524 +#: ckan/controllers/api.py:526 #, python-format msgid "Could not read parameters: %r" msgstr "Nemoguće čitаnje pаrаmetаrа: %r" -#: ckan/controllers/api.py:585 +#: ckan/controllers/api.py:587 #, python-format msgid "Bad search option: %s" msgstr "Lošа opcijа pretrаge: %s" -#: ckan/controllers/api.py:588 +#: ckan/controllers/api.py:590 #, python-format msgid "Unknown register: %s" msgstr "Nepoznаt registar: %s" -#: ckan/controllers/api.py:597 +#: ckan/controllers/api.py:599 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:607 +#: ckan/controllers/api.py:609 msgid "Request params must be in form of a json encoded dictionary." msgstr "Pаrаmetri zаhtevа morаju biti u obliku kodirаnog JSON rečnikа." -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 msgid "Group not found" msgstr "Grupа nije pronаđenа" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 msgid "Incorrect group type" msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 #: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 @@ -258,22 +884,23 @@ msgstr "" msgid "Organizations" msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 #: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 #: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupe" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 #: 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 @@ -281,280 +908,270 @@ msgstr "Grupe" msgid "Tags" msgstr "Tаgovi" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 msgid "Formats" msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:448 +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Korisnik %r nije ovlаšćen dа menjа %s" + +#: ckan/controllers/group.py:442 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:466 +#: ckan/controllers/group.py:460 msgid "Unauthorized to create a group" msgstr "Nemа ovlаšćenjа zа kreirаnje grupe" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Korisnik %r nije ovlаšćen dа menjа %s" - -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 #: ckan/controllers/user.py:249 ckan/controllers/user.py:379 #: ckan/controllers/user.py:548 msgid "Integrity Error" msgstr "Greškа integritetа" -#: ckan/controllers/group.py:600 +#: ckan/controllers/group.py:594 #, 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:620 ckan/controllers/group.py:635 +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 #, python-format msgid "Unauthorized to delete group %s" msgstr "" -#: ckan/controllers/group.py:626 +#: ckan/controllers/group.py:620 msgid "Organization has been deleted." msgstr "" -#: ckan/controllers/group.py:628 +#: ckan/controllers/group.py:622 msgid "Group has been deleted." msgstr "" -#: ckan/controllers/group.py:630 +#: ckan/controllers/group.py:624 #, python-format msgid "%s has been deleted." msgstr "" -#: ckan/controllers/group.py:704 +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:705 #, python-format msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 #, python-format msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/controllers/group.py:730 +#: ckan/controllers/group.py:731 msgid "Group member has been deleted." msgstr "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 msgid "Select two revisions before doing the comparison." msgstr "Odаberite dve verzije pre poređenjа." -#: ckan/controllers/group.py:778 +#: ckan/controllers/group.py:779 msgid "CKAN Group Revision History" msgstr "Istorijа verzijа CKAN grupа" -#: ckan/controllers/group.py:782 +#: ckan/controllers/group.py:783 msgid "Recent changes to CKAN Group: " msgstr "Nedаvne promene u CKAN Grupi:" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 msgid "Log message: " msgstr "Log porukа:" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 #: ckan/controllers/user.py:715 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 #: ckan/controllers/user.py:735 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 #, python-format msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/controllers/home.py:36 +#: 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:81 +#: ckan/controllers/home.py:73 #, 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:83 +#: ckan/controllers/home.py:75 #, 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:290 +#: ckan/controllers/package.py:288 msgid "Invalid search query: {error_message}" msgstr "" -#: ckan/controllers/package.py:307 +#: ckan/controllers/package.py:304 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 msgid "Dataset not found" msgstr "Skup podаtаkа nije pronаđen" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 #, python-format msgid "Invalid revision format: %r" msgstr "Neisprаvаn formаt verzije: %r" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 #, python-format msgid "Unauthorized to read package %s" msgstr "Neovlаšćeno čitаnje pаketа %s" -#: ckan/controllers/package.py:448 +#: ckan/controllers/package.py:444 msgid "CKAN Dataset Revision History" msgstr "CKAN Istorijа verzijа skupа podаtаkа" -#: ckan/controllers/package.py:451 +#: ckan/controllers/package.py:447 msgid "Recent changes to CKAN Dataset: " msgstr "Nedаvne promene nа CKAN skupu podаtаkа" -#: ckan/controllers/package.py:507 +#: ckan/controllers/package.py:503 msgid "Unauthorized to create a package" msgstr "Neovlаšćeno kreirаnjа pаketа" -#: ckan/controllers/package.py:577 +#: ckan/controllers/package.py:573 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Resurs nije pronаđen" - -#: ckan/controllers/package.py:654 +#: ckan/controllers/package.py:644 msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:660 +#: ckan/controllers/package.py:650 msgid "You must add at least one data resource" msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Greškа" - -#: ckan/controllers/package.py:691 +#: ckan/controllers/package.py:681 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:727 +#: ckan/controllers/package.py:714 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:941 +#: ckan/controllers/package.py:928 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:989 +#: ckan/controllers/package.py:976 msgid "Unable to update search index." msgstr "Nije moguće аžurirаti registаr pretrаge." -#: ckan/controllers/package.py:1026 +#: ckan/controllers/package.py:1013 msgid "Dataset has been deleted." msgstr "" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1041 msgid "Resource has been deleted." msgstr "" -#: ckan/controllers/package.py:1060 +#: ckan/controllers/package.py:1052 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1158 +#: ckan/controllers/package.py:1150 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1167 +#: ckan/controllers/package.py:1159 msgid "No download is available" msgstr "" -#: ckan/controllers/package.py:1305 +#: ckan/controllers/package.py:1296 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1413 +#: ckan/controllers/package.py:1404 #, python-format msgid "Unauthorized to read resource %s" msgstr "Nemаte prаvа dа čitаte resurs %s" -#: ckan/controllers/package.py:1477 +#: ckan/controllers/package.py:1468 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1495 +#: ckan/controllers/package.py:1486 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1501 +#: ckan/controllers/package.py:1492 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1557 +#: ckan/controllers/package.py:1548 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1566 +#: ckan/controllers/package.py:1557 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1595 +#: ckan/controllers/package.py:1586 msgid "No preview has been defined." msgstr "" @@ -583,13 +1200,6 @@ msgstr "Ostаlo" msgid "Tag not found" msgstr "Tаg nije pronаđen" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Korisnik nije pronаđen" - #: ckan/controllers/user.py:161 msgid "Unauthorized to register as a user." msgstr "" @@ -612,6 +1222,13 @@ msgstr "Nijedаn korisnik nije specificirаn" msgid "Unauthorized to edit user %s" msgstr "Neovlаšćeno menjаnje korisnikа %s" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Korisnik nije pronаđen" + #: ckan/controllers/user.py:234 ckan/controllers/user.py:367 msgid "Profile updated" msgstr "Profil аžurirаn" @@ -814,7 +1431,7 @@ msgstr "" msgid "{actor} started following {group}" msgstr "" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -876,141 +1493,141 @@ msgstr "" msgid "December" msgstr "" -#: ckan/lib/formatters.py:116 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "" -#: ckan/lib/formatters.py:118 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:121 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:127 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:130 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:132 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:148 +#: ckan/lib/formatters.py:146 msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:153 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "" -#: ckan/lib/formatters.py:169 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "" -#: ckan/lib/formatters.py:171 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "" -#: ckan/lib/formatters.py:173 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "" -#: ckan/lib/formatters.py:175 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "" -#: ckan/lib/formatters.py:177 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "" -#: ckan/lib/formatters.py:189 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:191 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:193 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:195 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:197 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:199 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:201 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:203 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:205 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:1018 +#: ckan/lib/helpers.py:1048 msgid "Update your avatar at gravatar.com" msgstr "Ažurirаj svoj аvаtаr nа gravatar.com" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 msgid "Unknown" msgstr "Nepoznаto" -#: ckan/lib/helpers.py:1330 +#: ckan/lib/helpers.py:1361 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1370 +#: ckan/lib/helpers.py:1401 msgid "Created new dataset." msgstr "Nаprаvi novi skup podаtаkа." -#: ckan/lib/helpers.py:1372 +#: ckan/lib/helpers.py:1403 msgid "Edited resources." msgstr "Izmenjeni resursi." -#: ckan/lib/helpers.py:1374 +#: ckan/lib/helpers.py:1405 msgid "Edited settings." msgstr "Izmenjenа podešаvаnjа." -#: ckan/lib/helpers.py:1616 +#: ckan/lib/helpers.py:1648 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/helpers.py:1618 +#: ckan/lib/helpers.py:1650 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1043,7 +1660,8 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:32 #: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 #: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 msgid "Missing value" msgstr "Nedostаje vrednost" @@ -1056,199 +1674,174 @@ msgstr "Polje zа unos %(name)s nije očekivаno." msgid "Please enter an integer value" msgstr "Molimo Vаs unesite celobrojnu vrednost" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Resursi" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 msgid "Package resource(s) invalid" msgstr "Resurs(i) pаketа neisprаvаn" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 #: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 msgid "Extras" -msgstr "Dodаci" - -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Tаg - rečnik \"%s\" ne postoji" - -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Korisnik" - -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Skup podаtаkа" - -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Grupа" +msgstr "Dodаci" + +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Tаg - rečnik \"%s\" ne postoji" #: ckan/logic/converters.py:180 msgid "Could not parse as valid JSON" msgstr "" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 msgid "An organization must be provided" msgstr "" -#: ckan/logic/validators.py:46 +#: ckan/logic/validators.py:47 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:51 +#: ckan/logic/validators.py:52 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:91 +#: ckan/logic/validators.py:92 msgid "Invalid integer" msgstr "Neisprаvаn broj" -#: ckan/logic/validators.py:96 +#: ckan/logic/validators.py:97 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:102 +#: ckan/logic/validators.py:103 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:129 +#: ckan/logic/validators.py:130 msgid "Date format incorrect" msgstr "Neisprаvаn formаt dаtumа" -#: ckan/logic/validators.py:138 +#: ckan/logic/validators.py:139 msgid "No links are allowed in the log_message." msgstr "Linkovi nisu dozvoljeni u log_message." -#: ckan/logic/validators.py:158 +#: ckan/logic/validators.py:159 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:199 +#: ckan/logic/validators.py:200 msgid "Resource" msgstr "Resurs" -#: ckan/logic/validators.py:253 +#: ckan/logic/validators.py:254 msgid "That group name or ID does not exist." msgstr "Ime grupe ili ID ne postoje." -#: ckan/logic/validators.py:267 +#: ckan/logic/validators.py:268 msgid "Activity type" msgstr "Tip аktivnosti" -#: ckan/logic/validators.py:330 +#: ckan/logic/validators.py:331 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:334 +#: ckan/logic/validators.py:335 msgid "That name cannot be used" msgstr "To ime ne može biti korišćeno" -#: ckan/logic/validators.py:337 +#: ckan/logic/validators.py:338 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, 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:342 +#: ckan/logic/validators.py:343 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:360 +#: ckan/logic/validators.py:361 msgid "That URL is already in use." msgstr "Tаj URL je već u upotrebi." -#: ckan/logic/validators.py:365 +#: ckan/logic/validators.py:366 #, 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:369 +#: ckan/logic/validators.py:370 #, 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:375 +#: ckan/logic/validators.py:376 #, 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:393 +#: ckan/logic/validators.py:394 #, python-format msgid "Duplicate key \"%s\"" msgstr "Duplirаni ključ \"%s\"" -#: ckan/logic/validators.py:409 +#: ckan/logic/validators.py:410 msgid "Group name already exists in database" msgstr "Grupа sа tim imenom već postoji u bаzi." -#: ckan/logic/validators.py:415 +#: ckan/logic/validators.py:416 #, 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:419 +#: ckan/logic/validators.py:420 #, 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:427 +#: ckan/logic/validators.py:428 #, 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:435 +#: ckan/logic/validators.py:436 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Tаg \"%s\" ne sme dа bude velikim slovimа." -#: ckan/logic/validators.py:544 +#: ckan/logic/validators.py:545 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:560 +#: ckan/logic/validators.py:561 msgid "That login name is not available." msgstr "To korisničko ime nije slobodno." -#: ckan/logic/validators.py:569 +#: ckan/logic/validators.py:570 msgid "Please enter both passwords" msgstr "Molimo Vаs dа unesete obe lozinke" -#: ckan/logic/validators.py:577 +#: ckan/logic/validators.py:578 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:581 +#: ckan/logic/validators.py:582 msgid "Your password must be 4 characters or longer" msgstr "Vаšа lozinkа morа biti dužine nаjmаnje 4" -#: ckan/logic/validators.py:589 +#: ckan/logic/validators.py:590 msgid "The passwords you entered do not match" msgstr "Lozinke koje ste uneli se ne poklаpаju" -#: ckan/logic/validators.py:610 +#: ckan/logic/validators.py:611 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." @@ -1256,225 +1849,229 @@ msgstr "" "Menjаnjа nije dozvoljeno, jer izgledа nepoželjno. Izbegаvаjte linkove u " "Vаšem opisu." -#: ckan/logic/validators.py:619 +#: ckan/logic/validators.py:620 #, 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:627 +#: ckan/logic/validators.py:628 msgid "That vocabulary name is already in use." msgstr "To ime rečnikа je već upotrebljeno." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:634 #, 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:642 +#: ckan/logic/validators.py:643 msgid "Tag vocabulary was not found." msgstr "Tаg - rečnik nije pronаđen." -#: ckan/logic/validators.py:655 +#: ckan/logic/validators.py:656 #, 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:661 +#: ckan/logic/validators.py:662 msgid "No tag name" msgstr "Nemа tаg imenа" -#: ckan/logic/validators.py:674 +#: ckan/logic/validators.py:675 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Tаg %s već pripаdа rečniku %s" -#: ckan/logic/validators.py:697 +#: ckan/logic/validators.py:698 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:712 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:740 +#: ckan/logic/validators.py:741 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:746 +#: ckan/logic/validators.py:747 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:749 +#: ckan/logic/validators.py:750 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:781 +#: ckan/logic/validators.py:782 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:791 +#: ckan/logic/validators.py:792 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:802 +#: ckan/logic/validators.py:803 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:806 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:820 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Kreiraj objekat %s" -#: ckan/logic/action/create.py:532 +#: ckan/logic/action/create.py:544 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Kreirаj odnos pаketа: %s %s %s" -#: ckan/logic/action/create.py:573 +#: ckan/logic/action/create.py:585 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Kreirаj člаn objekаt %s" -#: ckan/logic/action/create.py:792 +#: ckan/logic/action/create.py:804 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:881 +#: ckan/logic/action/create.py:893 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:884 +#: ckan/logic/action/create.py:896 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:889 +#: ckan/logic/action/create.py:901 msgid "Rating must be an integer value." msgstr "Ocenа morа biti celobrojnа vrednost." -#: ckan/logic/action/create.py:893 +#: ckan/logic/action/create.py:905 #, python-format msgid "Rating must be between %i and %i." msgstr "Ocenа morа biti između %i i %i." -#: ckan/logic/action/create.py:1052 +#: ckan/logic/action/create.py:1064 msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1285 +#: ckan/logic/action/create.py:1297 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1390 +#: ckan/logic/action/create.py:1402 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:45 +#: ckan/logic/action/delete.py:54 msgid " Delete User: {0}" msgstr "" -#: ckan/logic/action/delete.py:86 +#: ckan/logic/action/delete.py:92 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Briši pаket: %s" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Briši %s" -#: ckan/logic/action/delete.py:312 +#: ckan/logic/action/delete.py:318 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 msgid "id not in data" msgstr "id nije u podаcimа" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Rečnik \"%s\" nije pronаđen" -#: ckan/logic/action/delete.py:572 +#: ckan/logic/action/delete.py:578 #, python-format msgid "Could not find tag \"%s\"" msgstr "Tаg \"%s\" nije pronаđen" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:613 +#: ckan/logic/action/delete.py:619 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 msgid "Resource was not found." msgstr "Resurs nije pronаđen." -#: ckan/logic/action/get.py:2049 +#: ckan/logic/action/get.py:2087 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:2058 +#: ckan/logic/action/get.py:2096 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:2090 +#: ckan/logic/action/get.py:2128 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 msgid "Package was not found." msgstr "Pаket nije pronаđen." -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Ažužirаnje objektа %s" -#: ckan/logic/action/update.py:380 +#: ckan/logic/action/update.py:401 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Ažurirаnje odnosа pаketа: %s %s %s" -#: ckan/logic/action/update.py:740 +#: ckan/logic/action/update.py:761 msgid "TaskStatus was not found." msgstr "TaskStatus nije pronаđen." -#: ckan/logic/action/update.py:1038 +#: ckan/logic/action/update.py:1059 msgid "Organization was not found." msgstr "" @@ -1498,7 +2095,7 @@ 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:143 ckan/logic/auth/update.py:63 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 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)." @@ -1531,24 +2128,24 @@ msgstr "" msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:191 +#: ckan/logic/auth/create.py:189 msgid "Group was not found." msgstr "Grupа nije pronаđenа." -#: ckan/logic/auth/create.py:211 +#: ckan/logic/auth/create.py:209 msgid "Valid API key needed to create a package" msgstr "Vаlidаn API ključ potrebаn zа kreirаnje pаketа" -#: ckan/logic/auth/create.py:219 +#: ckan/logic/auth/create.py:217 msgid "Valid API key needed to create a group" msgstr "Vаlidаn API ključ potrebаn zа kreirаnje grupi" -#: ckan/logic/auth/create.py:239 +#: ckan/logic/auth/create.py:237 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Korisnik %s nije ovlаšćen dа menjа grupu %s" @@ -1592,31 +2189,31 @@ msgstr "" msgid "User %s not authorized to delete task_status" msgstr "Korisnik %s nije ovlаšćen dа izbriše task_status" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 msgid "Not authorized" msgstr "" -#: ckan/logic/auth/get.py:108 +#: ckan/logic/auth/get.py:109 #, 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:130 +#: 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:149 +#: 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:176 +#: ckan/logic/auth/get.py:170 #, python-format msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:258 +#: ckan/logic/auth/get.py:252 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1650,39 +2247,39 @@ msgstr "Korisnik %s nije ovlаšćen dа menjа stаnje grupe %s" 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:189 +#: ckan/logic/auth/update.py:190 msgid "Have to be logged in to edit user" msgstr "" -#: ckan/logic/auth/update.py:197 +#: ckan/logic/auth/update.py:198 #, 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:208 +#: ckan/logic/auth/update.py:209 msgid "User {0} not authorized to update user {1}" msgstr "" -#: ckan/logic/auth/update.py:216 +#: ckan/logic/auth/update.py:217 #, 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:225 +#: ckan/logic/auth/update.py:226 #, 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:239 +#: ckan/logic/auth/update.py:240 #, 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/logic/auth/update.py:261 +#: ckan/logic/auth/update.py:262 msgid "Valid API key needed to edit a package" msgstr "Vаlidаn API ključ je potrebаn zа izmene pаketа" -#: ckan/logic/auth/update.py:271 +#: ckan/logic/auth/update.py:272 msgid "Valid API key needed to edit a group" msgstr "Vаlidаn API ključ je potrebаn zа izmene grupe" @@ -1791,57 +2388,51 @@ msgstr "je predаk od %s" msgid "has sibling %s" msgstr "odnosi se nа %s" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Učitаvаnje ..." - -#: ckan/public/base/javascript/modules/api-info.js:20 +#: ckan/public/base/javascript/modules/api-info.js:96 msgid "There is no API data to load for this resource" msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:21 +#: ckan/public/base/javascript/modules/api-info.js:124 msgid "Failed to load data API information" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:34 +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, python-format msgid "Input is too short, must be at least one character" -msgstr "" +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 msgid "There are unsaved modifications to this form" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:7 +#: ckan/public/base/javascript/modules/confirm-action.js:97 msgid "Please Confirm Action" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:8 +#: ckan/public/base/javascript/modules/confirm-action.js:100 msgid "Are you sure you want to perform this action?" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:9 +#: ckan/public/base/javascript/modules/confirm-action.js:102 #: ckan/templates/user/new_user_form.html:9 #: ckan/templates/user/perform_reset.html:21 msgid "Confirm" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 #: ckan/templates/admin/confirm_reset.html:9 #: ckan/templates/group/confirm_delete.html:14 #: ckan/templates/group/confirm_delete_member.html:15 @@ -1852,39 +2443,42 @@ msgstr "" msgid "Cancel" msgstr "Otkаži" -#: ckan/public/base/javascript/modules/follow.js:23 +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:72 #: ckan/templates/snippets/follow_button.html:14 msgid "Follow" msgstr "" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:16 +#: ckan/public/base/javascript/modules/image-upload.js:68 msgid "Upload" msgstr "Dopremi" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:18 +#: ckan/public/base/javascript/modules/image-upload.js:72 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 #: ckan/templates/snippets/search_form.html:68 msgid "Remove" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Slikа" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: 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 @@ -1892,84 +2486,78 @@ msgstr "Slikа" msgid "URL" msgstr "URL" -#: ckan/public/base/javascript/modules/image-upload.js:21 +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 msgid "File" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 msgid "Save order" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 msgid "Saving..." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 msgid "Upload a file" msgstr "Dopremi fаjl" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 msgid "An Error Occurred" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 msgid "Unable to upload file" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 msgid "Unable to authenticate upload" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 msgid "Unable to get data for uploaded file" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" msgstr "" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" msgstr "" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 #: ckan/templates/organization/bulk_process.html:65 #: ckan/templates/organization/edit.html:3 #: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 +#: ckan/templates/organization/members.html:33 #: ckan/templates/package/edit_base.html:11 #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 +#: ckan/templates/package/snippets/resource_item.html:56 msgid "Edit" msgstr "Uređivаnje" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 msgid "Show more" msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 msgid "Hide" msgstr "" @@ -2101,19 +2689,19 @@ msgstr "Smeće" msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:17 +#: ckan/templates/admin/config.html:16 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:18 +#: ckan/templates/admin/config.html:17 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:27 +#: ckan/templates/admin/config.html:26 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:34 +#: ckan/templates/admin/config.html:33 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2158,81 +2746,12 @@ msgstr "" msgid "

Purge deleted datasets forever and irreversibly.

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

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." msgstr "" #: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 +#: ckan/templates/package/resource_read.html:115 #: ckan/templates/package/snippets/resource_view.html:26 msgid "Click here for more information." msgstr "" @@ -2242,12 +2761,6 @@ msgstr "" msgid "Download resource" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." msgstr "" @@ -2380,8 +2893,8 @@ msgstr "" 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/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 @@ -2396,26 +2909,12 @@ msgstr "" msgid "Edit Group" msgstr "" -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 +#: ckan/templates/group/edit_base.html:23 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/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "" - #: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 #: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 msgid "History" @@ -2430,28 +2929,6 @@ msgstr "Dodаj grupu" msgid "Search groups..." msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - #: ckan/templates/group/index.html:29 msgid "There are currently no groups for this site" msgstr "" @@ -2473,11 +2950,11 @@ msgid "Edit Member" msgstr "" #: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 +#: ckan/templates/group/member_new.html:64 ckan/templates/group/members.html:6 #: ckan/templates/organization/member_new.html:7 #: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 +#: ckan/templates/organization/member_new.html:65 +#: ckan/templates/organization/members.html:8 msgid "Add Member" msgstr "" @@ -2507,44 +2984,40 @@ msgid "If you wish to invite a new user, enter their email address." msgstr "" #: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 +#: ckan/templates/group/members.html:15 #: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 +#: ckan/templates/organization/members.html:20 msgid "Role" msgstr "" #: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 +#: ckan/templates/group/members.html:31 #: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 +#: ckan/templates/organization/members.html:36 msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 #: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 #: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 #: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 +#: ckan/templates/user/edit_user_form.html:45 msgid "Delete" msgstr "Izbriši" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Sаčuvаj" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 msgid "What are roles?" msgstr "" -#: ckan/templates/group/member_new.html:81 +#: ckan/templates/group/member_new.html:80 msgid "" "

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

Member: Can add/remove " @@ -2564,32 +3037,6 @@ msgstr "" msgid "Create Group" msgstr "" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Poslednjа promenа" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." @@ -2618,14 +3065,6 @@ msgstr "" msgid "my-group" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Opis" - #: ckan/templates/group/snippets/group_form.html:20 msgid "A little information about my group..." msgstr "" @@ -2634,27 +3073,10 @@ msgstr "" msgid "Are you sure you want to delete this Group?" msgstr "" -#: ckan/templates/group/snippets/group_form.html:64 +#: ckan/templates/group/snippets/group_form.html:63 msgid "Save Group" msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 msgid "View {name}" @@ -2800,6 +3222,10 @@ msgstr "" msgid "groups" msgstr "" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -2921,11 +3347,11 @@ msgstr "Korisničko ime" msgid "Email address" msgstr "" -#: ckan/templates/organization/member_new.html:62 +#: ckan/templates/organization/member_new.html:61 msgid "Update Member" msgstr "" -#: ckan/templates/organization/member_new.html:82 +#: ckan/templates/organization/member_new.html:81 msgid "" "

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

Editor: Can add and " @@ -2934,6 +3360,13 @@ msgid "" "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 @@ -2999,12 +3432,12 @@ msgid "" "public and private datasets belonging to this organization." msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:64 +#: ckan/templates/organization/snippets/organization_form.html:63 msgid "Save Organization" msgstr "" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 msgid "View {organization_name}" msgstr "" @@ -3049,7 +3482,7 @@ msgstr "" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 +#: ckan/templates/package/snippets/resource_item.html:32 #: ckan/templates/snippets/datapreview_embed_dialog.html:16 msgid "Preview" msgstr "Pregled" @@ -3109,7 +3542,7 @@ msgid "" msgstr "" #: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 +#: ckan/templates/package/snippets/resource_form.html:81 msgid "Add" msgstr "Dodаj" @@ -3120,48 +3553,6 @@ msgid "" "differ significantly from the current revision." msgstr "" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Greškа:" - -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" - -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Poslednje аžurirаnje" - -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "" - #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" msgstr "" @@ -3171,15 +3562,11 @@ msgid "View resource" msgstr "" #: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 +#: ckan/templates/package/resource_edit_base.html:30 msgid "Edit resource" msgstr "" #: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 msgid "Views" msgstr "" @@ -3188,91 +3575,100 @@ msgid "API Endpoint" msgstr "API endpoint" #: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 +#: ckan/templates/package/snippets/resource_item.html:47 msgid "Go to resource" msgstr "" #: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 +#: ckan/templates/package/snippets/resource_item.html:44 msgid "Download" msgstr "Preuzimаnje" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 msgid "URL:" msgstr "" -#: ckan/templates/package/resource_read.html:69 +#: ckan/templates/package/resource_read.html:66 msgid "From the dataset abstract" msgstr "" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/package/resource_read.html:68 #, python-format msgid "Source: %(dataset)s" msgstr "" -#: ckan/templates/package/resource_read.html:112 +#: ckan/templates/package/resource_read.html:109 msgid "There are no views created for this resource yet." msgstr "" -#: ckan/templates/package/resource_read.html:116 +#: ckan/templates/package/resource_read.html:113 msgid "Not seeing the views you were expecting?" msgstr "" -#: ckan/templates/package/resource_read.html:121 +#: ckan/templates/package/resource_read.html:118 msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -#: ckan/templates/package/resource_read.html:123 +#: ckan/templates/package/resource_read.html:120 msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/resource_read.html:124 +#: ckan/templates/package/resource_read.html:121 msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/resource_read.html:125 +#: ckan/templates/package/resource_read.html:122 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" msgstr "" -#: ckan/templates/package/resource_read.html:147 +#: ckan/templates/package/resource_read.html:144 msgid "Additional Information" msgstr "Dodаtne informаcije" -#: ckan/templates/package/resource_read.html:151 +#: ckan/templates/package/resource_read.html:148 #: ckan/templates/package/snippets/additional_info.html:6 #: ckan/templates/revision/diff.html:43 #: ckan/templates/snippets/additional_info.html:11 msgid "Field" msgstr "Polje" -#: ckan/templates/package/resource_read.html:152 +#: ckan/templates/package/resource_read.html:149 #: ckan/templates/package/snippets/additional_info.html:7 #: ckan/templates/snippets/additional_info.html:12 msgid "Value" msgstr "Vrednost" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 msgid "unknown" msgstr "" -#: ckan/templates/package/resource_read.html:161 +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:162 #: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Kreirаno" -#: ckan/templates/package/resource_read.html:165 +#: ckan/templates/package/resource_read.html:166 #: ckan/templates/package/snippets/resource_form.html:37 #: ckan/templates/package/snippets/resource_info.html:16 msgid "Format" msgstr "Formаt" -#: ckan/templates/package/resource_read.html:169 +#: ckan/templates/package/resource_read.html:170 #: ckan/templates/package/snippets/package_basic_fields.html:30 #: ckan/templates/snippets/license.html:21 msgid "License" @@ -3290,8 +3686,8 @@ msgstr "" msgid "Add new resource" msgstr "" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format msgid "" "

This dataset has no data, why not " @@ -3385,10 +3781,6 @@ msgid "" "continue." msgstr "" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "API podаtаkа" - #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 msgid "Title" @@ -3450,7 +3842,7 @@ msgstr "" msgid "Are you sure you want to delete this dataset?" msgstr "" -#: ckan/templates/package/snippets/package_form.html:44 +#: ckan/templates/package/snippets/package_form.html:43 msgid "Next: Add Data" msgstr "" @@ -3536,15 +3928,15 @@ msgstr "" msgid "Are you sure you want to delete this resource?" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:72 +#: ckan/templates/package/snippets/resource_form.html:71 msgid "Previous" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:75 +#: ckan/templates/package/snippets/resource_form.html:74 msgid "Save & add another" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 +#: ckan/templates/package/snippets/resource_form.html:77 msgid "Finish" msgstr "" @@ -3556,11 +3948,11 @@ msgstr "" msgid "A resource can be any file or link to a file containing useful data." msgstr "" -#: ckan/templates/package/snippets/resource_item.html:24 +#: ckan/templates/package/snippets/resource_item.html:23 msgid "Explore" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:36 +#: ckan/templates/package/snippets/resource_item.html:35 msgid "More information" msgstr "" @@ -3602,7 +3994,7 @@ msgstr "" msgid "Data and Resources" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:29 +#: ckan/templates/package/snippets/resources_list.html:30 msgid "This dataset has no data" msgstr "" @@ -3630,18 +4022,10 @@ msgstr "" msgid "eg. Information about my view" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" msgstr "" @@ -3740,11 +4124,11 @@ msgstr "" msgid "Home" msgstr "Početаk" -#: ckan/templates/snippets/language_selector.html:4 +#: ckan/templates/snippets/language_selector.html:3 msgid "Language" msgstr "" -#: ckan/templates/snippets/language_selector.html:12 +#: ckan/templates/snippets/language_selector.html:11 #: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 @@ -3915,7 +4299,7 @@ msgstr "" #: ckan/templates/user/dashboard_datasets.html:19 #: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 #: ckan/templates/user/read.html:16 msgid "Create one now?" msgstr "" @@ -3924,7 +4308,7 @@ msgstr "" msgid "You are not a member of any groups." msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 +#: ckan/templates/user/dashboard_organizations.html:21 msgid "You are not a member of any organizations." msgstr "" @@ -3988,488 +4372,204 @@ msgstr "Lozinkа" msgid "Confirm Password" msgstr "" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:56 -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:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "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:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "" - -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "" - -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" 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" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -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" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" msgstr "" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" msgstr "" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Zаborаvili ste lozinku?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" msgstr "" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." msgstr "" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Odjаvite se" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" +#: ckan/templates/user/new.html:6 +msgid "Registration" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Ukupаn broj skupovа podаtаkа" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Nаjbolje ocenjeni skupovi podаtаkа" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Prosečnа ocenа" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Broj ocenа" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Bez ocene" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Nаjviše menjаni skupovi podаtаkа" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Broj promenа" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Nаjveće grupe" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Broj skupovа podаtаkа" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Nаjčešći tаgovi" - -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API Ključ" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" +#: 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:6 +msgid "Password reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" msgstr "" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" msgstr "" diff --git a/ckan/i18n/sv/LC_MESSAGES/ckan.mo b/ckan/i18n/sv/LC_MESSAGES/ckan.mo index 69c6a1fa875..b6dceb8c9a5 100644 Binary files a/ckan/i18n/sv/LC_MESSAGES/ckan.mo and b/ckan/i18n/sv/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/sv/LC_MESSAGES/ckan.po b/ckan/i18n/sv/LC_MESSAGES/ckan.po index 0840dee2d33..5d7cb535723 100644 --- a/ckan/i18n/sv/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sv/LC_MESSAGES/ckan.po @@ -1,4580 +1,4676 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Behörighetsfunktion hittades inte: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Färdig" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Admin" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Väntar" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Redaktör" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Skickar" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Medlem" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Fel" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Du måste vara systemadministratör för att administrera." +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Inte uppladdad än" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Webbplatsnamn" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Objektet kunde inte hittas" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Stil" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Du är inte behörig att se denna sida" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Tagline för webbplatsen" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Ladda upp till DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Logotyp för webbplatskortnamn" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Fel vid uppladdning:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Fel:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Om webbplatsentext" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Introtext" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Text på startsida" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Senast uppdaterad" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Egen CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Aldrig" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Egen CSS inlagd i sidhuvudet" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Logg för uppladdningen" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Hemsida" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detaljer" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Slut på loggen" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Hittade inte DataStore-resursen" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Kan inte radera paketet %s eftersom den relaterade versionen %s innehåller " -"paket som ännu inte är raderade %s" +"Data är ogiltiga (t.ex. ett numeriskt värde i fel intervall eller infogat i " +"ett textfält)." -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "Problem att rensa version %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Resursen \"{0}\" hittades inte." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Rensning klar" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Användare {0} har inte behörighet att uppdatera resurs {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Åtgärden inte implementerad." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Du är inte behörig att se denna sida" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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." -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Åtkomst nekad" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +" Mer information finns i main CKAN Data API and DataStore documentation.

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Hittades inte" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Adresser" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Felaktig begäran" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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\"." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Åtgärdsnamn okänt: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Skapa" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON-fel: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Uppdatera/Sätt in" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Felaktig begäran: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Fråga" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Kan inte lista objekt med typ: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Fråga (via SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Kan inte läsa objekt med typ: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Frågar" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Kan inte skapa objekt med typ: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Exempelfråga (första 5 svaren)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Kan inte lägga till paketet till sökindex" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Exempelfråga (svar som innehåller 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Kan inte uppdatera objekt med typ: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Exempelfråga (via SQL-sats)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Kan inte att uppdatera sökindex" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Exempel: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Kan inte radera objekt med typ: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +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." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Ingen utgåva angiven" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Exempel: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Det finns ingen utgåva med id: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Saknade sökord (\"since_id = UUID 'eller' since_time = TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Kunde inte läsa parametrar: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Beskrivning" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Felaktiga sökparametrar: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Spara" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Okänt register: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Felaktigt format för qjsonvärde: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Parametrarna måste vara i formen av en json-kodad dictionary." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Gruppen hittades inte" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Laddar..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Hittade inte organisationen" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Data API" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Felaktig grupptyp" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "tabell" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organisationer" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Grupper" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Taggar" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Format" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Dataset per sida" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Licenser" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testkonf" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Ej behörig att utföra bulkuppdateringar" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Relevans" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Du har inte behörighet att skapa en ny grupp" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Användare %r har inte behörighet att redigera %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Integritetsfel" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Senast ändrad" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "Användare %r har inte behörighet att redigera %s behörigheter" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Eget fält (stigande)" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Obehörig att radera grupp %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Eget fält (fallande)" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organisationen har raderats." +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Populära" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Gruppen har raderats" +#: 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" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s har raderats." +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "egen text" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Behörighet saknas för att lägga till medlem till grupp %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Landkod" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Behörighet saknas för att radera medlemmar i grupp %s" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "egen resurstext" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Gruppmedlem har raderats." +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Välj två versioner innan du jämför dem" +#: 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/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "CKAN Revisionshistorik för grupp" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Senaste ändringarna i CKAN-gruppen:" +#: 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" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Loggmeddelande:" +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Du följer nu {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Följare" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Du har slutat följa {0}" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resurser" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Behörighet saknas för att se followers %s" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Bild" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "" -"Webbplatsen är för tillfället offline. Databasen är inte initialiserad." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Bild-URL" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -"Vänligen uppdatera din profil och lägg till din " -"e-postadress. " - -#: ckan/controllers/home.py:83 -#, 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." +"t.ex. http://example.com/image.jpg (om inte angivet så används resursens " +"URL)" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Data Explorer" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parametern \"{parameter_name}\" är inte ett heltal" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Graf" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Dataset hittades inte" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Karta" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Felaktigt format på revision: %r" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" msgstr "" -"Visning av dataset av typen {package_type} i formatet {format}, stöds inte " -"(mallen {file} hittades inte)." -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Obehörig att läsa paket %s" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Ändringshistorik för CKAN dataset" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Senaste ändringar av CKAn dataset: " +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Oberhörig för att skapa paket" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Filter" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Behörighet saknas för att redigera denna resurs" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Radförskjutning" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Objektet kunde inte hittas" +#: 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" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Behörighet saknas för att uppdatera detta dataset" +#: 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" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Dataset med {id} kunde inte hittas." +#: 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" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Du måste lägga till åtminstone en dataresurs" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Typ av graf" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Fel" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupp (axel 1)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Behörighet saknas för att skapa en resurs" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Serie (axel 2)" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Behörighet saknas för att skapa en resurs för paketet" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Typ av fält" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Kan inte lägga till paketet till sökindex" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Fält för Latitud" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Det går inte att uppdatera sökindex." +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Fält för Longitud" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Dataset har raderats." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Fält för GeoJSON" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Behörighet saknas för att radera paket %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Autozoom för funktioner" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Resursen har raderats." +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Markeringar för kluster" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Behörighet saknas för att radera resurs %s" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Totalt antal dataset" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Hittade inte resursvy" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Datum" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Resursens data hittades inte" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Totalt antal dataset" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Ingen nerladdning möjlig" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Versioner av dataset per vecka" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Behörighet saknas för att läsa dataset %s" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Alla versioner av detta dataset" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Inga rättigheter för objektet %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Nya dataset" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Behörighet saknas för att redigera resursen" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Högst rankade dataset" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Hittade inte vyn" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Medelbetyg" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Hittade inte typen av vy" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Antal betyg" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Fel data för resursvy" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Inga betyg" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Resursvyn saknas" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Mest redigerade dataset" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Ingen förhandsvisning har definierats." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Dataset" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "CKAN Revisionshistorik för repository" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Antal redigeringar" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Senaste ändringarna för CKAN-repositoryt." +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Inga redigerade dataset" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Dataset som påverkas: %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Största grupper" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Utgåvan uppdaterad" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Grupp" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Andra" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Antal dataset" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Taggen hittades inte" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Inga grupper" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Användaren hittades inte" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Mest använda taggar" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Ej behörig att registrera sig som användare." +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Taggnamn" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Obehörig att skapa användare" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Antal dataset" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Ej behörig att radera användare med id \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Ingen användare angiven" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Användare" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Obehörig att redigera användare %s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Statistikmeny" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profil uppdaterad" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Totalt antal dataset" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Obehörig att skapa användare %s" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Text" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Felaktig Captcha. Var god försök igen." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Webbplats" -#: ckan/controllers/user.py:265 -#, 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\" " +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL för webbsida" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Du saknar behörighet för att redigera en användare." +#: 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/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "Användare %s är inte behörig att redigera %s" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Din webbläsare stödjer inte iframes." -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Lösenordet är felaktigt" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Behörighetsfunktion hittades inte: %s" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Gammalt lösenord" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Admin" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "felaktigt lösenord" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Redaktör" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Inloggning misslyckades. Fel användarnamn eller lösenord." +#: ckan/authz.py:202 +msgid "Member" +msgstr "Medlem" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Ej behörig att begära återställande av lösenord." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Du måste vara systemadministratör för att administrera." -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" matchade flera användare" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Webbplatsnamn" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Ingen sådan användare: %s" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Stil" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Kontrollera din inkorg för en återställningskod." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Tagline för webbplatsen" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Kunde inte skicka länk för återställning: %s" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Logotyp för webbplatskortnamn" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Ej behörig att återställa lösenord." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Ogiltig återställningsnyckel. Var god försök igen." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Om webbplatsentext" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Ditt lösenord har återställts." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Introtext" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Ditt lösenord måste bestå av minst 4 tecken." +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Text på startsida" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Lösenorden du angav matchar inte." +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Egen CSS" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Du måste ange ett lösenord" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Egen CSS inlagd i sidhuvudet" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Följande post hittades ej" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Hemsida" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} hittades inte" +#: ckan/controllers/admin.py:161 +#, 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/user.py:654 -msgid "Everything" -msgstr "Allt" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problem att rensa version %s: %s" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Värde saknas" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Rensning klar" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Omdirigering till extern webbplats är inte tillåten." +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Åtgärden inte implementerad." -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} lade till taggen {tag} till dataset {dataset}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Åtkomst nekad" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} uppdaterade gruppen {group}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Hittades inte" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} uppdaterade organisationen {organization}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Felaktig begäran" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} uppdaterade dataset {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Åtgärdsnamn okänt: %s" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} ändrade extraobjektet {extra} i dataset {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON-fel: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} uppdaterade resursen {resource} i dataset {dataset}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Felaktig begäran: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} uppdaterade sin profil" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Kan inte lista objekt med typ: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} raderade gruppen {group}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Kan inte läsa objekt med typ: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} raderade organisationen {organization}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Kan inte skapa objekt med typ: %s %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} raderade dataset {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Kan inte lägga till paketet till sökindex" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} raderade extraobjektet {extra} från dataset {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Kan inte uppdatera objekt med typ: %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} raderade resursen {resource} från dataset {dataset}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Kan inte att uppdatera sökindex" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} skapade gruppen {group}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Kan inte radera objekt med typ: %s %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} skapade organisationen {organization}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Ingen utgåva angiven" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} skapade dataset {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Det finns ingen utgåva med id: %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} lade till extraobjektet {extra} till dataset {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Saknade sökord (\"since_id = UUID 'eller' since_time = TIMESTAMP')" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} lade till resursen {resource} till dataset {dataset}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Kunde inte läsa parametrar: %r" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} registrerade sig" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Felaktiga sökparametrar: %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} tog bort taggen {tag} från dataset {dataset}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Okänt register: %s" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} började följa {dataset}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Felaktigt format för qjsonvärde: %r" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} började följa {user}" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Parametrarna måste vara i formen av en json-kodad dictionary." -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} började följa {group}" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Gruppen hittades inte" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Visa" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Hittade inte organisationen" -#: 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/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Felaktig grupptyp" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Januari" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organisationer" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Februari" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Grupper" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Mars" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Taggar" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "April" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Format" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Maj" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Licenser" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Juni" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Användare %r har inte behörighet att redigera %s" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Juli" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Ej behörig att utföra bulkuppdateringar" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Augusti" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Du har inte behörighet att skapa en ny grupp" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "September" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Integritetsfel" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Oktober" +#: ckan/controllers/group.py:594 +#, 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/lib/formatters.py:59 -msgid "November" -msgstr "november" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Obehörig att radera grupp %s" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "December" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organisationen har raderats." -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Nyss" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Gruppen har raderats" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} minuter sedan" -msgstr[1] "{mins} minuter sedan" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s har raderats." -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} timmar sedan" -msgstr[1] "{hours} timmar sedan" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} dagar sedan" -msgstr[1] "{days} dagar sedan" +#: ckan/controllers/group.py:705 +#, 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/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} månader sedan" -msgstr[1] "{months} månader sedan" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Behörighet saknas för att radera medlemmar i grupp %s" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "mer än {years} år sedan" -msgstr[1] "mer än {years} år sedan" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Gruppmedlem har raderats." -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Välj två versioner innan du jämför dem" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "CKAN Revisionshistorik för grupp" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} byte" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Senaste ändringarna i CKAN-gruppen:" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Loggmeddelande:" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Du följer nu {0}" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Du har slutat följa {0}" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Behörighet saknas för att se followers %s" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: 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/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/home.py:73 +#, 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/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/home.py:75 +#, 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/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametern \"{parameter_name}\" är inte ett heltal" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Dataset hittades inte" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Felaktigt format på revision: %r" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Obehörig att läsa paket %s" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Ändra din profilbild på gravatar.com" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Ändringshistorik för CKAN dataset" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Okänd" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Senaste ändringar av CKAn dataset: " -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Namnlös resurs" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Oberhörig för att skapa paket" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Skapade ett nytt dataset." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Behörighet saknas för att redigera denna resurs" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Redigerade resurser." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Behörighet saknas för att uppdatera detta dataset" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Redigerade inställningar" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Dataset med {id} kunde inte hittas." -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} visningar" -msgstr[1] "{number} visningar" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Du måste lägga till åtminstone en dataresurs" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "visad {number} gång nyligen" -msgstr[1] "visad {number} gånger nyligen" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Behörighet saknas för att skapa en resurs" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Behörighet saknas för att skapa en resurs för paketet" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Mottagarens e-postadress finns inte!" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Kan inte lägga till paketet till sökindex" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "organisation" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Det går inte att uppdatera sökindex." -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "grupp" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Dataset har raderats." -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Värde saknas" +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Behörighet saknas för att radera paket %s" -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Resursen har raderats." + +#: ckan/controllers/package.py:1052 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "Inmatningsfält %(name)s var inte väntat." +msgid "Unauthorized to delete resource %s" +msgstr "Behörighet saknas för att radera resurs %s" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Vänligen mata in ett heltal" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Hittade inte resursvy" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Resurser" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Resursens data hittades inte" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Paketets objekt ogiltiga" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Ingen nerladdning möjlig" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Extra" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Behörighet saknas för att läsa dataset %s" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1404 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Vokabulären \"%s\" finns inte" +msgid "Unauthorized to read resource %s" +msgstr "Inga rättigheter för objektet %s" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Användare" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Behörighet saknas för att redigera resursen" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Dataset" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Hittade inte vyn" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Grupp" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Hittade inte typen av vy" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Kunde inte läsas in som giltig JSON" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Fel data för resursvy" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Resursvyn saknas" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Organisationen finns inte" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Ingen förhandsvisning har definierats." -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Du kan inte lägga till ett dataset till denna organisation" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "CKAN Revisionshistorik för repository" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Ogiltigt heltal" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Senaste ändringarna för CKAN-repositoryt." -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Måste vara ett naturligt tal" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Dataset som påverkas: %s.\n" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Måste vara ett positivt heltal" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Utgåvan uppdaterad" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Datumformatet felaktigt" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Andra" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Inga länkar är tillåtna i log_message." +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Taggen hittades inte" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Detta dataset-ID finns redan" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Ej behörig att registrera sig som användare." -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Resurs" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Obehörig att skapa användare" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Gruppnamn eller ID finns inte." +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Ej behörig att radera användare med id \"{user_id}\"." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Aktivitetstyp" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Ingen användare angiven" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Namn måste vara textsträngar" +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Obehörig att redigera användare %s" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Namnet kan inte användas" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Användaren hittades inte" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "Måste vara minst %s tecken" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profil uppdaterad" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Namn får vara max %i tecken" +msgid "Unauthorized to create user %s" +msgstr "Obehörig att skapa användare %s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Felaktig Captcha. Var god försök igen." -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format 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 _" +"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/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Den URL:en används redan." +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Du saknar behörighet för att redigera en användare." -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Namnet \"%s\" är kortare än minimilängden %s" +msgid "User %s not authorized to edit %s" +msgstr "Användare %s är inte behörig att redigera %s" -#: ckan/logic/validators.py:369 -#, 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/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Lösenordet är felaktigt" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Version får vara max %i tecken lång" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Gammalt lösenord" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Dubblerad nycke \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "felaktigt lösenord" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "En grupp med detta namn finns redan i databasen" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Inloggning misslyckades. Fel användarnamn eller lösenord." -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Tag \"%s\" understiger minimilängden %s" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Ej behörig att begära återställande av lösenord." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Längden av taggen \"%s\" överskrider maxlängden %i" +msgid "\"%s\" matched several users" +msgstr "\"%s\" matchade flera användare" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "Taggen \"%s\" måste vara alfanumeriska tecken eller symboler:-_." +msgid "No such user: %s" +msgstr "Ingen sådan användare: %s" + +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Kontrollera din inkorg för en återställningskod." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Taggen \"%s\" får inte bestå av versaler" +msgid "Could not send reset link: %s" +msgstr "Kunde inte skicka länk för återställning: %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Användarnamn måste vara textsträngar" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Ej behörig att återställa lösenord." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Det inloggningsnamnet är inte tillgängligt." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Ogiltig återställningsnyckel. Var god försök igen." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Skriv in båda lösenorden" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Ditt lösenord har återställts." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Lösenord måste vara textsträngar" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Ditt lösenord måste bestå av minst 4 tecken." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Ditt lösenord måste bestå av 4 tecken eller fler" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Lösenorden du angav matchar inte." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Lösenorden du angav matchar inte" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Du måste ange ett lösenord" -#: ckan/logic/validators.py:610 -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/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Följande post hittades ej" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Namn måste vara minst %s tecken" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} hittades inte" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Vokabulärnamnet används redan." +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Allt" -#: ckan/logic/validators.py:633 -#, 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/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Värde saknas" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Vokabulären för taggar kunde inte hittas." +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Omdirigering till extern webbplats är inte tillåten." -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Taggen %s hör inte till vokabulär %s" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} lade till taggen {tag} till dataset {dataset}" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Saknar namn för tagg." +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} uppdaterade gruppen {group}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Taggen %s hör redan till vokbaulären %s" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} uppdaterade organisationen {organization}" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Ange en giltig URL" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} uppdaterade dataset {dataset}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "Rollen finns inte." +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} ändrade extraobjektet {extra} i dataset {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Dataset som saknar en organisation kan inte göras privata" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} uppdaterade resursen {resource} i dataset {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Inte en lista" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} uppdaterade sin profil" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Inte text" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} raderade gruppen {group}" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "" -"Denna överordnade entitet skulle skapa en otillåten slinga i hierarkin" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} raderade organisationen {organization}" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" och \"filter_values\" ska ha samma längd" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} raderade dataset {dataset}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" krävs också när \"filter_values\" anges" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} raderade extraobjektet {extra} från dataset {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" krävs också när \"filter_fields\" anges" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} raderade resursen {resource} från dataset {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Det finns ett schemanamn med samma namn" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} skapade gruppen {group}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Skapa objekt %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} skapade organisationen {organization}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Skapa paketrelation: %s %s %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} skapade dataset {dataset}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Skapa objekt %s" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} lade till extraobjektet {extra} till dataset {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Försök att skapa en organisation som en grupp." +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} lade till resursen {resource} till dataset {dataset}" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "Du måste ange ett paket-ID eller namn (parameter \"package\")." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} registrerade sig" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Du måste ange ett betyg (parametern \"rating\")." +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} tog bort taggen {tag} från dataset {dataset}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Betyg måste vara ett heltal." +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} började följa {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Betyg måste vara mellan %i och %i." +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} började följa {user}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} började följa {group}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Du måste vara inloggad för att följa användare" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Visa" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Du kan inte följa digsjälv" +#: 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/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Du följer redan {0}" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Januari" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Du måste vara inloggad för att följa ett dataset." +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Februari" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Användare {username} finns inte." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Mars" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Du måste vara inloggad för att följa en grupp." +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "April" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Maj" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Ta bort paket: %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Juni" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Ta bort %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Juli" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Radera Medlemmar %s" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Augusti" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id finns inte i data" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "September" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Kan inte hitta vokabulär \"%s\"" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Oktober" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Kan inte hitta taggen \"%s\"" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "november" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Du måste vara inloggad för att sluta följa något." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "December" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Du följer inte {0}." +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Nyss" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Resursen hittades inte." +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} minuter sedan" +msgstr[1] "{mins} minuter sedan" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Anges ej om \"query parameter\" används" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} timmar sedan" +msgstr[1] "{hours} timmar sedan" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Måste vara : par" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} dagar sedan" +msgstr[1] "{days} dagar sedan" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Fältet \"{field}\" förstods inte i resource_search." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} månader sedan" +msgstr[1] "{months} månader sedan" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Paketet finns inte." +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "mer än {years} år sedan" +msgstr[1] "mer än {years} år sedan" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Uppdatera objekt %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Updatera paketrelation: %s %s %s" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "Uppgiftsstatus kunde inte hittas." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} byte" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Organisationen kunde inte hittas." +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: 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/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "Användare %s saknar behörighet att redigera dessa grupper" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: 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/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: 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/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "" -"Inget paket hittades för denna resurs, kan inte kontrollera behörigheter." +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: 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/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Ej behörig att skapa användare" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Gruppen kunde inte hittas." +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Det behövs en giltig API-nyckel för att skapa ett paket" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Ändra din profilbild på gravatar.com" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Det behövs en giltig API-nyckel för att skapa en grupp" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Okänd" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Användare %s har inte behörighet att lägga till medlemmar" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Namnlös resurs" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Användare %s saknar behörighet att redigera grupp %s" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Skapade ett nytt 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/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Redigerade resurser." -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "Hittade inte resursvyn. Kan inte kontrollera behörighet." +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Redigerade inställningar" -#: 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} visningar" +msgstr[1] "{number} visningar" -#: 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/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "visad {number} gång nyligen" +msgstr[1] "visad {number} gånger nyligen" -#: ckan/logic/auth/delete.py:86 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete group %s" -msgstr "Användare %s saknar behörighet att ta bort gruppen %s" +msgid "%s <%s>" +msgstr "%s <%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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Mottagarens e-postadress finns inte!" -#: 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/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organisation" -#: 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/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grupp" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Behörighet saknas" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Värde saknas" -#: ckan/logic/auth/get.py:108 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read these packages" -msgstr "Användare %s saknar behörighet att läsa dessa paket" +msgid "The input field %(name)s was not expected." +msgstr "Inmatningsfält %(name)s var inte väntat." -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "Användare %s saknar behörighet att läsa paketet %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Vänligen mata in ett heltal" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Användare %s har inte rätt att läsa %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/auth/get.py:176 -#, 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/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Paketets objekt ogiltiga" -#: ckan/logic/auth/get.py:258 -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/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Extra" -#: ckan/logic/auth/update.py:39 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit package %s" -msgstr "Användare %s saknar behörighet att redigera paketet %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Vokabulären \"%s\" finns inte" -#: ckan/logic/auth/update.py:71 -#, 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/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Kunde inte läsas in som giltig JSON" -#: ckan/logic/auth/update.py:100 -#, 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/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "" -#: ckan/logic/auth/update.py:128 -#, 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/validators.py:47 +msgid "Organization does not exist" +msgstr "Organisationen finns inte" -#: ckan/logic/auth/update.py:145 -#, 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/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Du kan inte lägga till ett dataset till denna organisation" -#: ckan/logic/auth/update.py:162 -#, 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/validators.py:92 +msgid "Invalid integer" +msgstr "Ogiltigt heltal" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Måste vara inloggad för att redigera användare" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Måste vara ett naturligt tal" -#: ckan/logic/auth/update.py:197 -#, 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/validators.py:103 +msgid "Must be a postive integer" +msgstr "Måste vara ett positivt heltal" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "Användaren {0} är inte behörig att uppdatera användare {1}" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Datumformatet felaktigt" -#: ckan/logic/auth/update.py:216 -#, 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/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Inga länkar är tillåtna i log_message." + +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Detta dataset-ID finns redan" + +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Resurs" + +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Gruppnamn eller ID finns inte." + +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Aktivitetstyp" + +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Namn måste vara textsträngar" -#: ckan/logic/auth/update.py:225 +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Namnet kan inte användas" + +#: ckan/logic/validators.py:338 #, 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" +msgid "Must be at least %s characters long" +msgstr "Måste vara minst %s tecken" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "" -"Användare %s saknar behörighet att uppdatera tabellen term_translation" +msgid "Name must be a maximum of %i characters long" +msgstr "Namn får vara max %i tecken" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Giltig API-nyckel behövs för att redigera ett paket" +#: ckan/logic/validators.py:343 +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/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Giltig API-nyckeln behövs för att redigera en grupp" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Den URL:en används redan." -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Licens har inte angetts" +#: ckan/logic/validators.py:366 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Namnet \"%s\" är kortare än minimilängden %s" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:370 +#, 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/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:376 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Version får vara max %i tecken lång" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:394 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Dubblerad nycke \"%s\"" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "En grupp med detta namn finns redan i databasen" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Erkännande" +#: ckan/logic/validators.py:416 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Tag \"%s\" understiger minimilängden %s" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Erkännande Dela Lika" +#: ckan/logic/validators.py:420 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Längden av taggen \"%s\" överskrider maxlängden %i" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:428 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Taggen \"%s\" måste vara alfanumeriska tecken eller symboler:-_." -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Annan (grupp)" +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Taggen \"%s\" får inte bestå av versaler" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Annan (Public Domain)" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Användarnamn måste vara textsträngar" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Annan (Attribution)" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Det inloggningsnamnet är inte tillgängligt." -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Skriv in båda lösenorden" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Icke-kommersiell" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Lösenord måste vara textsträngar" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Annan (Icke kommersiell)" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Ditt lösenord måste bestå av 4 tecken eller fler" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Annan (ej öppen)" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Lösenorden du angav matchar inte" -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "depends on %s" -msgstr "beror på %s" +#: ckan/logic/validators.py:611 +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/model/package_relationship.py:54 +#: ckan/logic/validators.py:620 #, python-format -msgid "is a dependency of %s" -msgstr "är beroende av %s" +msgid "Name must be at least %s characters long" +msgstr "Namn måste vara minst %s tecken" -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "derives from %s" -msgstr "härrör från %s" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Vokabulärnamnet används redan." -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:634 #, python-format -msgid "has derivation %s" -msgstr "har härledning %s" +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/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "länkar till %s" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Vokabulären för taggar kunde inte hittas." -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:656 #, python-format -msgid "is linked from %s" -msgstr "är länkad från %s" +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Taggen %s hör inte till vokabulär %s" -#: ckan/model/package_relationship.py:57 -#, python-format -msgid "is a child of %s" -msgstr "är underordnad till %s" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Saknar namn för tagg." -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:675 #, python-format -msgid "is a parent of %s" -msgstr "är överordnad till %s" +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Taggen %s hör redan till vokbaulären %s" -#: ckan/model/package_relationship.py:61 -#, python-format -msgid "has sibling %s" -msgstr "har syskon %s" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Ange en giltig URL" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Laddar..." +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "Rollen finns inte." -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Det finns inga API-data att ladda för denna resurs" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Dataset som saknar en organisation kan inte göras privata" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Misslyckades med att ladda API-information" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Inte en lista" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Hittades inte" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Inte text" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Börja skriv..." +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "" +"Denna överordnade entitet skulle skapa en otillåten slinga i hierarkin" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "För kort inmatning. Det måste vara åtminstone ett tecken" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" och \"filter_values\" ska ha samma längd" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Det finns ändringar i detta formulär som inte sparats" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" krävs också när \"filter_values\" anges" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Vänligen Bekräfta Åtgärd" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" krävs också när \"filter_fields\" anges" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Vill du verkligen genomföra denna åtgärd?" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Det finns ett schemanamn med samma namn" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Bekräfta" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Avbryt" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Skapa objekt %s" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Följ" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Skapa paketrelation: %s %s %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Sluta följa" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Skapa objekt %s" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Ladda upp" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Försök att skapa en organisation som en grupp." -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Länk" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Du måste ange ett paket-ID eller namn (parameter \"package\")." -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Ta bort" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Du måste ange ett betyg (parametern \"rating\")." -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Bild" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Betyg måste vara ett heltal." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Betyg måste vara mellan %i och %i." -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Fil" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Ladda upp en fil från din dator" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Du måste vara inloggad för att följa användare" -#: ckan/public/base/javascript/modules/image-upload.js:23 -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/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Du kan inte följa digsjälv" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Ändra ordning på resurser" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Du följer redan {0}" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Spara ordning" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Du måste vara inloggad för att följa ett dataset." -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Sparar..." +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Användare {username} finns inte." -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Ladda upp en fil" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Du måste vara inloggad för att följa en grupp." -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Ett fel uppstod" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Resursen laddades upp" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Ta bort paket: %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Kunde inte ladda upp filen" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Ta bort %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Kunde inte verifiera behörighet för uppladdningen" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Radera Medlemmar %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Kunde inte läsa data i den uppladdade filen" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id finns inte i data" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Du laddar upp en fil. Är du säker på att du vill lämna sidan och avbryta " -"uppladdningen?" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Kan inte hitta vokabulär \"%s\"" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Sortera om resursvyn" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Kan inte hitta taggen \"%s\"" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Redigera" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Du måste vara inloggad för att sluta följa något." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Visa mer" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Du följer inte {0}." -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Dölj" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Resursen hittades inte." -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Fel %(error_code)s" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Anges ej om \"query parameter\" används" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Om {0}" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Måste vara : par" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Fältet \"{field}\" förstods inte i resource_search." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Paketet finns inte." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Drivs med teknik från CKAN" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Uppdatera objekt %s" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Inställningar för sysadmin" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Updatera paketrelation: %s %s %s" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Visa profil" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "Uppgiftsstatus kunde inte hittas." -#: ckan/templates/header.html:26 +#: ckan/logic/action/update.py:1059 +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 "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)" +msgid "User %s not authorized to create packages" +msgstr "Användare %s är inte behörig att skapa paket" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Panel" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Användare %s saknar behörighet att redigera dessa grupper" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Redigera inställningar" +#: 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/templates/header.html:37 -msgid "Settings" -msgstr "Inställningar" +#: 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/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Logga ut" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Inget paket hittades för denna resurs, kan inte kontrollera behörigheter." -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Logga in" +#: 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/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Registrera" +#: 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/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Dataset" +#: 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/templates/header.html:116 -msgid "Search Datasets" -msgstr "Sök i dataset" +#: 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/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Sök" +#: 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/templates/page.html:6 -msgid "Skip to content" -msgstr "Hoppa fram till innehållet" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Ej behörig att skapa användare" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Ladda färre" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Gruppen kunde inte hittas." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Ladda fler" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Det behövs en giltig API-nyckel för att skapa ett paket" -#: 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/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Det behövs en giltig API-nyckel för att skapa en grupp" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Administration" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Användare %s har inte behörighet att lägga till medlemmar" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Systemadministratörer" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Användare %s saknar behörighet att redigera grupp %s" -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "Config" +#: 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/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Papperskorg" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "Hittade inte resursvyn. Kan inte kontrollera behörighet." -#: ckan/templates/admin/config.html:16 -#: 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/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/templates/admin/config.html:17 -msgid "Reset" -msgstr "Återställ" +#: 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/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Uppdatera konfiguration" +#: 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/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKANs konfigurationsinställningar" +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/delete.py:107 #, 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.

" +msgid "User %s not authorized to delete organization %s" +msgstr "Användare %s har inte behörighet att radera organisationen %s" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Bekräfta Återställ" +#: 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/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Administrera CKAN" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Behörighet saknas" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/get.py:109 #, 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

" +msgid "User %s not authorized to read these packages" +msgstr "Användare %s saknar behörighet att läsa dessa paket" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Rensa" +#: 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/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "

Rensa borttagna dataset permanent.

" +#: 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/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" +#: ckan/logic/auth/get.py:170 +#, 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/templates/ajax_snippets/api_info.html:23 -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." +#: ckan/logic/auth/get.py:252 +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/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" -" Mer information finns i main CKAN Data API and DataStore documentation.

" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Användare %s saknar behörighet att redigera paketet %s" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Adresser" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Användare %s har inte behörighet att redigera resurs %s" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "Data-API:et kan anropas via följande åtgärder från CKAN:s \"action API\"." +#: ckan/logic/auth/update.py:100 +#, 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/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Skapa" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Användare %s är inte behörig att redigera organisationen %s" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Uppdatera/Sätt in" +#: ckan/logic/auth/update.py:145 +#, 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/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Fråga" +#: ckan/logic/auth/update.py:162 +#, 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/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Fråga (via SQL)" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Måste vara inloggad för att redigera användare" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Frågar" +#: ckan/logic/auth/update.py:198 +#, 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/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Exempelfråga (första 5 svaren)" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "Användaren {0} är inte behörig att uppdatera användare {1}" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Exempelfråga (svar som innehåller 'jones')" +#: ckan/logic/auth/update.py:217 +#, 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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Exempelfråga (via SQL-sats)" +#: ckan/logic/auth/update.py:226 +#, 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/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Exempel: Javascript" +#: ckan/logic/auth/update.py:240 +#, 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/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." +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Giltig API-nyckel behövs för att redigera ett paket" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Exempel: Python" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Giltig API-nyckeln behövs för att redigera en grupp" -#: 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/model/license.py:222 +msgid "License not specified" +msgstr "Licens har inte angetts" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Klicka här för att läsa mer..." +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Ladda ner resurs" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Din webbläsare stödjer inte iframes." +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Ingen förhandsvisning tillgänglig." +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Fler detaljer..." +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Erkännande" -#: 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/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Erkännande Dela Lika" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Standard" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Standardinmatning" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Annan (grupp)" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Medium" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Annan (Public Domain)" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Mellanstor inmatning" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Annan (Attribution)" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Full" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Fullbreddsinmatning" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Icke-kommersiell" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Stor" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Annan (Icke kommersiell)" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Stor inmatning" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Annan (ej öppen)" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Infoga" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "beror på %s" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Infoga före inmatning" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "är beroende av %s" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Eget fält (tomt)" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "härrör från %s" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Eget fält" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "har härledning %s" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "länkar till %s" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Textarea" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "är länkad från %s" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Välj" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "är underordnad till %s" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Aktivitetsflöde" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "är överordnad till %s" -#: 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/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "har syskon %s" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Lägg till grupp" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Det finns inga API-data att ladda för denna resurs" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Gruppformulär" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Misslyckades med att ladda API-information" -#: 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/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Börja skriv..." -#: 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/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Hittades inte" -#: 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/public/base/javascript/modules/autocomplete.js:204 +#, 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/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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Hantera" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Det finns ändringar i detta formulär som inte sparats" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Redigera grupp" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Vänligen Bekräfta Åtgärd" -#: 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/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Vill du verkligen genomföra denna åtgärd?" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Följare" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Bekräfta" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Historik" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Lägg till grupp" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Sluta följa" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Sök grupper..." +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Följ" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Namn, stigande" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Länk" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Namn, fallande" +#: ckan/public/base/javascript/modules/image-upload.js:61 +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/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/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Ladda upp" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Vill du skapa en?" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Ta bort" -#: 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/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Ladda upp en fil från din dator" -#: 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/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Lägg till medlem" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Fil" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Befintlig användare" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Spara ordning" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Om du vill lägga till en befintlig användare, sök efter användarnamnet " -"nedan." +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Sparar..." -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "eller" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Ladda upp en fil" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Ny användare" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Ett fel uppstod" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "Om du vill bjuda in en ny användare, mata in dess e-postadress." +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Kunde inte ladda upp filen" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Roll" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Kunde inte verifiera behörighet för uppladdningen" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Vill du verkligen radera denna medlem?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Resursen laddades upp" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Radera" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Kunde inte läsa data i den uppladdade filen" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Spara" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +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/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Vad är roller?" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Lägg till filter" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" 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/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Redigera" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Uppdatera grupp" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Visa mer" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Skapa grupp" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Dölj" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Relevans" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Fel %(error_code)s" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Senast ändrad" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Om {0}" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Populära" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Sök dataset..." +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Dataset som ingår i gruppen: {group}" +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Drivs med teknik från CKAN" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Färsk versionshistorik" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Inställningar för sysadmin" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Namn" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Visa profil" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Min grupp" +#: ckan/templates/header.html:26 +#, 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/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "my-group" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Panel" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Beskrivning" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Redigera inställningar" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Lite information om min grupp..." +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Inställningar" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Vill du verkligen radera denna grupp?" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Logga ut" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Spara gruppen" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Logga in" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} dataset" -msgstr[1] "{num} dataset" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registrera" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 dataset" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Dataset" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Visa {name}" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Sök i dataset" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Ta bort dataset från denna grupp" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Sök" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Vad är grupper?" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Hoppa fram till innehållet" -#: 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/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Ladda färre" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Jämför" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Ladda fler" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Raderad" +#: 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/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "läs mer" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administration" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Version" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Systemadministratörer" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Tidsstämpel" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Config" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Författare" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Papperskorg" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Loggmeddelande" +#: ckan/templates/admin/config.html:16 +#: 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/home/index.html:4 -msgid "Welcome" -msgstr "Välkommen" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Återställ" -#: 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/admin/config.html:17 +msgid "Update Config" +msgstr "Uppdatera konfiguration" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Välkommen till CKAN" +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKANs konfigurationsinställningar" -#: ckan/templates/home/snippets/promoted.html:10 +#: ckan/templates/admin/config.html:33 +#, python-format 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 " +"

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

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/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Det här är ett utvalt avsnitt" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Bekräfta Återställ" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "T.ex. miljö" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrera CKAN" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Sök data" +#: 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/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Populära taggar" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Rensa" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} statistik" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "

Rensa borttagna dataset permanent.

" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "dataset" +#: 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/home/snippets/stats.html:11 -msgid "datasets" -msgstr "dataset" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Klicka här för att läsa mer..." -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "organisationer" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Ladda ner resurs" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "grupper" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Ingen förhandsvisning tillgänglig." -#: ckan/templates/macros/form.html:126 +#: 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 "" -"You can use Markdown formatting here" +msgid "No handler defined for data type: %(type)s." msgstr "" -"Du kan använda Formattering av markdown here" - -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Detta fält måste fyllas i" - -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Eget" - -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Formuläret innehåller ogiltiga poster:" +"Det finns ingen hanterare, så kallad handler, för datatypen: %(type)s." -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Obligatoriskt fält" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standardinmatning" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "Bild URL" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medium" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Rensa uppladdning" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Mellanstor inmatning" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Organisationsformulär" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Full" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Redigera dataset" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Fullbreddsinmatning" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Lägg till dataset" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Stor" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "resultat för \"{query}\"" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Stor inmatning" -#: 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/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Infoga" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Gör publik" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Infoga före inmatning" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Gör privat" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Eget fält (tomt)" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Utkast" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Eget fält" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Privat" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Denna organisation har inga dataset kopplade till sig" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textarea" -#: 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/development/snippets/form.html:24 +msgid "Select" +msgstr "Välj" -#: 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/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Aktivitetsflöde" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Lägg till organisation" +#: 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/organization/index.html:20 -msgid "Search organizations..." -msgstr "Sök organisationer..." +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Lägg till grupp" -#: 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/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Gruppformulär" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Användarnamn" +#: ckan/templates/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/organization/member_new.html:50 -msgid "Email address" -msgstr "E-postadress" +#: 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/organization/member_new.html:62 -msgid "Update Member" -msgstr "Uppdatera medlem" +#: 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/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Hantera" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Skapa en Organisation" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Redigera grupp" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Uppdatera Organisation" +#: ckan/templates/group/edit_base.html:23 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/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Skapa organisation" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Historik" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Lägg till dataset" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Lägg till grupp" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Dataset i organisation: {group}" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Sök grupper..." -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Vad är Organisationer?" +#: 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/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/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Vill du skapa en?" -#: 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/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Tillbaka till alla medlemmar" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Min organisation" +#: 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/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "my-organization" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Lägg till medlem" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Lite information om min organisation..." +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Befintlig användare" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"Vill du verkligen radera denna organisation? Detta kommer att radera alla " -"publika och privata dataset som hör till denna organisation." - -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Spara organisationen" +"Om du vill lägga till en befintlig användare, sök efter användarnamnet " +"nedan." -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Visa {organization_name}" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "eller" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Skapa dataset" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Ny användare" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Vad är dataset?" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Om du vill bjuda in en ny användare, mata in dess e-postadress." -#: 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/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Roll" -#: 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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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/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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Radera" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Visa dataset" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Vad är roller?" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Redigera metadata" +#: ckan/templates/group/member_new.html:80 +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/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/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/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Förhandsvisa" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Uppdatera grupp" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Uppdatera" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Skapa grupp" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Koppla denna grupp till detta dataset" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Sök dataset..." -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Lägg till till gruppen" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Dataset som ingår i gruppen: {group}" -#: 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/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Färsk versionshistorik" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Uppdatera dataset" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Namn" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Lägg till data till detta dataset" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Min grupp" -#: 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/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "my-group" -#: 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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Lite information om min grupp..." -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Nu resurs" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "Vill du verkligen radera denna grupp?" -#: 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/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Spara gruppen" -#: 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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Visa {name}" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Lägg till" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Ta bort dataset från denna grupp" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Vad är grupper?" + +#: ckan/templates/group/snippets/helper.html:8 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +" 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 "" -"Detta är en gammal version av detta dataset, redigerad vid %(timestamp)s. " -"Den kan skilja sig markant från den senaste " -"versionen." +"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/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Ladda upp till DataStore" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Jämför" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Fel vid uppladdning:" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Raderad" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Fel:" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "läs mer" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Version" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Status" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Tidsstämpel" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Senast uppdaterad" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Författare" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Aldrig" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Loggmeddelande" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Logg för uppladdningen" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Välkommen" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Detaljer" +#: 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/package/resource_data.html:81 -msgid "End of log" -msgstr "Slut på loggen" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Välkommen till CKAN" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "Alla resurser" +#: 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/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Visa resurser" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Det här är ett utvalt avsnitt" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Redigera resurser" +#: 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/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Populära taggar" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Vyer" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistik" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API-adress" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "dataset" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Gå till resurs" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "dataset" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Hämta" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisationer" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupper" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Från sammanfattningen av detta dataset" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Källa: %(dataset)s" +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Du kan använda Formattering av markdown here" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Inga vyer har skapats för resursen." +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Detta fält måste fyllas i" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Hittar du inte vyerna du förväntade dig?" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Eget" -#: ckan/templates/package/resource_read.html:121 -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/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Formuläret innehåller ogiltiga poster:" -#: ckan/templates/package/resource_read.html:123 -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/macros/form.html:395 +msgid "Required field" +msgstr "Obligatoriskt fält" -#: ckan/templates/package/resource_read.html:124 -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/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"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/macros/form.html:411 +msgid "Image URL" +msgstr "Bild URL" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Mer information" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Rensa uppladdning" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Fält" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Organisationsformulär" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Värde" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Redigera dataset" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "okänd" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Lägg till dataset" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Skapad" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "resultat för \"{query}\"" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Format" +#: 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/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Licens" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Gör publik" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Ny vy" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Gör privat" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Resursen har inga vyer" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Utkast" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Lägg till resurs" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Privat" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

Detta dataset saknar data, varför " -"inte lägga till några?

" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Denna organisation har inga dataset kopplade till sig" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: 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/package/search.html:53 -msgid "API Docs" -msgstr "API-dokumentation" +#: 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/package/search.html:55 -msgid "full {format} dump" -msgstr "fullständig dump i {format}-format" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Lägg till organisation" -#: 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/organization/index.html:20 +msgid "Search organizations..." +msgstr "Sök organisationer..." -#: 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/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/package/view_edit_base.html:9 -msgid "All views" -msgstr "Alla vyer" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Användarnamn" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "Visa vy" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "E-postadress" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Visa förhandsgranskning" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Uppdatera medlem" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Mer information" +#: ckan/templates/organization/member_new.html:81 +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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Källa" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Skapa en Organisation" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Version" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Uppdatera Organisation" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Status" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Skapa organisation" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Senast uppdaterad" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Lägg till dataset" -#: 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/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Dataset i organisation: {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Vad är Organisationer?" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Data API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Min organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Titel" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "my-organization" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "t.ex. en beskrivande titel" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Lite information om min organisation..." -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "t.ex. mitt-dataset" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Vill du verkligen radera denna organisation? Detta kommer att radera alla " +"publika och privata dataset som hör till denna organisation." -#: 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/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Spara organisationen" -#: 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/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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -" Licensdefinitioner och mer information finns på opendefinition.org " +"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/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Organisation" +#: 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/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Ingen organisation" +#: 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/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Synlighet" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Visa dataset" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Offentlig" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Redigera metadata" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Aktiv" +#: 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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Förhandsvisa" -#: 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/edit_view.html:21 +msgid "Update" +msgstr "Uppdatera" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Nästa steg: Lägg till data" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Koppla denna grupp till detta dataset" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Lägg till till gruppen" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Uppdatera dataset" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "E-post till författare" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Lägg till data till detta dataset" -#: 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/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/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "E-post till förvaltare" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Uppdatera resurs" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Lägg till" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Detta är en gammal version av detta dataset, redigerad vid %(timestamp)s. " +"Den kan skilja sig markant från den senaste " +"versionen." -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Alla resurser" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "t.ex. Guldpriser januari 2011" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Visa resurser" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Beskrivande information om datasetet" +#: 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/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "t.ex. CSV, XML or JSON" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Vyer" -#: ckan/templates/package/snippets/resource_form.html:40 -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/resource_read.html:39 +msgid "API Endpoint" +msgstr "API-adress" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "t.ex. 2012-06-05" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Gå till resurs" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Filstorlek" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Hämta" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "t.ex. 1024" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME-typ" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Från sammanfattningen av detta dataset" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "t.ex. application/json" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Källa: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Vill du verkligen ta bort denna resurs?" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "Inga vyer har skapats för resursen." -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Föregående" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Hittar du inte vyerna du förväntade dig?" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Spara och lägg till nästa" +#: ckan/templates/package/resource_read.html:118 +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/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Slutför" +#: ckan/templates/package/resource_read.html:120 +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/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Vad är en Resurs?" +#: ckan/templates/package/resource_read.html:121 +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/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:122 +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 "" -"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:24 -msgid "Explore" -msgstr "Utforska" +"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/snippets/resource_item.html:36 -msgid "More information" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" msgstr "Mer information" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Bädda in" - -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "Resursvyn är inte tillgänglig just nu." +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Fält" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Infoga resursvy" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Värde" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" 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:69 -msgid "Width" -msgstr "Bredd" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "okänd" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Höjd" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Kod" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Skapad" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Förhandsgranska resurs" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Format" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Data och resurser" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Licens" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Det finns inga data i detta dataset" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Ny vy" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "Läste dataset som %s" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Resursen har inga vyer" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Skapa dataset" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Lägg till resurs" -#: 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/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, 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/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "t.ex. Min vy" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "t.ex. Information om min vy" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API-dokumentation" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "Lägg till filter" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "fullständig dump i {format}-format" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Ta bort filter" +#: 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/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Filter" +#: 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/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Vad är en vy?" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Alla vyer" -#: 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/package/view_edit_base.html:12 +msgid "View view" +msgstr "Visa vy" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Skillnader" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Visa förhandsgranskning" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Versionsskillnader" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Mer information" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Skillnad" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Källa" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Inga skillnader" +#: 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/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Versionshistorik" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Version" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Versioner" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Status" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "Ångra radering" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Senast uppdaterad" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "Ändringar" +#: 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/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Taggar för dataset" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Objekt" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Ny aktivitetspost" +#: 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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Bädda in Data Viewer" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titel" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Bädda in denna vy genom att kopiera detta till din webbsida:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "t.ex. en beskrivande titel" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Välj bredd och höjd i pixlar:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "t.ex. mitt-dataset" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Bredd:" +#: 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/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Höjd:" +#: 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/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Status för Datapusher: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +" Licensdefinitioner och mer information finns på opendefinition.org " -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Trackback URL" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisation" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Visa mer {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Ingen organisation" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Visa endast populär {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Synlighet" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Det finns ingen {facet_type} som matchar sökningen" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Offentlig" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Hem" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Aktiv" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Språk" +#: 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/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Kör" +#: 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/snippets/license.html:14 -msgid "No License Provided" -msgstr "Licens ej angiven" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Nästa steg: Lägg till data" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Detta dataset uppfyller kraven i Open Definition." +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Denna organisation saknar beskrivning" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "Detta dataset saknar beskrivning" +#: 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/snippets/search_form.html:17 -msgid "Submit" -msgstr "Skicka" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "E-post till författare" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Sortera på" +#: ckan/templates/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/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Filtrera resultat " +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "E-post till förvaltare" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Försök med en ny sökfråga.

" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Uppdatera resurs" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" 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 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/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: 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/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "t.ex. Guldpriser januari 2011" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Inga dataset hittades" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Beskrivande information om datasetet" -#: 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/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "t.ex. CSV, XML or JSON" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Hittade inga grupper för \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:40 +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/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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "t.ex. 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Inga grupper hittades" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Filstorlek" -#: 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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "t.ex. 1024" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "Inga organisationer matchade \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME-typ" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "t.ex. application/json" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Inga organisationer hittades" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "Vill du verkligen ta bort denna resurs?" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Social" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Föregående" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Prenumerera" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Spara och lägg till nästa" -#: 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:82 -msgid "Email" -msgstr "E-post" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Slutför" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Vad är en Resurs?" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Redigeringar" +#: 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/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Sök taggar" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Utforska" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Nyhetsfeed" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Mer information" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Mina dataset" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Bädda in" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Mina organisationer" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "Resursvyn är inte tillgänglig just nu." -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Mina grupper" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Infoga resursvy" -#: 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/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Du kan kopiera och klistra in koden i ett CMS eller en blogg som stödjer rå " +"HTML" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Du har inte skapat något dataset" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Bredd" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Skapa ett nu?" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Höjd" -#: 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/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Kod" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Du är inte medlem i någon organisation." +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Förhandsgranska resurs" -#: 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/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Data och resurser" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Kontoinformation" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Det finns inga data i detta dataset" -#: 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/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Läste dataset som %s" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Ändringar" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Skapa dataset" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Namn" +#: 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/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "t.ex. Joe Exempelsson" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "t.ex. Min vy" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "t.ex. joe@example.com" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "t.ex. Information om min vy" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Lite information om dig själv" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Ta bort filter" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Prenumerera på e-post för meddelanden." +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Vad är en vy?" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Ändra lösenord" +#: 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/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Skillnader" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Lösenord" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Versionsskillnader" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Bekräfta lösenord" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Skillnad" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Vill du verkligen radera denna användare?" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Inga skillnader" -#: ckan/templates/user/edit_user_form.html:51 -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/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Versionshistorik" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Generera om API-nyckeln" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Versioner" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Uppdatera profilen" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Ångra radering" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Alla användare" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Ändringar" -#: 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/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Taggar för dataset" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Behöver du ett konto?" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Objekt" -#: 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/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Ny aktivitetspost" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Skapa ett konto" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Bädda in Data Viewer" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Glömt ditt lösenord?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Bädda in denna vy genom att kopiera detta till din webbsida:" -#: 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/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Välj bredd och höjd i pixlar:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Glömt ditt lösenord?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Bredd:" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Utloggad" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Höjd:" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Du är nu utloggad." +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Status för Datapusher: {status}." -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Du är redan inloggad som {user}." +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Logga ut" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Visa mer {facet_type}" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Kom ihåg mig" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Visa endast populär {facet_type}" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Du är redan inloggad" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Det finns ingen {facet_type} som matchar sökningen" -#: ckan/templates/user/logout_first.html:24 -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/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Hem" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Logga ut nu" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Språk" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Registrering" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Kör" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Skapa ett nytt konto" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Licens ej angiven" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Varför registrera sig?" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Detta dataset uppfyller kraven i Open Definition." -#: 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/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Denna organisation saknar beskrivning" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "användarnamn" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Detta dataset saknar beskrivning" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Fullständigt namn:" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Skicka" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Skapa ett konto" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Sortera på" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Återställ ditt lösenord" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Filtrera resultat " -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Återställ lösenord" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Försök med en ny sökfråga.

" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Uppdatera lösenord" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Så här fungerar det:" +#: 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/user/perform_reset.html:40 -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/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Hittade inga dataset för \"{query}\"" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "Användaren har inte skapat något dataset." +#: 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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Du har inte angivit någon biografi." +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Inga dataset hittades" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Den här användaren har ingen biografi." +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Hittade inga grupper för \"{query}\"" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Det innebär att bara du kan se denna" +#: 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/user/read_base.html:87 -msgid "Member Since" -msgstr "Medlem sedan" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Inga grupper hittades" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API-nyckel" +#: 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/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Återställ ditt lösenord" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Inga organisationer matchade \"{query}\"" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Återställ lösenord" +#: 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/user/request_reset.html:19 -msgid "Request reset" -msgstr "Begär återställning" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Inga organisationer hittades" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Mata in ditt användarnamn i fältet, så skickar vi e-post med en länk för att" -" ange ett nytt lösenord." +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Aktivitet från:" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Prenumerera" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Sök lista..." +#: 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:82 +msgid "Email" +msgstr "E-post" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Du följer ingenting." +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Inga följare" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Redigeringar" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Sök användare" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Sök taggar" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Färdig" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Nyhetsfeed" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Väntar" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Mina dataset" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Skickar" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mina organisationer" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Inte uppladdad än" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mina grupper" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Hittade inte DataStore-resursen" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktivitet från poster som jag följer" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" -"Data är ogiltiga (t.ex. ett numeriskt värde i fel intervall eller infogat i " -"ett textfält)." +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Du har inte skapat något dataset" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "Resursen \"{0}\" hittades inte." +#: 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:16 +msgid "Create one now?" +msgstr "Skapa ett nu?" -#: 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}" +#: 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." -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "Dataset per sida" +#: 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." -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "Testkonf" +#: 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" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Eget fält (stigande)" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Kontoinformation" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Eget fält (fallande)" +#: 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." -#: 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" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Ändringar" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "egen text" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Namn" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Landkod" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "t.ex. Joe Exempelsson" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "egen resurstext" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "t.ex. joe@example.com" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Lite information om dig själv" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Denna grupp saknar beskrivning" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Prenumerera på e-post för meddelanden." -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Ändra lösenord" + +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -"Verktyget för förhandsgranskning av data i CKAN har många kraftfulla " -"funktioner" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "Bild-URL" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Lösenord" -#: 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)" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Bekräfta lösenord" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Data Explorer" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Vill du verkligen radera denna användare?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "tabell" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Är du säker på att du vill generera om API-nyckeln?" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Graf" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Generera om API-nyckeln" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Karta" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Uppdatera profilen" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Alla användare" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "Radförskjutning" +#: 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" -#: 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" +#: 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." -#: 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" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Skapa ett konto" -#: 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" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Glömt ditt lösenord?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Typ av graf" +#: 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." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Grupp (axel 1)" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Glömt ditt lösenord?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Serie (axel 2)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Utloggad" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Typ av fält" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Du är nu utloggad." -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Fält för Latitud" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Du är redan inloggad som {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Fält för Longitud" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Logga ut" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "Fält för GeoJSON" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Kom ihåg mig" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Autozoom för funktioner" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Du är redan inloggad" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Markeringar för kluster" +#: ckan/templates/user/logout_first.html:24 +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." -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Totalt antal dataset" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Logga ut nu" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Datum" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registrering" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Totalt antal dataset" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Skapa ett nytt konto" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Versioner av dataset per vecka" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Varför registrera sig?" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Alla versioner av detta dataset" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Skapa dataset, grupper och andra spännande ting" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Nya dataset" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "användarnamn" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Högst rankade dataset" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Fullständigt namn:" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Medelbetyg" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Skapa ett konto" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Antal betyg" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Återställ ditt lösenord" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Inga betyg" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Återställ lösenord" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Mest redigerade dataset" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Uppdatera lösenord" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Antal redigeringar" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Så här fungerar det:" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Inga redigerade dataset" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Ange ett nytt lösenord så blir ditt konto uppdaterat." -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Största grupper" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Användaren har inte skapat något dataset." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Antal dataset" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Du har inte angivit någon biografi." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Inga grupper" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Den här användaren har ingen biografi." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Mest använda taggar" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Taggnamn" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Det innebär att bara du kan se denna" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Antal dataset" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Medlem sedan" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API-nyckel" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Statistikmeny" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Återställ ditt lösenord" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Totalt antal dataset" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Återställ lösenord" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Text" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Begär återställning" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Mata in ditt användarnamn i fältet, så skickar vi e-post med en länk för att" +" ange ett nytt lösenord." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Webbplats" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Aktivitet från:" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "URL för webbsida" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Sök lista..." -#: 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/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" diff --git a/ckan/i18n/th/LC_MESSAGES/ckan.mo b/ckan/i18n/th/LC_MESSAGES/ckan.mo index a2689e56d51..8e6340880c2 100644 Binary files a/ckan/i18n/th/LC_MESSAGES/ckan.mo and b/ckan/i18n/th/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/th/LC_MESSAGES/ckan.po b/ckan/i18n/th/LC_MESSAGES/ckan.po index edb2c3815ef..47cf4854751 100644 --- a/ckan/i18n/th/LC_MESSAGES/ckan.po +++ b/ckan/i18n/th/LC_MESSAGES/ckan.po @@ -1,4501 +1,4595 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "ไม่พบฟังก์ชั่นการอนุมัติ: %s " +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "สำเร็จ" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "ผู้ดูแลระบบ" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "รอดำเนินการ" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "บรรณาธิการ" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "ส่ง" -#: ckan/authz.py:199 -msgid "Member" -msgstr "สมาชิก" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "ผิดพลาด" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "ต้องเป็นผู้ดูแลระบบถึงจะจัดการได้" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "ยังไม่ได้อัพโหลด" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "ชื่อไซต์" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "ไม่พบทรัพยากร" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "รูปแบบ" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "ไม่ได้รับอนุญาตให้ดูหน้านี้" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "คำอธิบายของไซต์" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "อัพโหลดไปที่จัดเก็บข้อมูล" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "โลโก้ของไซต์" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "มีปัญหาในการอัพโหลด: " -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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 "เกี่ยวกับ" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "ข้อผิดพลาด:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "ข้อความบนหน้า \"เกี่ยวกับ\"" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "ข้อความเกริ่นนำ" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "สถานะ" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "ข้อความบนหน้าหลัก" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "ปรับปรุงครั้งล่าสุด" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "CSS ที่กำหนดเอง" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "ไม่เคย" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "ได้แทรก CSS ที่ปรับแต่งได้ลงในส่วนหัวของหน้าไว้แล้ว" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "บันทึกการอัพโหลด" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "หน้าหลัก" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "รายละเอียด" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "จบการบันทึก" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "ที่จัดเก็บข้อมูล" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "ไม่พบคลังข้อมูลทรัพยากร" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"ไม่สามารถถอดถอนแพคเกจ %s เนื่องจากรุ่นที่ %s ใช้แพคเกจ %s ที่ยังไม่ถูกลบ" -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "เกิดปัญหาในการถอดถอนรุ่น %s: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "ไม่พบทรัพยากร \"{0}\" " -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "การถอดถอนเสร็จสมบูรณ์" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "ผู้ใช้ {0} ไม่ได้รับอนุญาคให้ปรับปรุงทรัพยากร {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "การกระทำนี้ยังไม่ถูกสร้างขึ้น" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "ไม่ได้รับอนุญาตให้ดูหน้านี้" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "เข้าถึงทรัพยากรข้อมูลผ่าน API ของเว็บด้วยภาษาสอบถามที่ทรงพลัง" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "ปฏิเสธการเข้าใช้" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "ไม่พบ" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "ปลายทาง" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "คำขอไม่เหมาะสม" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "Data API สามารถเข้าถึงได้ด้วยการเรียกใช้ CKAN action API" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "ไม่รู้จักชื่อการกระทำนี้: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr " สร้าง" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON ผิดพลาด: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr " ปรับปรุง/เพิ่ม" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "ข้อมูลคำขอไม่เหมาะสม: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "เรียกดูข้อมูล" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "ไม่สามารถแสดง entity ประเภทนี้ได้: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "เรียกดูข้อมูล (ผ่าน SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "ไม่สามารถอ่าน entity ประเภทนี้ได้: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "กำลังเรียกข้อมูล" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "ไม่สามารถสร้าง entity ใหม่ ในประเภทนี้ได้: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "ตัวอย่างเรียกข้อมูล (5 ผลลัพธ์แรก)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "ไม่สามารถเพิ่มแพคเกจลงในดัชนีค้นหาได้" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "ตัวอย่างเรียกข้อมูล (ผลลัพธ์มีคำว่า 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "ไม่สามารถปรับปรุง entity ประเภทนี้ได้: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "ตัวอย่างเรียกข้อมูล (โดยการใช้คำสั่ง SQL)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "ไม่สามารถปรับปรุงดัชนีค้นหา" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "ตัวอย่าง: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "ไม่สามารถลบ entity ประเภทนี้ได้: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "คำขอแบบ ajax (JSONP) พื้นฐาน เพื่อร้องขอข้อมูลผ่าน API โดยใช้ jQuery" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "ไม่มีการระบุรุ่น" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "ตัวอย่าง: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "ไม่พบรุ่นตาม id: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "ไม่มีข้อความค้นหา ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "ไม่สามารถอ่านพารามิเตอร์: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "รายละเอียด" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "ตัวเลือกการค้นหาไม่ถูกต้อง: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "บันทึก" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "ไม่ทราบการลงทะเบียน: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "ค่า qjson ผิดรูปแบบ: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "พารามิเตอร์ในการร้องขอต้องอยู่ในรูปแบบ json encoded dictionary" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "ไม่พบกลุ่ม" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "กำลังโหลด..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Data API" + +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "ประเภทของกลุ่มไม่ถูกต้อง" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "องค์กร" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "กลุ่ม" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "แท็ค" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "รูปแบบ" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "สัญญาอนุญาต" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "ความสัมพันธ์" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "ไม่ได้รับอนุญาตให้ปรับปรุงเป็นกลุ่ม" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "ไม่ได้รับอนุญาตให้สร้างกลุ่ม" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "ผู้ใช้ %r ไม่ได้รับอนุญาตให้แก้ไข %s" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "ถูกแก้ไขครั้งสุดท้าย" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "ข้อมูลไม่สมบูรณ์" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "ผู้ใช้ %r ไม่มีสิทธิ์ในการแก้ไข \"การอนุญาต\" %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "ไม่ได้รับการอนุญาตให้ลบกลุ่ม %s" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "ได้รับความสนใจ" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -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 "ข้อความกำหนดเอง" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "กลุ่มถูกลบออกแล้ว" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "ข้อความกำหนดเอง" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." +#: 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 "" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "ไม่ได้รับการอนุญาตให้เพิ่มสมาชิกลงในกลุ่ม %s" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "ไม่ได้รับการอนุญาตให้ลบสมาชิกในกลุ่ม %s" +#: 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/controllers/group.py:730 -msgid "Group member has been deleted." -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/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "ต้องเลือกสองรุ่นเพื่อทำการเปรียบเทียบ" +#: 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 ชุดข้อมูล" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "ประวัติการแก้ไขกลุ่มในระบบ CKAN" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "การเปลี่ยนแปลงกลุ่มล่าสุดในระบบ CKAN :" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "ผู้ติดตาม" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "ข้อความบันทึก:" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "ทรัพยากร" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "คุณกำลังติดตาม {0}" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "รูปภาพ" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "คุณไม่ได้ติดตาม {0}" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "ไม่ได้รับการอนุญาตให้ดูข้อมูลของผู้ติดตาม %s" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "ขณะนี้เว็บไซต์อยู่ในสถานะออฟไลน์ ฐานข้อมูลไม่ได้ถูกสร้าง" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "กรุณา ปรับปรุงข้อมูลผู้ใช้ และเพิ่มที่อยู่อีเมลของคุณ" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "%s ใช้อีเมลสำหรับการตั้งค่ารหัสผ่านใหม่" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "พารามิเตอร์ \"{parameter_name}\" ไม่ใช่ตัวเลข" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "ไม่พบชุดข้อมูล" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "รูปแบบรุ่นไม่ถูกต้อง: %r" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" msgstr "" -"ระบบไม่รองรับการดูชุดข้อมูล {package_type} ในรูปแบบ {format} " -"(ไม่พบไฟล์แม่แบบ {file})" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "ไม่ได้รับการอนุญาตให้อ่านแพคเกจ %s" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "ประวัติการแก้ไขชุดข้อมูลในระบบ CKAN " +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "การเปลี่ยนแปลงชุดข้อมูลล่าสุดในระบบ CKAN:" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "ไม่ได้รับการอนุญาตให้สร้างแพคเกจ" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "ไม่ได้รับการอนุญาตให้แก้ไขทรัพยากร" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "ไม่พบทรัพยากร" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "ไม่ได้รับการอนุญาตให้ปรับปรุงชุดข้อมูล" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "ไม่พบชุดข้อมูล {id} " +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "คุณต้องเพิ่มอย่างน้อยหนึ่งทรัพยากรข้อมูล" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "ผิดพลาด" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "ไม่ได้รับการอนุญาตให้สร้างทรัพยากร" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" msgstr "" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "ไม่สามารถเพิ่มแพคเกจลงในดัชนีค้นหา" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "ไม่สามารถปรับปรุงดัชนีค้นหา" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "ชุดข้อมูลได้ถูกลบออก" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "จำนวนชุดข้อมูลทั้งหมด" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "ไม่ได้รับอนุญาตให้ลบแพคเกจ %s" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "วันที่" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "ทรัพยากรได้ถูกลบออก" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "ชุดข้อมูลทั้งหมด" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "ไม่ได้รับการอนุญาตให้ลบทรัพยากร %s" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "รุ่นชุดข้อมูลต่อสัปดาห์" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "รุ่นของชุดข้อมูลทั้งหมด" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "ไม่พบข้อมูลทรัพยากร" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "ชุดข้อมูลใหม่" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "ไม่มีดาวน์โหลด" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "ชุดข้อมูลที่มีอันดับสูงสุด" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "ไม่ได้รับการอนุญาติให้อ่านชุดช้อมูล %s" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "เรตติ้งโดยเฉลี่ย" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "ไม่ได้รับการอนุญาตให้อ่านทรัพยากร %s" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "จำนวนเรตติ้ง" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "ไม่มีเรตติ้ง" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "ชุดข้อมูลที่มีการแก้ไขมากที่สุด" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "ชุดข้อมูล" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "จำนวนที่แก้ไข" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "ไม่มีชุดข้อมูลที่ถูกแก้ไข" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "ไม่ได้กำหนดตัวอย่างไว้" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "กลุ่มล่าสุด" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "ประวัติการแก้ไขคลัง CKAN " +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "กลุ่ม" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "การเปลี่ยนแปลงล่าสุดในคลัง CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "จำนวนของชุดข้อมูล" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "ชุดข้อมูลที่มีผลกระทบ: %s\n" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "ไม่มีกลุ่ม" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "ปรับปรุงรุ่นแล้ว" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "แท็คที่เป็นที่นิยม" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "อื่นๆ" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "ชื่อแท็ค" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "ไม่พบแท็ค" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "จำนวนชุดข้อมูล" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "ไม่พบผู้ใช้" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "ไม่อนุญาตให้ลงทะเบียนเป็นผู้ใช้" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "ผู้ใช้" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "ไม่อนุญาตให้สร้างผู้ใช้" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "เมนูสถิติ" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "ไม่อนุญาตให้ลบผู้ใช้ด้วย id \"{user_id}\"" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "จำนวนชุดข้อมูลทั้งหมด" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "ไม่ได้ระบุผู้ใช้" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "ไม่อนุญาตให้แก้ไขผู้ใช้ %s" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "ประวัติผู้ใช้ปรับปรุงแล้ว" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "ไม่อนุญาตให้สร้างผู้ใช้ %s" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Captcha ไม่ถูกต้อง กรุณาลองใหม่" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "เบราเซอร์ของคุณไม่สนับสนุน iframe" -#: ckan/controllers/user.py:265 +#: ckan/authz.py:182 #, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr " ผู้ใช้ \"%s\" ลงทะเบียนแล้วแต่คุณยังล็อกอินเป็น \"%s\" อยู่เหมือนเดิม" +msgid "Authorization function not found: %s" +msgstr "ไม่พบฟังก์ชั่นการอนุมัติ: %s " -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "ไม่อนุญาตให้แก้ไขผู้ใช้" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "ผู้ดูแลระบบ" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไข %s" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "บรรณาธิการ" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "" +#: ckan/authz.py:202 +msgid "Member" +msgstr "สมาชิก" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "ต้องเป็นผู้ดูแลระบบถึงจะจัดการได้" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "ชื่อไซต์" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "เข้าระบบล้มเหลว ชื่อผู้ใช้หรือรหัสผ่านผิด" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "รูปแบบ" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "ไม่ได้รับอนุญาตเพื่อขอตั้งรหัสผ่านใหม่" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "คำอธิบายของไซต์" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" ตรงกับผู้ใช้หลายคน" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "โลโก้ของไซต์" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "ไม่มีผู้ใช้: %s" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "กรุณาตรวจสอบกล่องจดหมายสำหรับโค้ดรีเซ็ต" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "ข้อความบนหน้า \"เกี่ยวกับ\"" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "ไม่สามารถส่งลิงก์รีเซ็ต: %s" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "ข้อความเกริ่นนำ" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "ไม่อนุญาตให้ตั้งรหัสผ่านใหม่" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "ข้อความบนหน้าหลัก" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "ตั้งค่ารหัสใหม่ไม่ถูกต้อง กรุณาลองอีกครั้ง" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "CSS ที่กำหนดเอง" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "รหัสผ่านของคุณได้รับการตั้งค่าใหม่" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "ได้แทรก CSS ที่ปรับแต่งได้ลงในส่วนหัวของหน้าไว้แล้ว" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "รหัสผ่านของคุณต้องมีความยาว 4 ตัวอักษรหรือมากกว่า" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "หน้าหลัก" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "รหัสผ่านที่คุณกรอกไม่ตรงกัน" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"ไม่สามารถถอดถอนแพคเกจ %s เนื่องจากรุ่นที่ %s ใช้แพคเกจ %s ที่ยังไม่ถูกลบ" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "คุณต้องระบุรหัสผ่าน" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "เกิดปัญหาในการถอดถอนรุ่น %s: %s" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "ไม่พบรายการที่ติดตาม" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "การถอดถอนเสร็จสมบูรณ์" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "ไม่พบ {0} " +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "การกระทำนี้ยังไม่ถูกสร้างขึ้น" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "ทุกอย่าง" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "ปฏิเสธการเข้าใช้" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "ค่าที่ขาดหาย" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "ไม่พบ" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "คำขอไม่เหมาะสม" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} เพิ่ม tag {tag} ไปยังชุดข้อมูล {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "ไม่รู้จักชื่อการกระทำนี้: %s" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} ปรับปรุงกลุ่ม {group}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON ผิดพลาด: %s" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} ปรับปรุงข้อมูลองค์กร {organization}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "ข้อมูลคำขอไม่เหมาะสม: %s" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} ปรับปรุงชุดข้อมูล {dataset}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "ไม่สามารถแสดง entity ประเภทนี้ได้: %s" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} แก้ไขส่วนขยาย {extra} ของชุดข้อมูล {dataset}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "ไม่สามารถอ่าน entity ประเภทนี้ได้: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} ปรับปรุงทรัพยากร {resource} ในชุดข้อมูล {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "ไม่สามารถสร้าง entity ใหม่ ในประเภทนี้ได้: %s %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} ปรับปรุงข้อมูลส่วนตัว" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "ไม่สามารถเพิ่มแพคเกจลงในดัชนีค้นหาได้" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} ลบกลุ่ม {group}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "ไม่สามารถปรับปรุง entity ประเภทนี้ได้: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} ลบองค์กร {organization}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "ไม่สามารถปรับปรุงดัชนีค้นหา" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} ลบชุดข้อมูล {dataset}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "ไม่สามารถลบ entity ประเภทนี้ได้: %s %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} ลบส่วนขยาย {extra} จากชุดข้อมูล {dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "ไม่มีการระบุรุ่น" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} ลบทรัพยากร {resource} จากชุดข้อมูล {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "ไม่พบรุ่นตาม id: %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} สร้างกลุ่ม {group}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "ไม่มีข้อความค้นหา ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} สร้างองค์กร {organization}" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "ไม่สามารถอ่านพารามิเตอร์: %r" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} สร้างชุดข้อมูล {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "ตัวเลือกการค้นหาไม่ถูกต้อง: %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} เพิ่มส่วนขยาย {extra} ไปยังชุดข้อมูล {dataset}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "ไม่ทราบการลงทะเบียน: %s" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} เพิ่มทรัพยากร {resource} ไปยังชุดข้อมูล {dataset}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "ค่า qjson ผิดรูปแบบ: %r" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} เข้าสู่ระบบ" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "พารามิเตอร์ในการร้องขอต้องอยู่ในรูปแบบ json encoded dictionary" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} ลบ tag {tag} จากชุดข้อมูล {dataset}" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "ไม่พบกลุ่ม" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} ได้ติดตาม {dataset}" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} ได้ติดตาม {user}" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "ประเภทของกลุ่มไม่ถูกต้อง" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} ได้ติดตาม {group}" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "องค์กร" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "มุมมอง" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +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/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "แท็ค" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "มกราคม" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "รูปแบบ" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "กุมภาพันธ์" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "สัญญาอนุญาต" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "มีนาคม" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "ผู้ใช้ %r ไม่ได้รับอนุญาตให้แก้ไข %s" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "เมษายน" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "ไม่ได้รับอนุญาตให้ปรับปรุงเป็นกลุ่ม" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "พฤษภาคม" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "ไม่ได้รับอนุญาตให้สร้างกลุ่ม" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "มิถุนายน" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "ข้อมูลไม่สมบูรณ์" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "กรกฎาคม" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "ผู้ใช้ %r ไม่มีสิทธิ์ในการแก้ไข \"การอนุญาต\" %s" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "สิงหาคม" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "ไม่ได้รับการอนุญาตให้ลบกลุ่ม %s" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "กันยายน" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "องค์กรถูกลบออกแล้ว" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "ตุลาคม" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "กลุ่มถูกลบออกแล้ว" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "พฤศจิกายน" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "ธันวาคม" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "เมื่อกี้" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "ไม่ได้รับการอนุญาตให้เพิ่มสมาชิกลงในกลุ่ม %s" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} นาทีที่ผ่านมา" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "ไม่ได้รับการอนุญาตให้ลบสมาชิกในกลุ่ม %s" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} ชั่วโมงที่ผ่านมา" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "สมาชิกในกลุ่มได้ถูกลบออกแล้ว" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} วันที่ผ่านมา" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "ต้องเลือกสองรุ่นเพื่อทำการเปรียบเทียบ" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} เดือนที่ผ่านมา " +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "ประวัติการแก้ไขกลุ่มในระบบ CKAN" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "{years} ปีที่ผ่านมา" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "การเปลี่ยนแปลงกลุ่มล่าสุดในระบบ CKAN :" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "ข้อความบันทึก:" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "คุณกำลังติดตาม {0}" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "คุณไม่ได้ติดตาม {0}" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KB" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "ไม่ได้รับการอนุญาตให้ดูข้อมูลของผู้ติดตาม %s" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MB" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "ขณะนี้เว็บไซต์อยู่ในสถานะออฟไลน์ ฐานข้อมูลไม่ได้ถูกสร้าง" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GB" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "กรุณา ปรับปรุงข้อมูลผู้ใช้ และเพิ่มที่อยู่อีเมลของคุณ" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TB" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s ใช้อีเมลสำหรับการตั้งค่ารหัสผ่านใหม่" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "พารามิเตอร์ \"{parameter_name}\" ไม่ใช่ตัวเลข" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "ไม่พบชุดข้อมูล" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "รูปแบบรุ่นไม่ถูกต้อง: %r" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "ไม่ได้รับการอนุญาตให้อ่านแพคเกจ %s" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "ประวัติการแก้ไขชุดข้อมูลในระบบ CKAN " -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "การเปลี่ยนแปลงชุดข้อมูลล่าสุดในระบบ CKAN:" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "ไม่ได้รับการอนุญาตให้สร้างแพคเกจ" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "ปรับปรุงภาพประจำตัวคุณที่ gravatar.com" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "ไม่ได้รับการอนุญาตให้แก้ไขทรัพยากร" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "ไม่ทราบ" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "ไม่ได้รับการอนุญาตให้ปรับปรุงชุดข้อมูล" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "ไม่ได้ตั้งชื่อทรัพยากร" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "ไม่พบชุดข้อมูล {id} " -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "สร้างชุดข้อมูลใหม่แล้ว" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "คุณต้องเพิ่มอย่างน้อยหนึ่งทรัพยากรข้อมูล" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "แก้ไขทรัพยากรแล้ว" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "ไม่ได้รับการอนุญาตให้สร้างทรัพยากร" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "แก้ไขการตั้งค่าแล้ว" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "จำนวนผู้ชม: {number} " +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "ไม่สามารถเพิ่มแพคเกจลงในดัชนีค้นหา" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "จำนวนผู้ชมล่าสุด: {number} " +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "ไม่สามารถปรับปรุงดัชนีค้นหา" -#: ckan/lib/mailer.py:39 +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "ชุดข้อมูลได้ถูกลบออก" + +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +msgid "Unauthorized to delete package %s" +msgstr "ไม่ได้รับอนุญาตให้ลบแพคเกจ %s" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "ไม่มีที่อยู่อีเมลของผู้รับ" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "ทรัพยากรได้ถูกลบออก" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "องค์กร" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "ไม่ได้รับการอนุญาตให้ลบทรัพยากร %s" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "กลุ่ม" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "ค่าที่ขาดหาย" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "ไม่พบข้อมูลทรัพยากร" -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "ค่า %(name)s ไม่ถูกต้อง" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "ไม่มีดาวน์โหลด" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "กรุณาใส่ค่าตัวเลข (จำนวนเต็ม)" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "ไม่ได้รับการอนุญาติให้อ่านชุดช้อมูล %s" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "ทรัพยากร" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "ไม่ได้รับการอนุญาตให้อ่านทรัพยากร %s" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "แพคเกจของทรัพยากรไม่ถูกต้อง" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "เพิ่มเติม" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "ไม่มีแท็คสำหรับคำศัพท์ \"%s\" " +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "ผู้ใช้" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "ชุดข้อมูล" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "กลุ่ม" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "ไม่ได้กำหนดตัวอย่างไว้" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "ไม่สามารถอ่านข้อมูล JSON" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "ประวัติการแก้ไขคลัง CKAN " -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "การเปลี่ยนแปลงล่าสุดในคลัง CKAN" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "ไม่มีองค์กรนี้" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "ชุดข้อมูลที่มีผลกระทบ: %s\n" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "คุณไม่สามารถเพิ่มชุดข้อมูลลงในองค์กรนี้" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "ปรับปรุงรุ่นแล้ว" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "ตัวเลขนี้ไม่ถูกต้อง" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "อื่นๆ" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "จะต้องเป็นจำนวนธรรมชาติ" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "ไม่พบแท็ค" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "จะต้องเป็นเลขจำนวนเต็มบวก" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "ไม่อนุญาตให้ลงทะเบียนเป็นผู้ใช้" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "รูปแบบข้อมูลวันที่ไม่ถูกต้อง" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "ไม่อนุญาตให้สร้างผู้ใช้" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "ไม่อนุญาตให้มีลิงก์ใน log_message" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "ไม่อนุญาตให้ลบผู้ใช้ด้วย id \"{user_id}\"" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "ไม่ได้ระบุผู้ใช้" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "ทรัพยากร" +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "ไม่อนุญาตให้แก้ไขผู้ใช้ %s" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "ไม่มีชื่อกลุ่มหรือ ID " +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "ไม่พบผู้ใช้" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "ประเภทกิจกรรม" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "ประวัติผู้ใช้ปรับปรุงแล้ว" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "ชื่อต้องเป็นตัวอักษรภาษาอังกฤษ" +#: ckan/controllers/user.py:245 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "ไม่อนุญาตให้สร้างผู้ใช้ %s" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "ไม่สามารถใช้ชื่อนี้ได้" +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Captcha ไม่ถูกต้อง กรุณาลองใหม่" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:265 #, python-format -msgid "Must be at least %s characters long" -msgstr "" +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr " ผู้ใช้ \"%s\" ลงทะเบียนแล้วแต่คุณยังล็อกอินเป็น \"%s\" อยู่เหมือนเดิม" + +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "ไม่อนุญาตให้แก้ไขผู้ใช้" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "ชื่อต้องมีความยาวไม่เกิน %i ตัวอักษร" +msgid "User %s not authorized to edit %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไข %s" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" msgstr "" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "URL นี้ถูกใช้แล้ว" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "" -#: ckan/logic/validators.py:365 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "ความยาวของชื่อ \"%s\" น้อยกว่าค่าขั้นต่ำ %s" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "ความยาวของชื่อ \"%s\" มากกว่าค่าสูงสุดสุด %s" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "เข้าระบบล้มเหลว ชื่อผู้ใช้หรือรหัสผ่านผิด" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "ชื่อเวอร์ชั่นยาวได้ไม่เกิน %i ตัวอักษร" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "ไม่ได้รับอนุญาตเพื่อขอตั้งรหัสผ่านใหม่" -#: ckan/logic/validators.py:393 +#: ckan/controllers/user.py:490 #, python-format -msgid "Duplicate key \"%s\"" -msgstr "กุญแจ \"%s\" ซ้ำ" - -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "ชื่อกลุ่มมีอยู่แล้วในฐานข้อมูล" +msgid "\"%s\" matched several users" +msgstr "\"%s\" ตรงกับผู้ใช้หลายคน" -#: ckan/logic/validators.py:415 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "แท็ค \"%s\" มีความยาวน้อยกว่าขั้นต่ำ %s" +msgid "No such user: %s" +msgstr "ไม่มีผู้ใช้: %s" -#: ckan/logic/validators.py:419 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "ความยาวของแท็ค \"%s\" เกินกว่าค่าสูงสุด %i" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "กรุณาตรวจสอบกล่องจดหมายสำหรับโค้ดรีเซ็ต" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "ค่าของ tag \"%s\" ต้องเป็นตัวอักษร ตัวเลขหรือตัว _-. เท่านั้น" +msgid "Could not send reset link: %s" +msgstr "ไม่สามารถส่งลิงก์รีเซ็ต: %s" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "ค่าแท็ค \"%s\" ต้องเป็นอักษรภาษาอังกฤษตัวเล็กเท่านั้น" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "ไม่อนุญาตให้ตั้งรหัสผ่านใหม่" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "ชื่อผู้ใช้ต้องเป็นตัวอักษร" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "ตั้งค่ารหัสใหม่ไม่ถูกต้อง กรุณาลองอีกครั้ง" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "ชื่อล๊อกอินนี้ไม่ว่าง" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "รหัสผ่านของคุณได้รับการตั้งค่าใหม่" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "กรุณาป้อนรหัสผ่านสองครั้ง" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "รหัสผ่านของคุณต้องมีความยาว 4 ตัวอักษรหรือมากกว่า" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "รหัสผ่านต้องเป็นตัวอักษร" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "รหัสผ่านที่คุณกรอกไม่ตรงกัน" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "รหัสผ่านของคุณต้องยาวกว่า 4 ตัว" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "คุณต้องระบุรหัสผ่าน" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "รหัสผ่านที่คุณป้อนไม่ตรงกัน" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "ไม่พบรายการที่ติดตาม" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "ไม่สามารถแก้ไขได้ กรุณาอย่าใส่ลิงก์ในคำอธิบายของคุณ" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "ไม่พบ {0} " -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "ชื่อต้องมีความยาวไม่น้อยกว่า %s ตัวอักษร" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "ทุกอย่าง" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "ชื่อคำศัพท์นี้ถูกใช้ไปแล้ว" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "ค่าที่ขาดหาย" -#: ckan/logic/validators.py:633 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." msgstr "" -"ไม่สามารถเปลี่ยนค่าของกุญแจจาก %s ไปเป็น %s " -"ได้เนื่องจากกุญแจนี้สามารถอ่านได้เท่านั้น" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "ไม่พบแท็คคำศัพท์นี้" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} เพิ่ม tag {tag} ไปยังชุดข้อมูล {dataset}" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "แท็ค %s ไม่ได้เป็นของคำศัพท์ %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} ปรับปรุงกลุ่ม {group}" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "ไม่มีชื่อแท็ค" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} ปรับปรุงข้อมูลองค์กร {organization}" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "แท็ค %s เป็นของคำศัพท์ %s" - -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "กรุณากรอก URL ที่ถูกต้อง" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} ปรับปรุงชุดข้อมูล {dataset}" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "ไม่มีหน้าที่นี้" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} แก้ไขส่วนขยาย {extra} ของชุดข้อมูล {dataset}" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "ชุดข้อมูลที่ไม่มีชื่อองค์กรไม่สามารถเป็นส่วนบุคคลได้" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} ปรับปรุงทรัพยากร {resource} ในชุดข้อมูล {dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "ไม่ใช่รายการ" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} ปรับปรุงข้อมูลส่วนตัว" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "ไม่ใช่ string" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} ลบกลุ่ม {group}" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "หลักนี้จะสร้างวนในลำดับชั้น" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} ลบองค์กร {organization}" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} ลบชุดข้อมูล {dataset}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} ลบส่วนขยาย {extra} จากชุดข้อมูล {dataset}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} ลบทรัพยากร {resource} จากชุดข้อมูล {dataset}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} สร้างกลุ่ม {group}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: สร้างวัตถุ %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} สร้างองค์กร {organization}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: สร้างความสัมพันธ์ของแพคเกจ: %s %s %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} สร้างชุดข้อมูล {dataset}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: สร้างวัตถุสัมพันธ์ %s" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} เพิ่มส่วนขยาย {extra} ไปยังชุดข้อมูล {dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "พยายามที่จะสร้างองค์กรเป็นกลุ่ม" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} เพิ่มทรัพยากร {resource} ไปยังชุดข้อมูล {dataset}" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "คุณต้องใส่รหัสแพคเกจหรือชื่อ (พารามิเตอร์ \"package\")" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} เข้าสู่ระบบ" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "คุณต้องทำการจัดอันดับ (พารามิเตอร์ \"rating\")" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} ลบ tag {tag} จากชุดข้อมูล {dataset}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "การให้คะแนนต้องเป็นค่าตัวเลข" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} ได้ติดตาม {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "การให้คะแนนต้องมีค่าระหว่าง %i ถึง %i" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} ได้ติดตาม {user}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} ได้ติดตาม {group}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "คุณต้องเข้าระบบเพื่อติดตามผู้ใช้" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "มุมมอง" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -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/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "คุณติดตามแล้ว {0} คน" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "มกราคม" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "คุณต้องเข้าระบบเพื่อติดตามชุดข้อมูล" +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "กุมภาพันธ์" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "ยังไม่มีผู้ใช้ชื่อ {username}" +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "มีนาคม" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "คุณต้องเข้าระบบเพื่อติดตามกลุ่ม" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "เมษายน" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "พฤษภาคม" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: ลบแพกเกจ: %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "มิถุนายน" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: ลบ %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "กรกฎาคม" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: ลบผู้ใช้: %s" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "สิงหาคม" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "รหัสผู้ใช้ไม่มีในข้อมูล" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "กันยายน" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "ไม่สามารถหาคำศัพท์ \"%s\"" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "ตุลาคม" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "ไม่เจอแท็ค \"%s\"" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "พฤศจิกายน" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "คุณต้องเข้าระบบเพื่อเลิกติดตาม" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "ธันวาคม" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "คุณยังไม่ได้ติดตาม {0}" +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "เมื่อกี้" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "ไม่พบทรัพยากร" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} นาทีที่ผ่านมา" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "อย่าระบุถ้าใช้พารามิเตอร์ \"query\"" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} ชั่วโมงที่ผ่านมา" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "ต้องเป็นคู่ : " +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} วันที่ผ่านมา" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "resource_search ไม่รับรู้ฟิลด์ \"{field}\" ในการสืบค้นข้อมูลทรัพยากร" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} เดือนที่ผ่านมา " -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "ไม่พบแพคเกจ" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "{years} ปีที่ผ่านมา" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: ปรับปรุงวัตถุ %s" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: ปรับปรุงความสัมพันธ์ของแพคเกจ: %s %s %s" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus ไม่พบความคืบหน้าของงาน" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "ไม่พบองค์กร" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KB" -#: 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/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MB" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขรายละเอียดกลุ่มนี้" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GB" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้เพิ่มชุดข้อมูลในองค์กรนี้" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TB" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขแพคเกจเหล่านี้" +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้สร้างกลุ่ม" +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้สร้างองค์กร" +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" -msgstr "ผู้ใช้ {user} ไม่ได้รับอนุญาตให้สร้างผู้ใช้ผ่านทาง API" +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "ไม่ได้รับอนุญาตให้สร้างผู้ใช้" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "ไม่พบกลุ่ม" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "ต้องมี API คีย์ที่ถูกต้องสำหรับการสร้างแพคเกจ" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "ต้องมี API คีย์ที่ถูกต้องสำหรับการสร้างกลุ่ม" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "ปรับปรุงภาพประจำตัวคุณที่ gravatar.com" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้เพิ่มสมาชิก" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "ไม่ทราบ" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขกลุ่ม %s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "ไม่ได้ตั้งชื่อทรัพยากร" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบทรัพยากร %s" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "สร้างชุดข้อมูลใหม่แล้ว" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "แก้ไขทรัพยากรแล้ว" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบความสัมพันธ์ %s" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "แก้ไขการตั้งค่าแล้ว" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบกลุ่ม" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "จำนวนผู้ชม: {number} " -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบกลุ่ม %s" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "จำนวนผู้ชมล่าสุด: {number} " -#: ckan/logic/auth/delete.py:103 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organizations" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบองค์กร" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบองค์กร %s" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "ไม่มีที่อยู่อีเมลของผู้รับ" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาติให้ลบสถานะของงาน task_status" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "องค์กร" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "ไม่ได้รับการอนุญาต" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "กลุ่ม" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้อ่านแพคเกจเหล่านี้" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "ค่าที่ขาดหาย" -#: ckan/logic/auth/get.py:130 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read package %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้อ่านแพคเกจ %s" +msgid "The input field %(name)s was not expected." +msgstr "ค่า %(name)s ไม่ถูกต้อง" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้อ่านทรัพยากร %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "กรุณาใส่ค่าตัวเลข (จำนวนเต็ม)" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "คุณจะต้องเข้าระบบเพื่อใช้หน้าปัดของคุณ" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "แพคเกจของทรัพยากรไม่ถูกต้อง" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขแพคเกจ %s" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "เพิ่มเติม" -#: ckan/logic/auth/update.py:71 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขทรัพยากร %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "ไม่มีแท็คสำหรับคำศัพท์ \"%s\" " -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตในการเปลี่ยนสถานะของแพคเก็จ %s" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "ไม่สามารถอ่านข้อมูล JSON" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไของค์กร %s" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "" -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้เปลี่ยนสถานะของกลุ่ม %s" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "ไม่มีองค์กรนี้" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขสิทธิ์ของกลุ่ม %s" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "คุณไม่สามารถเพิ่มชุดข้อมูลลงในองค์กรนี้" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "ต้องเข้าระบบเพื่อแก้ไขผู้ใช้" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "ตัวเลขนี้ไม่ถูกต้อง" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขผู้ใช้ %s" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "จะต้องเป็นจำนวนธรรมชาติ" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "จะต้องเป็นเลขจำนวนเต็มบวก" -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้เปลี่ยนสถานะของการแก้ไข" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "รูปแบบข้อมูลวันที่ไม่ถูกต้อง" -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ปรับปรุงตาราง task_status" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "ไม่อนุญาตให้มีลิงก์ใน log_message" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ปรับปรุงตาราง term_translation" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "ต้องการกุญแจของ API ที่ถูกต้องในการแก้ไขแพ็กเกจ " +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "ทรัพยากร" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "ต้องการกุญแจของ API ที่ถูกต้องในการแก้ไขกลุ่ม" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "ไม่มีชื่อกลุ่มหรือ ID " -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "ประเภทกิจกรรม" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "ชื่อต้องเป็นตัวอักษรภาษาอังกฤษ" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "ไม่สามารถใช้ชื่อนี้ได้" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "ชื่อต้องมีความยาวไม่เกิน %i ตัวอักษร" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" - -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" - -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "อื่นๆ (เปิด)" - -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "อื่นๆ (สาธารณสมบัติ)" - -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "อื่นๆ (แสดงที่มา)" - -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" - -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "ครีเอทีฟคอมมอนส์ ไม่ใช้เพื่อการค้า (ไม่ระบุรุ่น)" - -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "อื่นๆ (ไม่ใช่เพื่อการค้า)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "อื่นๆ (แบบไม่เปิด)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "URL นี้ถูกใช้แล้ว" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "ขึ้นกับ %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "ความยาวของชื่อ \"%s\" น้อยกว่าค่าขั้นต่ำ %s" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "ขึ้นกับ %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "ความยาวของชื่อ \"%s\" มากกว่าค่าสูงสุดสุด %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "เกิดขึ้นจาก %s" +msgid "Version must be a maximum of %i characters long" +msgstr "ชื่อเวอร์ชั่นยาวได้ไม่เกิน %i ตัวอักษร" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "มีที่มาจาก %s" +msgid "Duplicate key \"%s\"" +msgstr "กุญแจ \"%s\" ซ้ำ" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "ลิงก์ไปสู่ %s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "ชื่อกลุ่มมีอยู่แล้วในฐานข้อมูล" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "ลิงก์มาจาก %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "แท็ค \"%s\" มีความยาวน้อยกว่าขั้นต่ำ %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "เป็นลูกของ %s " +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "ความยาวของแท็ค \"%s\" เกินกว่าค่าสูงสุด %i" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "เป็นแม่ของ %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "ค่าของ tag \"%s\" ต้องเป็นตัวอักษร ตัวเลขหรือตัว _-. เท่านั้น" -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "มีพี่น้อง %s" +msgid "Tag \"%s\" must not be uppercase" +msgstr "ค่าแท็ค \"%s\" ต้องเป็นอักษรภาษาอังกฤษตัวเล็กเท่านั้น" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "กำลังโหลด..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "ชื่อผู้ใช้ต้องเป็นตัวอักษร" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "ไม่มีข้อมูล API สำหรับทรัพยากรนี้" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "ชื่อล๊อกอินนี้ไม่ว่าง" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "ไม่สามารถโหลดข้อมูลผ่าน API นี้ได้" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "กรุณาป้อนรหัสผ่านสองครั้ง" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "ไม่พบข้อมูลที่ค้นหา" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "รหัสผ่านต้องเป็นตัวอักษร" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "กำลังพิมพ์..." +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "รหัสผ่านของคุณต้องยาวกว่า 4 ตัว" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "อินพุตสั้นเกินไป กรุณาใส่อย่างน้อยหนึ่งตัวอักษร" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "รหัสผ่านที่คุณป้อนไม่ตรงกัน" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "ฟอร์มนี้มีการแก้ไขที่ยังไม่ได้ถูกบันทึก" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "ไม่สามารถแก้ไขได้ กรุณาอย่าใส่ลิงก์ในคำอธิบายของคุณ" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "กรุณายืนยันการกระทำ" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "ชื่อต้องมีความยาวไม่น้อยกว่า %s ตัวอักษร" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "คุณแน่ใจหรือไม่ที่จะทำ?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "ชื่อคำศัพท์นี้ถูกใช้ไปแล้ว" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "ยืนยัน" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"ไม่สามารถเปลี่ยนค่าของกุญแจจาก %s ไปเป็น %s " +"ได้เนื่องจากกุญแจนี้สามารถอ่านได้เท่านั้น" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "ยกเลิก" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "ไม่พบแท็คคำศัพท์นี้" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "ติดตาม" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "แท็ค %s ไม่ได้เป็นของคำศัพท์ %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "เลิกติดตาม" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "ไม่มีชื่อแท็ค" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "อัพโหลด" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "แท็ค %s เป็นของคำศัพท์ %s" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "ลิงก์" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "กรุณากรอก URL ที่ถูกต้อง" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "ถอดถอน" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "ไม่มีหน้าที่นี้" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "รูปภาพ" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "ชุดข้อมูลที่ไม่มีชื่อองค์กรไม่สามารถเป็นส่วนบุคคลได้" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "ไม่ใช่รายการ" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "ไฟล์" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "ไม่ใช่ string" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "อัพโหลดแฟ้มจากคอมพิวเตอร์ของคุณ" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "หลักนี้จะสร้างวนในลำดับชั้น" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "ลิงก์ไป URL บนอินเทอร์เน็ต (คุณสามารถลิงก์ไป API ได้เช่นกัน)" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "เรียงลำดับทรัพยากร" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "บันทึกลำดับ" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "กำลังบันทึก..." +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "อัพโหลดไฟล์" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "เกิดข้อผิดพลาด" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: สร้างวัตถุ %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "อัพโหลดทรัพยากรแล้ว" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: สร้างความสัมพันธ์ของแพคเกจ: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "ไม่สามารถอัพโหลดแฟ้ม" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: สร้างวัตถุสัมพันธ์ %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "ไม่สามารถที่จะตรวจสอบการอัพโหลด" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "พยายามที่จะสร้างองค์กรเป็นกลุ่ม" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "ไม่สามารถที่จะดึงข้อมูลจากไฟล์ที่อัพโหลดมา" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "คุณต้องใส่รหัสแพคเกจหรือชื่อ (พารามิเตอร์ \"package\")" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"คุณกำลังอัพโหลดไฟล์อยู่ กรุณายืนยันว่าคุณต้องการเปลี่ยนไปหน้าอื่น " -"และหยุดการอัพโหลดนี้" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "คุณต้องทำการจัดอันดับ (พารามิเตอร์ \"rating\")" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "การให้คะแนนต้องเป็นค่าตัวเลข" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "แก้ไข" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "แสดงอีก" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "ซ่อน" - -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/action/create.py:905 #, 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" +msgid "Rating must be between %i and %i." +msgstr "การให้คะแนนต้องมีค่าระหว่าง %i ถึง %i" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "คุณต้องเข้าระบบเพื่อติดตามผู้ใช้" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "การตั้งค่าของผู้ดูแลระบบ" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "คุณไม่สามารถทำการติดตามตัวเองได้" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "ดูโปรไฟล์" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "คุณติดตามแล้ว {0} คน" -#: ckan/templates/header.html:26 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "หน้าปัด (%(num)d new items)" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "คุณต้องเข้าระบบเพื่อติดตามชุดข้อมูล" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "หน้าปัดข้อมูล" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "ยังไม่มีผู้ใช้ชื่อ {username}" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "แก้ไขการตั้งค่า" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "คุณต้องเข้าระบบเพื่อติดตามกลุ่ม" -#: ckan/templates/header.html:37 -msgid "Settings" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "ออกจากระบบ" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: ลบแพกเกจ: %s" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "เข้าสู่ระบบ" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: ลบ %s" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "ลงทะเบียน" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: ลบผู้ใช้: %s" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "ชุดข้อมูล" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "รหัสผู้ใช้ไม่มีในข้อมูล" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "ค้นหาชุดข้อมูล" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "ไม่สามารถหาคำศัพท์ \"%s\"" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "ค้นหา" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "ไม่เจอแท็ค \"%s\"" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "คุณต้องเข้าระบบเพื่อเลิกติดตาม" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "แสดงผลน้อยลง" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "คุณยังไม่ได้ติดตาม {0}" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "แสดงผลเพิ่ม" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "ไม่พบทรัพยากร" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "ไม่มีกิจกรรมใด ๆ ในสตรีมกิจกรรมนี้" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "อย่าระบุถ้าใช้พารามิเตอร์ \"query\"" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "ผู้ดูแล" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "ต้องเป็นคู่ : " -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "ผู้ดูแลระบบ" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "resource_search ไม่รับรู้ฟิลด์ \"{field}\" ในการสืบค้นข้อมูลทรัพยากร" -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "การปรับแต่ง" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "ไม่พบแพคเกจ" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "ถังขยะ" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: ปรับปรุงวัตถุ %s" -#: ckan/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "คุณแน่ใจหรือไม่ที่จะรีเซ็ทการปรับแต่ง?" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: ปรับปรุงความสัมพันธ์ของแพคเกจ: %s %s %s" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "ตั้งค่าใหม่" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus ไม่พบความคืบหน้าของงาน" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "ปรับปรุงการปรับแต่ง" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "ไม่พบองค์กร" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "ตัวเลือกการปรับแต่ง CKAN" +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 #, 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> ของทุกหน้า " -"หากคุณต้องการปรับแต่งแม่แบบเพิ่มเติม เราขอแนะนำให้อ่านเอกสารอ้างอิง

หน้าหลัก: " -"สำหรับเลือกรูปแบบการจัดเรียงของโมดูลที่มีเตรียมไว้ให้

" +msgid "User %s not authorized to edit these groups" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขรายละเอียดกลุ่มนี้" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "ยืนยันการตั้งค่าใหม่" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้เพิ่มชุดข้อมูลในองค์กรนี้" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "ไม่พบแพคเกจสำหรับทรัพยากรนี้และไม่สามารถตรวจสอบความถูกต้องได้" + +#: ckan/logic/auth/create.py:76 #, 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

" +msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขแพคเกจเหล่านี้" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้สร้างกลุ่ม" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้สร้างองค์กร" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "เข้าถึงทรัพยากรข้อมูลผ่าน API ของเว็บด้วยภาษาสอบถามที่ทรงพลัง" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "ผู้ใช้ {user} ไม่ได้รับอนุญาตให้สร้างผู้ใช้ผ่านทาง API" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "ไม่ได้รับอนุญาตให้สร้างผู้ใช้" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "ปลายทาง" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "ไม่พบกลุ่ม" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "Data API สามารถเข้าถึงได้ด้วยการเรียกใช้ CKAN action API" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "ต้องมี API คีย์ที่ถูกต้องสำหรับการสร้างแพคเกจ" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr " สร้าง" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "ต้องมี API คีย์ที่ถูกต้องสำหรับการสร้างกลุ่ม" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr " ปรับปรุง/เพิ่ม" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้เพิ่มสมาชิก" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "เรียกดูข้อมูล" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขกลุ่ม %s" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "เรียกดูข้อมูล (ผ่าน SQL)" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบทรัพยากร %s" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "กำลังเรียกข้อมูล" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "ตัวอย่างเรียกข้อมูล (5 ผลลัพธ์แรก)" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบความสัมพันธ์ %s" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "ตัวอย่างเรียกข้อมูล (ผลลัพธ์มีคำว่า 'jones')" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบกลุ่ม" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "ตัวอย่างเรียกข้อมูล (โดยการใช้คำสั่ง SQL)" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบกลุ่ม %s" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "ตัวอย่าง: Javascript" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบองค์กร" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "คำขอแบบ ajax (JSONP) พื้นฐาน เพื่อร้องขอข้อมูลผ่าน API โดยใช้ jQuery" +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบองค์กร %s" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "ตัวอย่าง: Python" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาติให้ลบสถานะของงาน task_status" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "ทรัพยากรนี้ไม่สามารถแสดงตัวอย่างได้ในขณะนี้" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "ไม่ได้รับการอนุญาต" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "คลิกที่นี่สำหรับข้อมูลเพิ่มเติม" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้อ่านแพคเกจเหล่านี้" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "ดาวน์โหลดทรัพยากร" +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้อ่านแพคเกจ %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "เบราเซอร์ของคุณไม่สนับสนุน iframe" +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้อ่านทรัพยากร %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "ไม่มีตัวอย่าง" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "ข้อมูลเพิ่มเติม..." +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "คุณจะต้องเข้าระบบเพื่อใช้หน้าปัดของคุณ" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:39 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "ไม่มีการกำหนดวิธีจัดการชนิดข้อมูลประเภทนี้ไว้: %(type)s" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "มาตรฐาน" +msgid "User %s not authorized to edit package %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขแพคเกจ %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "มาตรฐานอินพุต" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขทรัพยากร %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "ขนาดกลาง" +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตในการเปลี่ยนสถานะของแพคเก็จ %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "อินพุตขนาดกลาง" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไของค์กร %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "เต็ม" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้เปลี่ยนสถานะของกลุ่ม %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "อินพุตเต็มความกว้าง" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขสิทธิ์ของกลุ่ม %s" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "ขนาดใหญ่" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "ต้องเข้าระบบเพื่อแก้ไขผู้ใช้" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "อินพุตขนาดใหญ่" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขผู้ใช้ %s" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "เติมด้านหน้า" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "เติมด้านหน้าอินพุต" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้เปลี่ยนสถานะของการแก้ไข" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "ฟิลด์กำหนดเอง (ว่าง)" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ปรับปรุงตาราง task_status" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "ฟิลด์กำหนดเอง" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ปรับปรุงตาราง term_translation" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "ต้องการกุญแจของ API ที่ถูกต้องในการแก้ไขแพ็กเกจ " -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Textarea" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "ต้องการกุญแจของ API ที่ถูกต้องในการแก้ไขกลุ่ม" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "เลือก" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "ความเคลื่อนไหว" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: 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/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "เพิ่มกลุ่ม" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "ฟอร์มกลุ่ม" - -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:16 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -msgid "Confirm Delete" -msgstr "ยืนยันการลบ" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "คุณแน่ใจว่าต้องการลบกลุ่ม - {name} ?" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: 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/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "จัดการ" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "แก้ไขกลุ่ม" +#: ckan/model/license.py:301 +msgid "Other (Open)" +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/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "อื่นๆ (สาธารณสมบัติ)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "ผู้ติดตาม" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "อื่นๆ (แสดงที่มา)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "ประวัติ" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "เพิ่มกลุ่ม" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "ครีเอทีฟคอมมอนส์ ไม่ใช้เพื่อการค้า (ไม่ระบุรุ่น)" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "ค้นหากลุ่ม..." +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "อื่นๆ (ไม่ใช่เพื่อการค้า)" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "เรียงชื่อตามลำดับตัวอักษร (ก-ฮ)" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "อื่นๆ (แบบไม่เปิด)" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "เรียงชื่อตามลำดับตัวอักษร (ฮ-ก)" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "ขึ้นกับ %s" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "ยังไม่มีกลุ่มสำหรับไซต์นี้" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "ขึ้นกับ %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "ต้องการสร้างหรือไม่?" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "เกิดขึ้นจาก %s" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "กลับไปยังสมาชิกทั้งหมด" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "มีที่มาจาก %s" -#: 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/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "ลิงก์ไปสู่ %s" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "เพิ่มสมาชิก" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "ลิงก์มาจาก %s" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "ผู้ใช้งานที่มีอยู่ก่อนแล้ว" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "เป็นลูกของ %s " -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "ถ้าคุณต้องการเพิ่มผู้ใช้ที่มีอยู่ กรุณาค้นหาชื่อด้านล่างนี้" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "เป็นแม่ของ %s" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "หรือ" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "มีพี่น้อง %s" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "ผู้ใช้ใหม่" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "ไม่มีข้อมูล API สำหรับทรัพยากรนี้" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "ถ้าคุณต้องการเชิญผู้ใช้ใหม่ กรอกที่อยู่อีเมลของพวกเขา" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "ไม่สามารถโหลดข้อมูลผ่าน API นี้ได้" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "หน้าที่" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "กำลังพิมพ์..." -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "คุณแน่ใจว่าต้องการลบสมาชิกนี้?" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "ไม่พบข้อมูลที่ค้นหา" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "ลบ" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:61 -msgid "Save" -msgstr "บันทึก" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "ฟอร์มนี้มีการแก้ไขที่ยังไม่ได้ถูกบันทึก" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "มีหน้าที่อะไร?" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "กรุณายืนยันการกระทำ" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

ผู้ดูแลระบบ: สามารถเปลี่ยนแปลงข้อมูลของกลุ่ม " -"และจัดการสมาชิกขององค์กร

สมาชิก: " -"สามารถเพิ่ม/ลบชุดข้อมูลของกลุ่ม

" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +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/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "ยืนยัน" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "ปรับปรุงกลุ่ม" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "สร้างกลุ่ม" - -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "ความสัมพันธ์" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "ถูกแก้ไขครั้งสุดท้าย" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "เลิกติดตาม" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "ได้รับความสนใจ" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "ติดตาม" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "ค้นหาชุดข้อมูล..." +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "ลิงก์" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "ชุดข้อมูลในกลุ่ม:{group}" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "ลิงก์ไป URL บนอินเทอร์เน็ต (คุณสามารถลิงก์ไป API ได้เช่นกัน)" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "การปรับรุ่นล่าสุด" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "อัพโหลด" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "ชื่อ" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "ถอดถอน" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "กลุ่มของฉัน" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "อัพโหลดแฟ้มจากคอมพิวเตอร์ของคุณ" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "my-group" +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "รายละเอียด" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "ไฟล์" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "ข้อมูลเบื้องต้นเกี่ยวกับกลุ่มของฉัน..." +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "บันทึกลำดับ" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "คุณแน่ใจว่าต้องการลบกลุ่มนี้?" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "กำลังบันทึก..." -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "บันทึกกลุ่ม" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "อัพโหลดไฟล์" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} ชุดข้อมูล" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "เกิดข้อผิดพลาด" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 ชุดข้อมูล" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "ไม่สามารถอัพโหลดแฟ้ม" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "ดู {name}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "ไม่สามารถที่จะตรวจสอบการอัพโหลด" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "เอาชุดข้อมูลนี้ออกจากกลุ่ม" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "อัพโหลดทรัพยากรแล้ว" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "กลุ่มคืออะไร?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "ไม่สามารถที่จะดึงข้อมูลจากไฟล์ที่อัพโหลดมา" -#: ckan/templates/group/snippets/helper.html:8 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 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. " +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" msgstr "" -"คุณสามารถใช้กลุ่ม CKAN ในการสร้างและจัดการชุดข้อมูล " -"ไม่ว่าจะเป็นการสร้างแค็ตตาล็อกสำหรับชุดข้อมูลสำหรับโปรเจ็คต์ ทีม หรือธีม " -"หรือเป็นวิธีง่ายๆ ในการให้ผู้ค้าหาชุดข้อมูลของคุณได้" +"คุณกำลังอัพโหลดไฟล์อยู่ กรุณายืนยันว่าคุณต้องการเปลี่ยนไปหน้าอื่น " +"และหยุดการอัพโหลดนี้" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "เปรียบเทียบ" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "ลบแล้ว" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "อ่านต่อ" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "แก้ไข" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "การแก้ไข" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "แสดงอีก" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "ประทับเวลา" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "ซ่อน" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "ผู้แต่ง" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "ผิดพลาด %(error_code)s" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "บันทึกข้อความ" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "เกี่ยวกับ {0}" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "ยินดีต้อนรับ" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" -#: 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/

" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" 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 +#: ckan/templates/footer.html:24 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 " +"Powered by CKAN" msgstr "" -"พื้นที่สำหรับใส่ข้อความสั้นๆ แนะนำภาพรวมของ CKAN หรือของไซท์ " -"เรายังไม่มีข้อความแนะนำมาให้ในส่วนนี้ แต่จะมีให้ในอนาคต" +"Powered by CKAN" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "นี่คือส่วนที่แนะนำ" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "การตั้งค่าของผู้ดูแลระบบ" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "ดูโปรไฟล์" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "" +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "หน้าปัด (%(num)d new items)" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "หน้าปัดข้อมูล" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "แก้ไขการตั้งค่า" + +#: ckan/templates/header.html:37 +msgid "Settings" msgstr "" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} สถิติ" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "ออกจากระบบ" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "ชุดข้อมูล" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "เข้าสู่ระบบ" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "ลงทะเบียน" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" msgstr "ชุดข้อมูล" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "องค์กร" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "ค้นหาชุดข้อมูล" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "กลุ่ม" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "ค้นหา" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "แสดงผลน้อยลง" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "แสดงผลเพิ่ม" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "ไม่มีกิจกรรมใด ๆ ในสตรีมกิจกรรมนี้" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "ผู้ดูแล" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "ผู้ดูแลระบบ" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "การปรับแต่ง" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "ถังขยะ" + +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "คุณแน่ใจหรือไม่ที่จะรีเซ็ทการปรับแต่ง?" + +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "ตั้งค่าใหม่" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "ปรับปรุงการปรับแต่ง" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "ตัวเลือกการปรับแต่ง CKAN" + +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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/macros/form.html:265 -msgid "This field is required" -msgstr "ต้องการฟิลด์นี้" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "ยืนยันการตั้งค่าใหม่" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "กำหนดเอง" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -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/macros/form.html:395 -msgid "Required field" -msgstr "ฟิลด์ที่ต้องการ" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL ของรูปภาพ" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "ทรัพยากรนี้ไม่สามารถแสดงตัวอย่างได้ในขณะนี้" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "ล้างการอัพโหลดนี้" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "คลิกที่นี่สำหรับข้อมูลเพิ่มเติม" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "ฟอร์มสำหรับองค์กร" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "ดาวน์โหลดทรัพยากร" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "แก้ไขชุดข้อมูล" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "ไม่มีตัวอย่าง" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "เพิ่มชุดข้อมูล" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "ข้อมูลเพิ่มเติม..." -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "พบแล้วสำหรับ \"{query}\"" +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "ไม่มีการกำหนดวิธีจัดการชนิดข้อมูลประเภทนี้ไว้: %(type)s" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "ไม่สามารถหาชุดข้อมูลจาก \"{query}\" นี้ได้" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "มาตรฐาน" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "ทำให้เป็นสาธารณะ" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "มาตรฐานอินพุต" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "ทำให้เป็นเป็นส่วนตัว" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "ขนาดกลาง" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "ร่าง" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "อินพุตขนาดกลาง" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "ส่วนตัว" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "เต็ม" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "ไม่พบชุดข้อมูลเกี่ยวกับองค์กรนี้" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "อินพุตเต็มความกว้าง" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "กรุณายืนยันว่าคุณต้องการลบองค์กร - {name}" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +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/development/snippets/form.html:8 +msgid "Large Input" +msgstr "อินพุตขนาดใหญ่" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "เพิ่มองค์กร" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "เติมด้านหน้า" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "ค้นหาองค์กร..." +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "เติมด้านหน้าอินพุต" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "ไม่มีองค์กรสำหรับไซต์นี้" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "ฟิลด์กำหนดเอง (ว่าง)" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "ชื่อผู้ใช้" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "ฟิลด์กำหนดเอง" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "ปรับปรุงสมาชิก" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textarea" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

Admin:เพิ่ม/แก้ไข/ลบ ชุดข้อมูล " -"และจัดการสมาชิกขององค์กร

" -"

บรรณาธิการ:สามารถเพิ่มหรือแก้ไขชุดข้อมูลแต่ไม่สามารถจัดการสมาชิกองค์กรได้

" -"

สมาชิก: " -"สามารถดูชุดข้อมูลส่วนบุคคลขององค์กรคุณได้แต่ไม่สามารถเพิ่มชุดข้อมูลใหม่ได้

" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "เลือก" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "สร้างองค์กรใหม่" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "ความเคลื่อนไหว" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -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/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "สร้างองค์กรใหม่" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "เพิ่มกลุ่ม" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "เพิ่มชุดข้อมูล" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "ฟอร์มกลุ่ม" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" +#: ckan/templates/group/confirm_delete.html:3 +#: ckan/templates/group/confirm_delete.html:15 +#: ckan/templates/group/confirm_delete_member.html:3 +#: ckan/templates/group/confirm_delete_member.html:16 +#: ckan/templates/organization/confirm_delete.html:3 +#: ckan/templates/organization/confirm_delete.html:15 +#: ckan/templates/organization/confirm_delete_member.html:3 +#: ckan/templates/organization/confirm_delete_member.html:16 +#: ckan/templates/package/confirm_delete.html:3 +#: ckan/templates/package/confirm_delete.html:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "ยืนยันการลบ" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "อะไรคือองค์กร?" +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "คุณแน่ใจว่าต้องการลบกลุ่ม - {name} ?" -#: 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/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/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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "จัดการ" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "องค์กรของฉัน" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "แก้ไขกลุ่ม" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "my-organization" +#: ckan/templates/group/edit_base.html:23 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/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "ประวัติ" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "เพิ่มกลุ่ม" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "ค้นหากลุ่ม..." + +#: ckan/templates/group/index.html: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/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -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/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "คุณแน่ใจว่าคุณต้องการลบองค์กรนี้ ซึ่งจะลบชุดข้อมูลทั้งหมดขององค์กรนี้" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "เพิ่มสมาชิก" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "บันทึกองค์กร" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "ผู้ใช้งานที่มีอยู่ก่อนแล้ว" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "ดู {organization_name}" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "ถ้าคุณต้องการเพิ่มผู้ใช้ที่มีอยู่ กรุณาค้นหาชื่อด้านล่างนี้" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "สร้างชุดข้อมูล" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "หรือ" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "อะไรคือข้อมูล?" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +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/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "ถ้าคุณต้องการเชิญผู้ใช้ใหม่ กรอกที่อยู่อีเมลของพวกเขา" -#: ckan/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "คุณแน่ใจว่าคุณต้องการลบชุดข้อมูล - {name}?" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "หน้าที่" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "คุณแน่ใจว่าคุณต้องการลบทรัพยากร - {name}?" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "คุณแน่ใจว่าต้องการลบสมาชิกนี้?" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "ดูชุดข้อมูล" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "ลบ" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "แก้ไขข้อมูลเมตา" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +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" +#: ckan/templates/group/member_new.html:80 +msgid "" +"

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

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

" msgstr "" +"

ผู้ดูแลระบบ: สามารถเปลี่ยนแปลงข้อมูลของกลุ่ม " +"และจัดการสมาชิกขององค์กร

สมาชิก: " +"สามารถเพิ่ม/ลบชุดข้อมูลของกลุ่ม

" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "ดูตัวอย่าง" +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "สร้างกลุ่ม" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "ปรับปรุง" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "ปรับปรุงกลุ่ม" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "เชื่อมโยงกลุ่มนี้กับข้อมูลชุดนี้" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "สร้างกลุ่ม" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "เพิ่มไปที่กลุ่มนี้" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "ค้นหาชุดข้อมูล..." -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "ไม่มีกลุ่มที่เกี่ยวข้องกับชุดข้อมูลนี้" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "ชุดข้อมูลในกลุ่ม:{group}" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "ปรับปรุงชุดข้อมูล" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "การปรับรุ่นล่าสุด" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "เพิ่มข้อมูลไปที่ชุดข้อมูลนี้" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "ชื่อ" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "เพิ่มทรัพยากรใหม่" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +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/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "my-group" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "ทรัพยากรใหม่" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +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/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +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/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "บันทึกกลุ่ม" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "เพิ่ม" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "ดู {name}" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: 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 "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +" 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 "" -"นี่เป็นชุดข้อมูลรุ่นเก่าที่ถูกแก้ไขเมื่อ %(timestamp)s ซึ่งอาจจะแตกต่างจาก " -"รุ่นปัจจุบัน." - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "อัพโหลดไปที่จัดเก็บข้อมูล" +"คุณสามารถใช้กลุ่ม CKAN ในการสร้างและจัดการชุดข้อมูล " +"ไม่ว่าจะเป็นการสร้างแค็ตตาล็อกสำหรับชุดข้อมูลสำหรับโปรเจ็คต์ ทีม หรือธีม " +"หรือเป็นวิธีง่ายๆ ในการให้ผู้ค้าหาชุดข้อมูลของคุณได้" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "มีปัญหาในการอัพโหลด: " +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "เปรียบเทียบ" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "ข้อผิดพลาด:" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "ลบแล้ว" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "อ่านต่อ" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "สถานะ" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "การแก้ไข" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "ปรับปรุงครั้งล่าสุด" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "ประทับเวลา" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "ไม่เคย" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "ผู้แต่ง" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "บันทึกการอัพโหลด" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "บันทึกข้อความ" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "รายละเอียด" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "ยินดีต้อนรับ" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -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/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "ทรัพยากรทั้งหมด" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "ยินดีต้อนรับสู่ CKAN" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -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 หรือของไซท์ " +"เรายังไม่มีข้อความแนะนำมาให้ในส่วนนี้ แต่จะมีให้ในอนาคต" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "แก้ไขทรัพยากร" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "นี่คือส่วนที่แนะนำ" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "ที่จัดเก็บข้อมูล" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" msgstr "" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API ปลายทาง" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "ไปสู่ทรัพยากร" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} สถิติ" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "ดาวน์โหลด" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "ชุดข้อมูล" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "ชุดข้อมูล" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "จากตัวคัดย่อชุดข้อมูล" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "องค์กร" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "แหล่ง: %(dataset)s" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "กลุ่ม" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" msgstr "" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" msgstr "" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "ต้องการฟิลด์นี้" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "กำหนดเอง" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "แบบฟอร์มมีข้อมูลที่กรอกผิด:" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "ฟิลด์ที่ต้องการ" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "ข้อมูลเพิ่มเติม" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "ฟิลด์" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL ของรูปภาพ" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "ค่า" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "ล้างการอัพโหลดนี้" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "ไม่ทราบ" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "ฟอร์มสำหรับองค์กร" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "สร้างแล้ว" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "แก้ไขชุดข้อมูล" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "รูปแบบ" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "เพิ่มชุดข้อมูล" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "สัญญาอนุญาต" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "พบแล้วสำหรับ \"{query}\"" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "ไม่สามารถหาชุดข้อมูลจาก \"{query}\" นี้ได้" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "ทำให้เป็นสาธารณะ" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "เพิ่มทรัพยากรใหม่" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "ทำให้เป็นเป็นส่วนตัว" + +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "ร่าง" + +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "ส่วนตัว" + +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "ไม่พบชุดข้อมูลเกี่ยวกับองค์กรนี้" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

ชุดข้อมูลนี้ไม่มีข้อมูล ลองเพิ่มดูไหม?

" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "กรุณายืนยันว่าคุณต้องการลบองค์กร - {name}" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: 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/package/search.html:53 -msgid "API Docs" -msgstr "คู่มือ API" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "เพิ่มองค์กร" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "ถ่ายโอนข้อมูลเต็ม {format}" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +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 "" -"คุณสามารถเข้าถึงคลังทาง %(api_link)s (ให้ดู %(api_doc_link)s) หรือดาวน์โหลด " -"%(dump_link)s." +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +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 "คุณสามารถเข้าถึงคลังทาง %(api_link)s (ให้ดู %(api_doc_link)s). " +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "ชื่อผู้ใช้" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" msgstr "" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "ปรับปรุงสมาชิก" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" +#: ckan/templates/organization/member_new.html:81 +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/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/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "สร้างองค์กรใหม่" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "หมายเลขรุ่น" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "ปรับปรุงองค์กร" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "สภาพ" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "สร้างองค์กรใหม่" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "เพิ่มชุดข้อมูล" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "อะไรคือองค์กร?" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Data API" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "องค์กรของฉัน" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "หัวข้อ" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "my-organization" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "ตัวอย่าง: หัวข้อที่สื่อความหมาย " +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "ข้อมูลเบื้องต้นเกี่ยวกับองค์กรของฉัน" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "ตัวอย่าง: my-dataset" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "คุณแน่ใจว่าคุณต้องการลบองค์กรนี้ ซึ่งจะลบชุดข้อมูลทั้งหมดขององค์กรนี้" -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "ตัวอย่าง: คำบรรยายอื่น ๆ เกี่ยวกับข้อมูล" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "บันทึกองค์กร" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"สามารถดูข้อมูลเกี่ยวกับประเภทลิขสิทธิ์ต่างได้ที่ opendefinition.org" - -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "องค์กร" +"ใน CKAN ชุดข้อมูลคือการรวบรวมของชุดข้อมูล (เช่นไฟล์) คำอธิบายและอื่นๆ บน URL" +" หนึ่ง ชุดข้อมูลคือสิ่งที่ผู้ใช้เห็นเวลาค้นหาข้อมูล" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "ไม่มีองค์กร" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "คุณแน่ใจว่าคุณต้องการลบชุดข้อมูล - {name}?" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "ทัศนวิสัย" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "คุณแน่ใจว่าคุณต้องการลบทรัพยากร - {name}?" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "สาธารณะ" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "ดูชุดข้อมูล" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "ทำงาน" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +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." +#: 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/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "คุณแน่ใจที่จะลบชุดข้อมูลนี้" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "ดูตัวอย่าง" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "ปรับปรุง" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "ต่อไป: เพิ่มข้อมูล" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +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/group_list.html:14 +msgid "Add to group" +msgstr "เพิ่มไปที่กลุ่มนี้" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "ปรับปรุงชุดข้อมูล" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "อีเมลผู้แต่ง" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "เพิ่มทรัพยากรใหม่" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "ปรับปรุงทรัพยากร" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "ทรัพยากรใหม่" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: 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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: 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/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "ตัวอย่าง ราคาทองคำ มกราคม 2011" - -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "คำอธิบายที่เป็นประโยชน์ต่อข้อมูล" - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "ตัวอย่าง CSV, XML หรือ JSON" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "เพิ่ม" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"นี่เป็นชุดข้อมูลรุ่นเก่าที่ถูกแก้ไขเมื่อ %(timestamp)s ซึ่งอาจจะแตกต่างจาก " +"รุ่นปัจจุบัน." -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "ตัวอย่าง 2012-06-05" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "ทรัพยากรทั้งหมด" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "ขนาดไพล์" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "ชมทรัพยากร" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "ตัวอย่าง 1024" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "แก้ไขทรัพยากร" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "ประเภท MIME " +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "ตัวอย่าง application/json" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API ปลายทาง" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "คุณแน่ใจที่จะลบทรัพยากรนี้" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "ไปสู่ทรัพยากร" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "ก่อนหน้า" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "ดาวน์โหลด" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "บันทึกและเพิ่มรายการ" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "สิ้นสุด" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "จากตัวคัดย่อชุดข้อมูล" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "อะไรคือทรัพยากร" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "แหล่ง: %(dataset)s" -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." msgstr "" -"ทรัพยากรสามารถเป็นไฟล์หรือลิ้งค์ที่เชื่อมไปยังไฟล์ข้อมูลที่เป็นประโยชน์" - -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "สำรวจ" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "ข้อมูลเพิ่มเติม" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "ฝังตัว" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 +#: ckan/templates/package/resource_read.html:122 msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +"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/snippets/resource_view.html:69 -msgid "Width" -msgstr "" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "ข้อมูลเพิ่มเติม" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "ฟิลด์" + +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "ค่า" + +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "โค้ด" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "ไม่ทราบ" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "ข้อมูลและทรัพยากร" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "สร้างแล้ว" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "รูปแบบ" + +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "สัญญาอนุญาต" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" msgstr "" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "อ่านชุดข้อมูลตั้งแต่ %s" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -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:26 +#, python-format +msgid "" +"

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

" +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/search.html:52 +msgid "API" +msgstr "API" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "คู่มือ API" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "ถ่ายโอนข้อมูลเต็ม {format}" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" +#: 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/snippets/view_form_filters.html:28 -msgid "Remove Filter" -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 "คุณสามารถเข้าถึงคลังทาง %(api_link)s (ให้ดู %(api_doc_link)s). " -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" msgstr "" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" msgstr "" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" msgstr "" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "ความแตกต่าง" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "ความแตกต่างระหว่างแต่ละการแก้ไข" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "ข้อมูลเพิ่มเติม" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "ความแตกต่าง" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "ที่มา" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -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/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "ประวัติการแก้ไข" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "หมายเลขรุ่น" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "การแก้ไข" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "สภาพ" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "ยกเลิกการลบทิ้ง" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -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/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "แท็คของชุดข้อมูล" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -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/snippets/activity_item.html:3 -msgid "New activity item" -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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "ตัวดูข้อมูลแบบฝัง" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "หัวข้อ" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "ฝังตัวดูข้อมูลนี้โดยคัดลอกลงไปยังเว็บเพจของคุณ" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "ตัวอย่าง: หัวข้อที่สื่อความหมาย " -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "เลือกความกว้างและความสูงในหน่วยพิกเซิล:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "ตัวอย่าง: my-dataset" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "ความกว้าง:" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "ตัวอย่าง: คำบรรยายอื่น ๆ เกี่ยวกับข้อมูล" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "ความสูง:" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "ตัวอย่าง เศรษฐกิจ สุขภาพจิต รัฐบาล" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "สถานะของ Datapusher: {status}" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"สามารถดูข้อมูลเกี่ยวกับประเภทลิขสิทธิ์ต่างได้ที่ opendefinition.org" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Trackback URL" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "องค์กร" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "แสดง {facet_type} เพิ่มเติม" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "ไม่มีองค์กร" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "แสดงเฉพาะ {facet_type} ที่เป็นที่นิยม" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "ทัศนวิสัย" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "ไม่พบ {facet_type} ที่ตรงกับที่ค้นหา" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "สาธารณะ" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "หน้าหลัก" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "ทำงาน" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -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/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "ไป" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "คุณแน่ใจที่จะลบชุดข้อมูลนี้" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "ไม่พบข้อมูลลิขสิทธิ์" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "ต่อไป: เพิ่มข้อมูล" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "ชุดข้อมูลนี้ตรงตามมาตรฐาน Open Definition" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "ไม่มีคำอธิบายสำหรับองค์กรนี้" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -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/snippets/search_form.html:17 -msgid "Submit" -msgstr "ส่ง" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "อีเมลผู้แต่ง" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "เรียงโดย" +#: ckan/templates/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/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "กรองผลลัพธ์" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "อีเมลผู้ดูแล" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

กรุณาลองค้นหาใหม่

" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "ปรับปรุงทรัพยากร" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" 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/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "ไม่พบชุดข้อมูล" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "ตัวอย่าง ราคาทองคำ มกราคม 2011" -#: 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/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "คำอธิบายที่เป็นประโยชน์ต่อข้อมูล" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "ไม่พบกลุ่มสำหรับ \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "ตัวอย่าง CSV, XML หรือ JSON" -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "พบ {number} กลุ่ม" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "ไม่พบกลุ่ม" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "ตัวอย่าง 2012-06-05" -#: 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/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "ขนาดไพล์" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "ไม่พบองค์กรสำหรับ \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "ตัวอย่าง 1024" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "พบ {number} องค์กร" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "ประเภท MIME " -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "ไม่พบองค์กร" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "ตัวอย่าง application/json" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "สังคม" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "คุณแน่ใจที่จะลบทรัพยากรนี้" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "สมัคร" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +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:82 -msgid "Email" -msgstr "อีเมล" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "บันทึกและเพิ่มรายการ" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "สิ้นสุด" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "การแก้ไข" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "อะไรคือทรัพยากร" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -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/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "รายการข่าว" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "สำรวจ" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "ชุดข้อมูลของฉัน" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "ข้อมูลเพิ่มเติม" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "องค์กรของฉัน" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "ฝังตัว" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "กลุ่มของฉัน" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "กิจกรรมของรายการที่ฉันติดตาม" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "คุณยังไม่ได้สร้างชุดข้อมูล" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "สร้างใหม่เดี๋ยวนี้?" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "คุณไม่ได้อยู่ในกลุ่มใดๆ" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "คุณไม่ได้อยู่ในองค์กรใดๆ" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +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/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "ข้อมูลผู้ใช้" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "ข้อมูลและทรัพยากร" -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" 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/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "อ่านชุดข้อมูลตั้งแต่ %s" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "ตัวอย่าง: สมชาย ใจกว้าง" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "สร้างชุดข้อมูล" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "ตัวอย่าง somchai@example.com" +#: 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/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "ข้อมูลเล็กน้อยเกี่ยวกับตัวคุณ" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "สมัครการแจ้งเตือนทางอีเมล" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "เปลี่ยนรหัสผ่าน" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" msgstr "" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "รหัสผ่าน" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "ยืนยันรหัสผ่าน" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "ความแตกต่าง" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "คุณแน่ใจหรือไม่ที่จะลบผู้ใช้นี้?" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "ความแตกต่างระหว่างแต่ละการแก้ไข" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "ความแตกต่าง" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "ไม่พบความแตกต่าง" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "ปรับปรุงข้อมูลผู้ใช้" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "ประวัติการแก้ไข" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "ผู้ใช้ทั้งหมด" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +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/revision/read.html:30 +msgid "Undelete" +msgstr "ยกเลิกการลบทิ้ง" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "ยังไม่มีบัญชีผู้ใช้?" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "ความเปลี่ยนแปลง" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "จากนั้นลงทะเบียน ซึ่งจะใช้เวลาเพียงนาทีเดียว" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "แท็คของชุดข้อมูล" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "สร้างบัญชีผู้ใช้" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "เอนทิตี" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "ลืมรหัสผ่าน?" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "รายการกิจกรรมใหม่" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "กรุณากรอกฟอร์มการกู้คืนรหัสผ่านเพื่อตั้งค่ารหัสผ่านใหม่" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "ตัวดูข้อมูลแบบฝัง" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "ลืมรหัสผ่าน?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "ฝังตัวดูข้อมูลนี้โดยคัดลอกลงไปยังเว็บเพจของคุณ" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "ออกจากระบบแล้ว" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "เลือกความกว้างและความสูงในหน่วยพิกเซิล:" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "คุณได้ออกจากระบบแล้ว" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "ความกว้าง:" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "คุณได้เข้าสู่ระบบด้วยชื่อ {user}." +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "ความสูง:" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "ออกจากระบบ" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "สถานะของ Datapusher: {status}" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "จดจำฉัน" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "คุณได้เข้าสู่ระบบแล้ว" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "แสดง {facet_type} เพิ่มเติม" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "คุณจะต้องออกจากระบบก่อนที่จะสามารถเข้าสู่ระบบด้วยบัญชีอื่นได้" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "แสดงเฉพาะ {facet_type} ที่เป็นที่นิยม" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "ออกจากระบบเดี๋ยวนี้" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "ไม่พบ {facet_type} ที่ตรงกับที่ค้นหา" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "การลงทะเบียน" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "หน้าหลัก" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "ลงทะเบียนสำหรับบัญชีใหม่" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "ภาษา" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "ทำไมถึงต้องลงทะเบียน?" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "ไป" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "สร้างชุดข้อมูล กลุ่ม และ อื่นๆ" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "ไม่พบข้อมูลลิขสิทธิ์" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "ชุดข้อมูลนี้ตรงตามมาตรฐาน Open Definition" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "ชื่อเต็ม" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "ไม่มีคำอธิบายสำหรับองค์กรนี้" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "สร้างบัญชี" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "ชุดข้อมูลนี้ไม่มีคำอธิบาย" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "ตั้งค่ารหัสผ่านใหม่" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "ส่ง" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "ตั้งค่ารหัสผ่านใหม่" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "เรียงโดย" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "ปรับปรุงรหัสผ่าน" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "กรองผลลัพธ์" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "ใช้งานอย่างไร" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

กรุณาลองค้นหาใหม่

" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "เราจะปรับปรุงบัญชีของคุณเมื่อคุณป้อนรหัสผ่านใหม่" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "คุณยังไม่ได้ให้ข้อมูลประวัติของคุณ" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "ไม่พบชุดข้อมูลสำหรับ \"{query}\"" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "ผู้ใช้รายนี้ไม่มีข้อมูลประวัติส่วนตัว" +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "พบ {number} ชุดข้อมูล" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: 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/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "คุณเท่านี้ที่สามารถเห็นสิ่งนี้ได้" +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "พบ {number} กลุ่ม" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "เป็นสมาชิกตั้งแต่" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "ไม่พบกลุ่ม" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API Key" +#: 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/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "ตั้งค่ารหัสผ่านใหม่" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "ไม่พบองค์กรสำหรับ \"{query}\"" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "พบ {number} องค์กร" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "ไม่พบองค์กร" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"ป้อนชื่อผู้ใช้ของคุณใส่ลงในกล่องนี้เพื่อที่เราจะได้ส่งอีเมล์พร้อมลิ้งค์ในการตั้งรหัสผ่านใหม่ให้คุณ" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "สังคม" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "กิจกรรมจาก:" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "สมัคร" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -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:82 +msgid "Email" +msgstr "อีเมล" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "คุณยังไม่ได้ติดตามอะไรเลย" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "ไม่มีผู้ติดตาม" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "การแก้ไข" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "ค้นหาผู้ใช้" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "ค้นหาแท็ค" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "สำเร็จ" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "รายการข่าว" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "รอดำเนินการ" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "ชุดข้อมูลของฉัน" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "ส่ง" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "องค์กรของฉัน" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "ยังไม่ได้อัพโหลด" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "กลุ่มของฉัน" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "ไม่พบคลังข้อมูลทรัพยากร" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "กิจกรรมของรายการที่ฉันติดตาม" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "คุณยังไม่ได้สร้างชุดข้อมูล" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "ไม่พบทรัพยากร \"{0}\" " +#: 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:16 +msgid "Create one now?" +msgstr "สร้างใหม่เดี๋ยวนี้?" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "ผู้ใช้ {0} ไม่ได้รับอนุญาคให้ปรับปรุงทรัพยากร {1}" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "คุณไม่ได้อยู่ในกลุ่มใดๆ" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "คุณไม่ได้อยู่ในองค์กรใดๆ" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -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 "ผู้ใช้" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "ข้อมูลผู้ใช้" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/edit.html:19 +msgid "" +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" +"ข้อมูลแนะนำตัวของคุณจะทำให้ผู้ใช้ CKAN อื่นๆ ได้รู้จักคุณและผลงานคุณดีขึ้น" -#: 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 "ข้อความกำหนดเอง" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "แก้ไขรายละเอียด" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "ข้อความกำหนดเอง" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "ชื่อเต็ม" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "รหัสประเทศ" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "ตัวอย่าง: สมชาย ใจกว้าง" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "ตัวอย่าง somchai@example.com" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "ข้อมูลเล็กน้อยเกี่ยวกับตัวคุณ" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "กลุ่มนี้ไม่มีรายละเอียด" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "สมัครการแจ้งเตือนทางอีเมล" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "เปลี่ยนรหัสผ่าน" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "รหัสผ่าน" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "ยืนยันรหัสผ่าน" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "คุณแน่ใจหรือไม่ที่จะลบผู้ใช้นี้?" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "ปรับปรุงข้อมูลผู้ใช้" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "ผู้ใช้ทั้งหมด" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -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 "เข้าสู่ระบบ" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "ยังไม่มีบัญชีผู้ใช้?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "จากนั้นลงทะเบียน ซึ่งจะใช้เวลาเพียงนาทีเดียว" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "สร้างบัญชีผู้ใช้" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "ลืมรหัสผ่าน?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "กรุณากรอกฟอร์มการกู้คืนรหัสผ่านเพื่อตั้งค่ารหัสผ่านใหม่" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "ลืมรหัสผ่าน?" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "ออกจากระบบแล้ว" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "คุณได้ออกจากระบบแล้ว" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "คุณได้เข้าสู่ระบบด้วยชื่อ {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "ออกจากระบบ" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "จดจำฉัน" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "จำนวนชุดข้อมูลทั้งหมด" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "คุณได้เข้าสู่ระบบแล้ว" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "วันที่" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." +msgstr "คุณจะต้องออกจากระบบก่อนที่จะสามารถเข้าสู่ระบบด้วยบัญชีอื่นได้" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "ชุดข้อมูลทั้งหมด" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "ออกจากระบบเดี๋ยวนี้" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "รุ่นชุดข้อมูลต่อสัปดาห์" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "การลงทะเบียน" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "รุ่นของชุดข้อมูลทั้งหมด" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "ลงทะเบียนสำหรับบัญชีใหม่" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "ชุดข้อมูลใหม่" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "ทำไมถึงต้องลงทะเบียน?" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "ชุดข้อมูลที่มีอันดับสูงสุด" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "สร้างชุดข้อมูล กลุ่ม และ อื่นๆ" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "เรตติ้งโดยเฉลี่ย" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "จำนวนเรตติ้ง" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "ชื่อเต็ม" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "ไม่มีเรตติ้ง" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "สร้างบัญชี" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "ชุดข้อมูลที่มีการแก้ไขมากที่สุด" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "ตั้งค่ารหัสผ่านใหม่" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "จำนวนที่แก้ไข" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "ตั้งค่ารหัสผ่านใหม่" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "ไม่มีชุดข้อมูลที่ถูกแก้ไข" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "ปรับปรุงรหัสผ่าน" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "กลุ่มล่าสุด" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "ใช้งานอย่างไร" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "จำนวนของชุดข้อมูล" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "เราจะปรับปรุงบัญชีของคุณเมื่อคุณป้อนรหัสผ่านใหม่" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "ไม่มีกลุ่ม" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "ผู้ใช้ไม่ได้สร้างชุดข้อมูลใด" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "แท็คที่เป็นที่นิยม" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "คุณยังไม่ได้ให้ข้อมูลประวัติของคุณ" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "ชื่อแท็ค" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "ผู้ใช้รายนี้ไม่มีข้อมูลประวัติส่วนตัว" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "จำนวนชุดข้อมูล" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "คุณเท่านี้ที่สามารถเห็นสิ่งนี้ได้" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "เมนูสถิติ" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "เป็นสมาชิกตั้งแต่" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "จำนวนชุดข้อมูลทั้งหมด" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API Key" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "ตั้งค่ารหัสผ่านใหม่" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"ป้อนชื่อผู้ใช้ของคุณใส่ลงในกล่องนี้เพื่อที่เราจะได้ส่งอีเมล์พร้อมลิ้งค์ในการตั้งรหัสผ่านใหม่ให้คุณ" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "กิจกรรมจาก:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "รายการค้นหา...." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "คุณยังไม่ได้ติดตามอะไรเลย" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "ไม่มีผู้ติดตาม" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "ค้นหาผู้ใช้" diff --git a/ckan/i18n/tl/LC_MESSAGES/ckan.mo b/ckan/i18n/tl/LC_MESSAGES/ckan.mo index 25a848d1445..ae6726a5392 100644 Binary files a/ckan/i18n/tl/LC_MESSAGES/ckan.mo and b/ckan/i18n/tl/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/tl/LC_MESSAGES/ckan.po b/ckan/i18n/tl/LC_MESSAGES/ckan.po index 225445e8dfd..07d17179bb7 100644 --- a/ckan/i18n/tl/LC_MESSAGES/ckan.po +++ b/ckan/i18n/tl/LC_MESSAGES/ckan.po @@ -1,4567 +1,4561 @@ # Filipino (Philippines) translations for ckan. -# Copyright (C) 2015 ORGANIZATION +# Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2016. # -# Translators: -# Joel Natividad , 2015 +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: CKAN\n" +"Project-Id-Version: ckan 2.6.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" -"PO-Revision-Date: 2015-12-07 16:53+0000\n" -"Last-Translator: Joel Natividad \n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Adrià Mercader , 2016\n" "Language: fil_PH\n" -"Language-Team: Tagalog (http://www.transifex.com/okfn/ckan/language/tl/)\n" +"Language-Team: Tagalog (https://www.transifex.com/okfn/teams/11162/tl/)\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.3.4\n" +"Generated-By: Babel 2.4.0\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Hindi natagpuan ang function para sa awtorisasyon: %s" - -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "" - -#: ckan/authz.py:195 -msgid "Editor" -msgstr "" - -#: ckan/authz.py:199 -msgid "Member" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" msgstr "" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Kailangan maging isang system administrator para mag-administer" - -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Pamagat ng site" - -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Estilo" - -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" msgstr "" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" msgstr "" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" msgstr "" -#: ckan/controllers/admin.py:54 -msgid "About page text" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" msgstr "" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" msgstr "" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" msgstr "" -#: ckan/controllers/admin.py:57 -msgid "Homepage" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" msgstr "" -#: ckan/controllers/admin.py:160 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" msgstr "" -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" msgstr "" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" msgstr "" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" msgstr "" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" msgstr "" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" msgstr "" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" msgstr "" -#: ckan/controllers/api.py:134 -msgid "Bad request" +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" msgstr "" -#: ckan/controllers/api.py:168 +#: ckanext/datastore/controller.py:46 #, python-format -msgid "Action name not known: %s" +msgid "format: must be one of %s" msgstr "" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" msgstr "" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was" +" inserted into a text field)." msgstr "" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." msgstr "" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" msgstr "" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" msgstr "" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" msgstr "" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +" " msgstr "" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" msgstr "" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action" +" API." msgstr "" -#: ckan/controllers/api.py:498 -msgid "No revision specified" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" msgstr "" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" msgstr "" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Di matagpuan ang grupo" - -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Di matagpuan ang organisasyon" - -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organisasyon" - -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Grupo" - -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Walang pahintulot mag-perform ng bulk update" - -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Walang pahintulot lumikha ng grupo" - -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Miembro %r walang pahintulot mag-edit ng %s" - -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" msgstr "" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" msgstr "" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" msgstr "" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" msgstr "" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" msgstr "" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" msgstr "" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." msgstr "" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" msgstr "" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" msgstr "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" msgstr "" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" msgstr "" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" msgstr "" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" msgstr "" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" msgstr "" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" msgstr "" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" msgstr "" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" msgstr "" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" msgstr "" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" +#: 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 "" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " +#: 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/controllers/package.py:507 -msgid "Unauthorized to create a package" -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/controllers/package.py:577 -msgid "Unauthorized to edit this resource" +#: 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 "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" +#: 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/controllers/package.py:654 -msgid "Unauthorized to update dataset" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" msgstr "" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" msgstr "" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" msgstr "" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" msgstr "" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" msgstr "" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" msgstr "" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" msgstr "" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" msgstr "" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" msgstr "" -#: ckan/controllers/package.py:1167 -msgid "No download is available" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" msgstr "" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" msgstr "" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" msgstr "" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" msgstr "" -#: ckan/controllers/package.py:1495 -msgid "View not found" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" msgstr "" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" msgstr "" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" msgstr "" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" msgstr "" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" msgstr "" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" msgstr "" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" msgstr "" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" msgstr "" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" msgstr "" -#: ckan/controllers/tag.py:60 -msgid "Other" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" msgstr "" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" msgstr "" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" msgstr "" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" msgstr "" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" msgstr "" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" msgstr "" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" msgstr "" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" msgstr "" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" msgstr "" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" msgstr "" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" msgstr "" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" msgstr "" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" msgstr "" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" msgstr "" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" msgstr "" -#: ckan/controllers/user.py:386 -msgid "incorrect password" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" msgstr "" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" msgstr "" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" msgstr "" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" msgstr "" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" msgstr "" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "" - -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" msgstr "" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" msgstr "" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" msgstr "" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" msgstr "" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" msgstr "" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" msgstr "" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" msgstr "" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" msgstr "" -#: ckan/controllers/user.py:640 -msgid "{0} not found" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." msgstr "" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Hindi natagpuan ang function para sa awtorisasyon: %s" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" msgstr "" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." +#: ckan/authz.py:198 +msgid "Editor" msgstr "" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" +#: ckan/authz.py:202 +msgid "Member" msgstr "" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Kailangan maging isang system administrator para mag-administer" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Pamagat ng site" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Estilo" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" msgstr "" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" msgstr "" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" +#: ckan/controllers/admin.py:55 +msgid "About page text" msgstr "" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" msgstr "" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" msgstr "" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" msgstr "" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" msgstr "" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" +#: ckan/controllers/admin.py:58 +msgid "Homepage" msgstr "" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" msgstr "" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" msgstr "" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" msgstr "" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." msgstr "" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" msgstr "" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" msgstr "" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" msgstr "" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" msgstr "" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" msgstr "" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" 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:19 -msgid "January" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" msgstr "" -#: ckan/lib/formatters.py:23 -msgid "February" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" msgstr "" -#: ckan/lib/formatters.py:27 -msgid "March" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" msgstr "" -#: ckan/lib/formatters.py:31 -msgid "April" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" msgstr "" -#: ckan/lib/formatters.py:35 -msgid "May" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" msgstr "" -#: ckan/lib/formatters.py:39 -msgid "June" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" msgstr "" -#: ckan/lib/formatters.py:43 -msgid "July" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" msgstr "" -#: ckan/lib/formatters.py:47 -msgid "August" +#: ckan/controllers/api.py:500 +msgid "No revision specified" msgstr "" -#: ckan/lib/formatters.py:51 -msgid "September" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" msgstr "" -#: ckan/lib/formatters.py:55 -msgid "October" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/lib/formatters.py:59 -msgid "November" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" msgstr "" -#: ckan/lib/formatters.py:63 -msgid "December" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" msgstr "" -#: ckan/lib/formatters.py:116 -msgid "Just now" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" msgstr "" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" msgstr "" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." msgstr "" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Di matagpuan ang grupo" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Di matagpuan ang organisasyon" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" msgstr "" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organisasyon" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 ckan/templates/group/edit_base.html:10 +#: 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:105 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Grupo" -#: ckan/lib/formatters.py:189 -msgid "{n}" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" msgstr "" -#: ckan/lib/formatters.py:191 -msgid "{k}k" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" msgstr "" -#: ckan/lib/formatters.py:193 -msgid "{m}M" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" msgstr "" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Miembro %r walang pahintulot mag-edit ng %s" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Walang pahintulot mag-perform ng bulk update" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Walang pahintulot lumikha ng grupo" -#: ckan/lib/formatters.py:201 -msgid "{e}E" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" msgstr "" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" msgstr "" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" msgstr "" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." msgstr "" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." msgstr "" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" msgstr "" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." msgstr "" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." msgstr "" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" msgstr "" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " msgstr "" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " msgstr "" -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" msgstr "" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " msgstr "" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/home.py:75 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" +msgid "%s uses your email address if you need to reset your password." msgstr "" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" msgstr "" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" msgstr "" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" msgstr "" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" msgstr "" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" msgstr "" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " msgstr "" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" msgstr "" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" msgstr "" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." msgstr "" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" msgstr "" -#: ckan/logic/validators.py:199 -msgid "Resource" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" msgstr "" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/logic/validators.py:267 -msgid "Activity type" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." msgstr "" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." msgstr "" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." msgstr "" -#: ckan/logic/validators.py:337 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "Must be at least %s characters long" +msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." msgstr "" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these " -"symbols: -_" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" msgstr "" -#: ckan/logic/validators.py:365 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" msgstr "" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" +#: ckan/controllers/package.py:1159 +msgid "No download is available" msgstr "" -#: ckan/logic/validators.py:375 +#: ckan/controllers/package.py:1296 #, python-format -msgid "Version must be a maximum of %i characters long" +msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/logic/validators.py:393 +#: ckan/controllers/package.py:1404 #, python-format -msgid "Duplicate key \"%s\"" +msgid "Unauthorized to read resource %s" msgstr "" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" msgstr "" -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" +#: ckan/controllers/package.py:1486 +msgid "View not found" msgstr "" -#: ckan/logic/validators.py:419 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" msgstr "" -#: ckan/logic/validators.py:427 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" msgstr "" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" msgstr "" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." msgstr "" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" msgstr "" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." msgstr "" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" msgstr "" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" msgstr "" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" +#: ckan/controllers/tag.py:60 +msgid "Other" msgstr "" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." +#: ckan/controllers/tag.py:74 +msgid "Tag not found" msgstr "" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." msgstr "" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" msgstr "" -#: ckan/logic/validators.py:633 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." msgstr "" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" msgstr "" -#: ckan/logic/validators.py:655 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Tag %s does not belong to vocabulary %s" +msgid "Unauthorized to edit user %s" msgstr "" -#: ckan/logic/validators.py:661 -msgid "No tag name" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" msgstr "" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" msgstr "" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" +#: ckan/controllers/user.py:245 +#, python-format +msgid "Unauthorized to create user %s" msgstr "" -#: ckan/logic/validators.py:711 -msgid "role does not exist." +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." msgstr "" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." +#: ckan/controllers/user.py:265 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -#: ckan/logic/validators.py:746 -msgid "Not a list" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." msgstr "" -#: ckan/logic/validators.py:749 -msgid "Not a string" +#: ckan/controllers/user.py:320 +#, python-format +msgid "User %s not authorized to edit %s" msgstr "" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" msgstr "" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" msgstr "" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" +#: ckan/controllers/user.py:386 +msgid "incorrect password" msgstr "" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." msgstr "" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." msgstr "" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 +#: ckan/controllers/user.py:490 #, python-format -msgid "REST API: Create object %s" +msgid "\"%s\" matched several users" msgstr "" -#: ckan/logic/action/create.py:532 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "REST API: Create package relationship: %s %s %s" +msgid "No such user: %s" msgstr "" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." msgstr "" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" +#: ckan/controllers/user.py:503 +#, python-format +msgid "Could not send reset link: %s" msgstr "" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." msgstr "" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." msgstr "" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." msgstr "" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." msgstr "" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." msgstr "" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" msgstr "" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" msgstr "" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" +#: ckan/controllers/user.py:640 +msgid "{0} not found" msgstr "" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." +#: ckan/controllers/user.py:654 +msgid "Everything" msgstr "" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" msgstr "" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." msgstr "" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" msgstr "" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" msgstr "" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" msgstr "" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" msgstr "" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" msgstr "" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" msgstr "" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" msgstr "" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" msgstr "" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" msgstr "" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" msgstr "" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" msgstr "" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" msgstr "" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" msgstr "" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" msgstr "" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" msgstr "" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" msgstr "" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" msgstr "" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" msgstr "" -#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 -#, python-format -msgid "User %s not authorized to create packages" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" msgstr "" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" msgstr "" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" msgstr "" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" msgstr "" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" msgstr "" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -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/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" +#: ckan/lib/formatters.py:19 +msgid "January" msgstr "" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" +#: ckan/lib/formatters.py:23 +msgid "February" msgstr "" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" +#: ckan/lib/formatters.py:27 +msgid "March" msgstr "" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" +#: ckan/lib/formatters.py:31 +msgid "April" msgstr "" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" +#: ckan/lib/formatters.py:35 +msgid "May" msgstr "" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." +#: ckan/lib/formatters.py:39 +msgid "June" msgstr "" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" +#: ckan/lib/formatters.py:43 +msgid "July" msgstr "" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" +#: ckan/lib/formatters.py:47 +msgid "August" msgstr "" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" +#: ckan/lib/formatters.py:51 +msgid "September" msgstr "" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" +#: ckan/lib/formatters.py:55 +msgid "October" msgstr "" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" +#: ckan/lib/formatters.py:59 +msgid "November" msgstr "" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." +#: ckan/lib/formatters.py:63 +msgid "December" msgstr "" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" +#: ckan/lib/formatters.py:114 +msgid "Just now" msgstr "" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" msgstr "" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" msgstr "" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" msgstr "" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" msgstr "" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" msgstr "" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" msgstr "" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" +#: ckan/lib/formatters.py:187 +msgid "{n}" msgstr "" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." +#: ckan/lib/formatters.py:189 +msgid "{k}k" msgstr "" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" +#: ckan/lib/formatters.py:191 +msgid "{m}M" msgstr "" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" +#: ckan/lib/formatters.py:193 +msgid "{g}G" msgstr "" -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" +#: ckan/lib/formatters.py:195 +msgid "{t}T" msgstr "" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" +#: ckan/lib/formatters.py:197 +msgid "{p}P" msgstr "" -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" +#: ckan/lib/formatters.py:199 +msgid "{e}E" msgstr "" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" msgstr "" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" msgstr "" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" msgstr "" -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "" + +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "" + +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "" + +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." msgstr "" -#: ckan/logic/auth/update.py:225 +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to update task_status table" +msgid "%s <%s>" +msgstr "" + +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "" + +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "" + +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "" + +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" msgstr "" -#: ckan/logic/auth/update.py:239 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to update term_translation table" +msgid "The input field %(name)s was not expected." msgstr "" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" msgstr "" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -#: ckan/model/license.py:222 -msgid "License not specified" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" msgstr "" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" msgstr "" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" msgstr "" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" msgstr "" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" msgstr "" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" msgstr "" -#: ckan/model/license.py:301 -msgid "Other (Open)" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" msgstr "" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" msgstr "" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" msgstr "" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." msgstr "" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" msgstr "" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" +#: ckan/logic/validators.py:200 +msgid "Resource" msgstr "" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." msgstr "" -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "depends on %s" +#: ckan/logic/validators.py:268 +msgid "Activity type" msgstr "" -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is a dependency of %s" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" msgstr "" -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "derives from %s" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" msgstr "" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:338 #, python-format -msgid "has derivation %s" +msgid "Must be at least %s characters long" msgstr "" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "links to %s" +msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these " +"symbols: -_" +msgstr "" + +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "" + +#: ckan/logic/validators.py:366 #, python-format -msgid "is linked from %s" +msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a child of %s" +msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:376 #, python-format -msgid "is a parent of %s" +msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:394 #, python-format -msgid "has sibling %s" +msgid "Duplicate key \"%s\"" msgstr "" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" +#: ckan/logic/validators.py:416 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" +#: ckan/logic/validators.py:420 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" +#: ckan/logic/validators.py:428 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" msgstr "" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" msgstr "" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." msgstr "" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" +#: ckan/logic/validators.py:662 +msgid "No tag name" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" +#: ckan/logic/validators.py:712 +msgid "role does not exist." msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" +#: ckan/logic/validators.py:747 +msgid "Not a list" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." +#: ckan/logic/validators.py:750 +msgid "Not a string" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop" -" this upload?" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" msgstr "" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" msgstr "" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." msgstr "" -#: ckan/templates/footer.html:9 -msgid "About {0}" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." msgstr "" -#: ckan/templates/footer.html:15 -msgid "CKAN API" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." msgstr "" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" msgstr "" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" msgstr "" -#: ckan/templates/header.html:19 -msgid "View profile" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" msgstr "" -#: ckan/templates/header.html:26 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." msgstr "" -#: ckan/templates/header.html:37 -msgid "Settings" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." msgstr "" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" msgstr "" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" msgstr "" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 ckan/templates/user/read.html:5 -#: ckan/templates/user/read_base.html:19 ckan/templates/user/read_base.html:53 -msgid "Datasets" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/templates/header.html:116 -msgid "Search Datasets" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" msgstr "" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/templates/page.html:6 -msgid "Skip to content" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." msgstr "" -#: ckan/templates/admin/base.html:3 -msgid "Administration" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" msgstr "" -#: ckan/templates/admin/base.html:9 -msgid "Config" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." msgstr "" -#: ckan/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" msgstr "" -#: ckan/templates/admin/config.html:17 -msgid "Reset" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" msgstr "" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." msgstr "" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." msgstr "" -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 #, 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" +msgid "User %s not authorized to create packages" msgstr "" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" msgstr "" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:38 #, 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

" +msgid "User %s not authorized to add dataset to this organization" msgstr "" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -" " +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action" -" API." +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/get.py:143 #, python-format -msgid "No handler defined for data type: %(type)s." +msgid "User %s not authorized to read resource %s" msgstr "" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." msgstr "" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" msgstr "" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" msgstr "" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" msgstr "" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" msgstr "" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" msgstr "" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" msgstr "" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" msgstr "" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" msgstr "" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" msgstr "" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" msgstr "" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" msgstr "" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" 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" +#: ckan/model/license.py:222 +msgid "License not specified" msgstr "" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:16 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -msgid "Confirm Delete" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" 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}?" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" 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:14 -#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 -#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 -msgid "Manage" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" msgstr "" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" 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" +#: ckan/model/license.py:301 +msgid "Other (Open)" msgstr "" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" msgstr "" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" msgstr "" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" msgstr "" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" msgstr "" -#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 -msgid "How about creating one?" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" msgstr "" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" 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" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" msgstr "" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" msgstr "" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" msgstr "" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" msgstr "" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" msgstr "" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" msgstr "" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" msgstr "" -#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" msgstr "" -#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" msgstr "" -#: ckan/templates/group/member_new.html:59 ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" msgstr "" -#: ckan/templates/group/member_new.html:61 -msgid "Save" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, fuzzy, 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 +msgid "There are unsaved modifications to this form" msgstr "" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" msgstr "" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" msgstr "" -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" msgstr "" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/new_group_form.html:19 -msgid "Create Group" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" msgstr "" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" msgstr "" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" msgstr "" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" msgstr "" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" msgstr "" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" msgstr "" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" msgstr "" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" msgstr "" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" msgstr "" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" msgstr "" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" msgstr "" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" msgstr "" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop" +" this upload?" msgstr "" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" 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. " +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" msgstr "" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" msgstr "" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" msgstr "" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" +#: ckan/templates/footer.html:9 +msgid "About {0}" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" +#: ckan/templates/footer.html:15 +msgid "CKAN API" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" msgstr "" -#: ckan/templates/home/index.html:4 -msgid "Welcome" +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" 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/

" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" msgstr "" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" +#: ckan/templates/header.html:19 +msgid "View profile" 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 " +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" msgstr "" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" msgstr "" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" +#: ckan/templates/header.html:37 +msgid "Settings" msgstr "" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" msgstr "" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" msgstr "" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 ckan/templates/user/read.html:5 +#: ckan/templates/user/read_base.html:19 ckan/templates/user/read_base.html:53 +msgid "Datasets" msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" +#: ckan/templates/header.html:116 +msgid "Search Datasets" msgstr "" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" msgstr "" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" +#: ckan/templates/page.html:6 +msgid "Skip to content" msgstr "" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "" + +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "" + +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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/macros/form.html:265 -msgid "This field is required" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" msgstr "" -#: ckan/templates/macros/form.html:265 -msgid "Custom" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" msgstr "" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" +#: 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/macros/form.html:395 -msgid "Required field" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" msgstr "" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" msgstr "" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." msgstr "" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." msgstr "" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" msgstr "" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." msgstr "" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." msgstr "" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." msgstr "" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" msgstr "" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" msgstr "" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" msgstr "" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" msgstr "" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 -#: ckan/templates/user/read_base.html:96 -msgid "Private" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" msgstr "" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" msgstr "" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" msgstr "" -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" msgstr "" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" msgstr "" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" msgstr "" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" msgstr "" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" msgstr "" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" msgstr "" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" msgstr "" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" msgstr "" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" msgstr "" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" +#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 +#: ckan/templates/organization/admins.html:3 +#: ckan/templates/organization/admins.html:6 +msgid "Administrators" +msgstr "" + +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "" + +#: ckan/templates/group/confirm_delete.html:3 +#: ckan/templates/group/confirm_delete.html:15 +#: ckan/templates/group/confirm_delete_member.html:3 +#: ckan/templates/group/confirm_delete_member.html:16 +#: ckan/templates/organization/confirm_delete.html:3 +#: ckan/templates/organization/confirm_delete.html:15 +#: ckan/templates/organization/confirm_delete_member.html:3 +#: ckan/templates/organization/confirm_delete_member.html:16 +#: ckan/templates/package/confirm_delete.html:3 +#: ckan/templates/package/confirm_delete.html:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" msgstr "" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" msgstr "" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" +#: 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/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 +msgid "Manage" msgstr "" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" 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).

" +#: ckan/templates/group/edit_base.html:23 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" 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. " +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all " -"the public and private datasets belonging to this organization." +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 +msgid "How about creating one?" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" msgstr "" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" +#: 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/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" msgstr "" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" 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. " +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -#: ckan/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" msgstr "" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" msgstr "" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" 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" +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" msgstr "" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" msgstr "" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" msgstr "" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" +#: ckan/templates/group/member_new.html:80 +msgid "" +"

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

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

" msgstr "" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" +#: 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/package/group_list.html:23 -msgid "There are no groups associated with this dataset" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" msgstr "" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" msgstr "" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." msgstr "" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" msgstr "" -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" msgstr "" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" msgstr "" -#: ckan/templates/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" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" 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. " +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" msgstr "" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." msgstr "" -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It " -"may differ significantly from the current " -"revision." +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" msgstr "" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" msgstr "" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" msgstr "" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" msgstr "" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" msgstr "" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" +#: 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/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" msgstr "" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" msgstr "" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" msgstr "" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" msgstr "" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" msgstr "" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" msgstr "" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" msgstr "" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" +#: ckan/templates/home/index.html:4 +msgid "Welcome" msgstr "" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" +#: 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/package/resource_edit_base.html:28 -msgid "Views" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" msgstr "" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" +#: 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/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" msgstr "" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" msgstr "" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" msgstr "" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" msgstr "" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" msgstr "" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" msgstr "" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" msgstr "" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" msgstr "" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" msgstr "" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" msgstr "" -#: ckan/templates/package/resource_read.html:125 +#: ckan/templates/macros/form.html:126 +#, python-format msgid "" -"If a view requires the DataStore, the DataStore plugin may not be " -"enabled, or the data may not have been pushed to the DataStore, or the " -"DataStore hasn't finished processing the data yet" -msgstr "" - -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" +"You can use Markdown formatting here" msgstr "" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" msgstr "" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" +#: ckan/templates/macros/form.html:265 +msgid "Custom" msgstr "" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" msgstr "" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" +#: ckan/templates/macros/form.html:395 +msgid "Required field" msgstr "" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" msgstr "" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" msgstr "" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" msgstr "" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" msgstr "" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" msgstr "" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" msgstr "" -#: ckan/templates/package/search.html:52 -msgid "API" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" msgstr "" -#: ckan/templates/package/search.html:53 -msgid "API Docs" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" msgstr "" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" 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. " +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" 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). " +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" msgstr "" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 +msgid "Private" msgstr "" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" msgstr "" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" +#: 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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" 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" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." msgstr "" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" +#: ckan/templates/organization/member_new.html:81 +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/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." -msgstr "" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/package/snippets/cannot_create_package.html:19 -msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" msgstr "" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" +#: 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/package/snippets/package_basic_fields.html:41 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -" License definitions and additional information can be found at opendefinition.org " +" 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/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all " +"the public and private datasets belonging to this organization." msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" 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." +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" msgstr "" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" +#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" msgstr "" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" +#: 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/snippets/package_metadata_fields.html:10 -msgid "1.0" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" 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" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" 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" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" +#: 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/snippets/resource_form.html:53 -msgid "eg. 1024" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" +#: 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/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" +#: 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/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It " +"may differ significantly from the current " +"revision." msgstr "" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" msgstr "" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit 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." +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." msgstr "" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" +#: ckan/templates/package/resource_read.html:122 +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/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" msgstr "" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" 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" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" msgstr "" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" msgstr "" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" msgstr "" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" msgstr "" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" msgstr "" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, python-format +msgid "" +"

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

" msgstr "" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" +#: ckan/templates/package/search.html:52 +msgid "API" msgstr "" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" +#: ckan/templates/package/search.html:53 +msgid "API Docs" msgstr "" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" msgstr "" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" +#: 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/revision/read.html:30 -msgid "Undelete" +#: 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/revision/read.html:64 -msgid "Changes" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" msgstr "" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" msgstr "" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" msgstr "" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" +#: 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/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" msgstr "" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." +#: 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/snippets/disqus_trackback.html:2 -msgid "Trackback URL" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" msgstr "" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." msgstr "" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" +#: 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/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" msgstr "" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" msgstr "" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" msgstr "" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" msgstr "" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" msgstr "" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" msgstr "" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" msgstr "" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" msgstr "" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" msgstr "" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" +#: 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/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" 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/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" msgstr "" -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" +#: 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/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/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" +#: 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/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" 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/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" msgstr "" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" msgstr "" -#: ckan/templates/snippets/social.html:5 -msgid "Social" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" msgstr "" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" 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:82 -msgid "Email" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" msgstr "" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" msgstr "" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" msgstr "" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" msgstr "" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" msgstr "" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" msgstr "" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" msgstr "" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" msgstr "" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" msgstr "" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" msgstr "" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" +#: 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/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" 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" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" msgstr "" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." msgstr "" -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you " -"do. " +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" msgstr "" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" msgstr "" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" msgstr "" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" msgstr "" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" msgstr "" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" msgstr "" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" msgstr "" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" msgstr "" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" +#: 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/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" msgstr "" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" msgstr "" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" msgstr "" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" msgstr "" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" 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" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" msgstr "" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" msgstr "" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." +#: ckan/templates/revision/diff.html:44 +msgid "Difference" msgstr "" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" msgstr "" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" msgstr "" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" msgstr "" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" msgstr "" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" +#: ckan/templates/revision/read.html:64 +msgid "Changes" msgstr "" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" msgstr "" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" msgstr "" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" msgstr "" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" msgstr "" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" msgstr "" -#: ckan/templates/user/new.html:6 -msgid "Registration" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" msgstr "" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." msgstr "" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" msgstr "" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" msgstr "" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" msgstr "" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" msgstr "" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" msgstr "" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" msgstr "" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" msgstr "" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" msgstr "" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." msgstr "" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" msgstr "" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" msgstr "" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" msgstr "" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" msgstr "" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" msgstr "" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" msgstr "" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" msgstr "" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -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/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" msgstr "" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" +#: 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/user/request_reset.html:19 -msgid "Request reset" +#: 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/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a " -"link to enter a new password." +#: 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/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" +#: 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/user/snippets/followee_dropdown.html:23 -msgid "Search list..." +#: 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/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" +#: ckan/templates/snippets/social.html:5 +msgid "Social" msgstr "" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" msgstr "" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" +#: 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:82 +msgid "Email" msgstr "" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" msgstr "" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" msgstr "" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" msgstr "" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" msgstr "" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" msgstr "" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was" -" inserted into a text field)." +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" msgstr "" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" msgstr "" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" +#: 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:16 +msgid "Create one now?" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." 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" +#: 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 "" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" +#: ckan/templates/user/edit.html:19 +msgid "" +" Your profile lets other CKAN users know about who you are and what you " +"do. " msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" msgstr "" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" msgstr "" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" msgstr "" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" msgstr "" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" +#: 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 "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" +#: ckan/templates/user/new.html:6 +msgid "Registration" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" msgstr "" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" msgstr "" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" msgstr "" -#~ msgid "Unauthorized to read group %s" -#~ msgstr "" - -#~ msgid "User %r not authorized to edit %r" -#~ msgstr "" - -#~ msgid "Unauthorized to read group {group_id}" -#~ msgstr "" - -#~ msgid "Unauthorized to view View %s" -#~ msgstr "" - -#~ msgid "Unauthorized to read resource view %s" -#~ msgstr "" - -#~ msgid "Unauthorized to read {0} {1}" -#~ msgstr "" - -#~ msgid "" -#~ "{actor} updated the {related_type} " -#~ "{related_item} of the dataset {dataset}" -#~ msgstr "" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "" -#~ msgid "{actor} updated the {related_type} {related_item}" -#~ msgstr "" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a " +"link to enter a new password." +msgstr "" -#~ msgid "{actor} deleted the related item {related_item}" -#~ msgstr "" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "" -#~ msgid "" -#~ "{actor} added the {related_type} " -#~ "{related_item} to the dataset {dataset}" -#~ msgstr "" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "" -#~ msgid "{actor} added the {related_type} {related_item}" -#~ msgstr "" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "" -#~ msgid "Dear %s," -#~ msgstr "" +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "" -#~ msgid "" -#~ "You have requested your password on {site_title} to be reset.\n" -#~ "\n" -#~ "Please click the following link to confirm this request:\n" -#~ "\n" -#~ " {reset_link}\n" -#~ msgstr "" +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "" #~ msgid "" -#~ "You have been invited to {site_title}." -#~ " A user has already been created " -#~ "to you with the username {user_name}." -#~ " You can change it later.\n" -#~ "\n" -#~ "To accept this invite, please reset your password at:\n" -#~ "\n" -#~ " {reset_link}\n" +#~ "Viewing {package_type} datasets in {format}" +#~ " format is not supported (template " +#~ "file {file} not found)." #~ msgstr "" -#~ msgid "Invite for {site_title}" +#~ msgid "Reorder resources" #~ msgstr "" -#~ msgid "A organization must be supplied" +#~ msgid "Reorder resource view" #~ msgstr "" -#~ msgid "Related" -#~ msgstr "" - -#~ msgid "Item was not found." -#~ msgstr "" - -#~ msgid "You must be a sysadmin to create a featured related item" -#~ msgstr "" - -#~ msgid "You must be logged in to add a related item" -#~ msgstr "" - -#~ msgid "Only the owner can delete a related item" -#~ msgstr "" - -#~ msgid "Only the owner can update a related item" -#~ msgstr "" - -#~ msgid "You must be a sysadmin to change a related item's featured field." -#~ msgstr "" - -#~ msgid "show more" -#~ msgstr "" - -#~ msgid "show less" -#~ msgstr "" - -#~ msgid "Open Knowledge Foundation" -#~ msgstr "" - -#~ msgid "Related Media for {dataset}" -#~ msgstr "" - -#~ msgid "No related items" -#~ msgstr "" - -#~ msgid "Add Related Item" -#~ msgstr "" - -#~ msgid "" -#~ "No apps, ideas, news stories or " -#~ "images have been related to this " -#~ "dataset yet." -#~ msgstr "" - -#~ msgid "Add Item" -#~ msgstr "" - -#~ msgid "" -#~ "

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

" +#~ msgid "An error occurred: %(text)s %(error)s" #~ msgstr "" diff --git a/ckan/i18n/tr/LC_MESSAGES/ckan.mo b/ckan/i18n/tr/LC_MESSAGES/ckan.mo index 4adc86494b5..f89075cb9fa 100644 Binary files a/ckan/i18n/tr/LC_MESSAGES/ckan.mo and b/ckan/i18n/tr/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/tr/LC_MESSAGES/ckan.po b/ckan/i18n/tr/LC_MESSAGES/ckan.po index 30bb748f4ef..12743ac080e 100644 --- a/ckan/i18n/tr/LC_MESSAGES/ckan.po +++ b/ckan/i18n/tr/LC_MESSAGES/ckan.po @@ -1,4451 +1,4549 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" msgstr "" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Yönetici" - -#: ckan/authz.py:195 -msgid "Editor" -msgstr "İçerik Düzenleyici" - -#: ckan/authz.py:199 -msgid "Member" -msgstr "Üye" - -#: ckan/controllers/admin.py:34 -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:50 -msgid "Site Title" -msgstr "Site başlığı" - -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Stil" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" msgstr "" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Site logosu" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Hata" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Hakkında metni" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Kaynak bulunamadı" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Karşılama metni" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Bu sayfayı görüntüleme izni yoktur" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" msgstr "" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" msgstr "" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" msgstr "" -#: ckan/controllers/admin.py:57 -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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" msgstr "" -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" msgstr "" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" msgstr "" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" msgstr "" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Bu sayfayı görüntüleme izni yoktur" - -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Erişim engellendi" - -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Bulunamadı" - -#: ckan/controllers/api.py:134 -msgid "Bad request" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" msgstr "" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" msgstr "" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON Hatası: %s" - -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" msgstr "" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" msgstr "" -#: ckan/controllers/api.py:327 +#: ckanext/datastore/controller.py:46 #, python-format -msgid "Cannot read entity of this type: %s" +msgid "format: must be one of %s" msgstr "" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" msgstr "" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." msgstr "" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Arama index'i güncellenemiyor" - -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" msgstr "" -#: ckan/controllers/api.py:498 -msgid "No revision specified" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" msgstr "" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" msgstr "" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Grup bulunamadı" - -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Organizasyon bulunamadı" - -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Doğru olmayan grup tipi" - -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Organizasyonlar" - -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Gruplar" - -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Etiketler" - -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Formatlar" - -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Lisanslar" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" msgstr "" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" msgstr "" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" msgstr "" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" msgstr "" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" msgstr "" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." msgstr "" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Organizasyon silinmiştir." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Grup silinmiştir." +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" msgstr "" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" msgstr "" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" msgstr "" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Grup üyesi silinmiştir." +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" msgstr "" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" msgstr "" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." msgstr "" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Günlük mesajı:" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "" -#: ckan/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" msgstr "" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" msgstr "" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" msgstr "" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" msgstr "" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" msgstr "" -"Lütfen profilinizi güncelleyin ve e-posta adresinizi " -"ekleyin." -#: ckan/controllers/home.py:83 -#, 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:290 -msgid "Invalid search query: {error_message}" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" msgstr "" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Veri kümesi bulunamadı" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" +#: 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 "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Kaynak bulunamadı" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Ülke kodu" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" msgstr "" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -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 "Bu grubun bir açıklaması bulunmamaktadır." -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Hata" +#: 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/controllers/package.py:691 -msgid "Unauthorized to create a resource" +#: 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 "" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" +#: 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/controllers/package.py:941 -msgid "Unable to add package to search index." +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" msgstr "" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" msgstr "" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Veri kümesi silindi" - -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" msgstr "" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Kaynak silindi." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Resim bağlantısı" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" msgstr "" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" msgstr "" -#: ckan/controllers/package.py:1167 -msgid "No download is available" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" msgstr "" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" msgstr "" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" msgstr "" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" msgstr "" -#: ckan/controllers/package.py:1495 -msgid "View not found" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" msgstr "" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" msgstr "" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" msgstr "" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" msgstr "" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" msgstr "" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" msgstr "" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" msgstr "" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" msgstr "" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" msgstr "" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Diğer" - -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Etiket bulunamadı" - -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Kullanıcı bulunamadı" - -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" msgstr "" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" msgstr "" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" msgstr "" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" msgstr "" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" msgstr "" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Profil güncellendi" - -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" msgstr "" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Doğrulama kodu hatalı. Lütfen tekrar deneyin." - -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" msgstr "" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" msgstr "" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Tarih" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" msgstr "" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" msgstr "" -#: ckan/controllers/user.py:386 -msgid "incorrect password" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" msgstr "" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Giriş hatası. Kullanıcı adı ya da şifre hatalı." +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Yeni veriseti" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" msgstr "" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" msgstr "" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Kullanıcı bulunamadı: %s" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Şifre sıfırlama konudunuz için lütfen e-posta kurunuzu kontrol edin." +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" msgstr "" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Veri seti" + +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" msgstr "" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" msgstr "" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Şifreniz yenilendi." +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Şifreniz en az 4 karakter veya daha uzun olmalı." +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Grup" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Girmiş olduğunuz şifreler uyuşmamaktadır." +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Veriseti sayısı" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Bir şifre belirlemelisiniz." +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" msgstr "" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} bulunamadı" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Etiket ismi" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Herşey" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Veriseti sayısı" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Eksik Değer" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Başka bir siteye yönlendirmeye izin verilmemektedir." +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Kullanıcı" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor}, {dataset} verisetine {tag} etiketini ekledi. " +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "İstatistik menüsü" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor}, {group} grubunu güncelledi." +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Toplam veriseti sayısı" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor}, {organization} organizasyonunu güncelledi." +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor}, {dataset} verisetini güncelledi." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Web sitesi" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" +#: 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/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." msgstr "" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} profilini güncelledi." +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} , {group} grubunu sildi" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Yönetici" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "İçerik Düzenleyici" + +#: ckan/authz.py:202 +msgid "Member" +msgstr "Üye" + +#: ckan/controllers/admin.py:34 +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:50 +msgid "Site Title" +msgstr "Site başlığı" + +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Stil" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" msgstr "" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Site logosu" + +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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:55 +msgid "About page text" +msgstr "Hakkında metni" + +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Karşılama metni" + +#: ckan/controllers/admin.py:56 +msgid "Text on home page" msgstr "" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" msgstr "" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" msgstr "" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} , {group} grubunu oluşturdu." +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Anasayfa" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" msgstr "" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" msgstr "" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" msgstr "" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." msgstr "" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Erişim engellendi" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Bulunamadı" + +#: ckan/controllers/api.py:136 +msgid "Bad request" msgstr "" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" msgstr "" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Hatası: %s" + +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" msgstr "" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" msgstr "" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" msgstr "" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" 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/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Ocak" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Şubat" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Arama index'i güncellenemiyor" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Mart" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Nisan" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "" + +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "" + +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "" + +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "" + +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "" + +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "" + +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "" + +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" + +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Grup bulunamadı" + +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Organizasyon bulunamadı" + +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Doğru olmayan grup tipi" + +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Organizasyonlar" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Mayıs" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Gruplar" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Haziran" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Etiketler" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Temmuz" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Formatlar" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Ağustos" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Lisanslar" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Eylül" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Ekim" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Kasım" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Aralık" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Az önce" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Organizasyon silinmiştir." -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Grup silinmiştir." -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr " {day} {month}, {year}" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Grup üyesi silinmiştir." -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Günlük mesajı:" -#: ckan/lib/formatters.py:189 -msgid "{n}" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" msgstr "" -#: ckan/lib/formatters.py:191 -msgid "{k}k" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" msgstr "" -#: ckan/lib/formatters.py:193 -msgid "{m}M" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/lib/formatters.py:195 -msgid "{g}G" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." msgstr "" -#: ckan/lib/formatters.py:197 -msgid "{t}T" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " msgstr "" +"Lütfen profilinizi güncelleyin ve e-posta adresinizi " +"ekleyin." -#: ckan/lib/formatters.py:199 -msgid "{p}P" +#: ckan/controllers/home.py:75 +#, 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:288 +msgid "Invalid search query: {error_message}" msgstr "" -#: ckan/lib/formatters.py:201 -msgid "{e}E" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Veri kümesi bulunamadı" + +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" msgstr "" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." msgstr "" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" msgstr "" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " msgstr "" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" msgstr "" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" msgstr "" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" msgstr "" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." msgstr "" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." msgstr "" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Eksik değer" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Veri kümesi silindi" -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." +msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Kaynak silindi." + +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" +#: ckan/controllers/package.py:1159 +msgid "No download is available" msgstr "" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1296 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" +msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Kullanıcı" - -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Veri seti" - -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Grup" - -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" msgstr "" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" msgstr "" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" +#: ckan/controllers/package.py:1486 +msgid "View not found" msgstr "" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" msgstr "" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" msgstr "" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" msgstr "" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." msgstr "" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" msgstr "" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." msgstr "" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" msgstr "" -#: ckan/logic/validators.py:199 -msgid "Resource" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" msgstr "" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Diğer" + +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Etiket bulunamadı" + +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." msgstr "" -#: ckan/logic/validators.py:267 -msgid "Activity type" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" msgstr "" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." msgstr "" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" msgstr "" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Must be at least %s characters long" +msgid "Unauthorized to edit user %s" msgstr "" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Kullanıcı bulunamadı" + +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Profil güncellendi" + +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" +msgid "Unauthorized to create user %s" msgstr "" -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Doğrulama kodu hatalı. Lütfen tekrar deneyin." + +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" msgstr "" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Bu URL zaten kullanımda." - -#: ckan/logic/validators.py:365 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." msgstr "" -#: ckan/logic/validators.py:369 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is more than maximum %s" +msgid "User %s not authorized to edit %s" msgstr "" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" msgstr "" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" msgstr "" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" +#: ckan/controllers/user.py:386 +msgid "incorrect password" msgstr "" -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Giriş hatası. Kullanıcı adı ya da şifre hatalı." + +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." msgstr "" -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" +msgid "\"%s\" matched several users" msgstr "" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" +msgid "No such user: %s" +msgstr "Kullanıcı bulunamadı: %s" + +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Şifre sıfırlama konudunuz için lütfen e-posta kurunuzu kontrol edin." -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag \"%s\" must not be uppercase" +msgid "Could not send reset link: %s" msgstr "" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." msgstr "" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." msgstr "" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Şifreniz yenilendi." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Şifreniz en az 4 karakter veya daha uzun olmalı." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Girmiş olduğunuz şifreler uyuşmamaktadır." -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Bir şifre belirlemelisiniz." -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." +#: ckan/controllers/user.py:636 +msgid "Follow item not found" msgstr "" -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} bulunamadı" + +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Herşey" + +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Eksik Değer" + +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Başka bir siteye yönlendirmeye izin verilmemektedir." + +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor}, {dataset} verisetine {tag} etiketini ekledi. " + +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor}, {group} grubunu güncelledi." + +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor}, {organization} organizasyonunu güncelledi." + +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor}, {dataset} verisetini güncelledi." + +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" msgstr "" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" msgstr "" -#: ckan/logic/validators.py:633 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} profilini güncelledi." + +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} , {group} grubunu sildi" + +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" msgstr "" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" msgstr "" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" msgstr "" -#: ckan/logic/validators.py:661 -msgid "No tag name" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" msgstr "" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} , {group} grubunu oluşturdu." + +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" msgstr "" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" msgstr "" -#: ckan/logic/validators.py:711 -msgid "role does not exist." +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" msgstr "" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" msgstr "" -#: ckan/logic/validators.py:746 -msgid "Not a list" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" msgstr "" -#: ckan/logic/validators.py:749 -msgid "Not a string" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" msgstr "" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" msgstr "" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" msgstr "" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" msgstr "" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" msgstr "" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -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:19 +msgid "January" +msgstr "Ocak" + +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Şubat" + +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Mart" + +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Nisan" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Mayıs" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Haziran" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Temmuz" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Ağustos" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Eylül" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Ekim" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Kasım" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Aralık" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Az önce" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr " {day} {month}, {year}" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" +#: ckan/lib/formatters.py:187 +msgid "{n}" msgstr "" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." +#: ckan/lib/formatters.py:189 +msgid "{k}k" msgstr "" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." +#: ckan/lib/formatters.py:191 +msgid "{m}M" msgstr "" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." +#: ckan/lib/formatters.py:193 +msgid "{g}G" msgstr "" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" +#: ckan/lib/formatters.py:195 +msgid "{t}T" msgstr "" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" +#: ckan/lib/formatters.py:197 +msgid "{p}P" msgstr "" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." +#: ckan/lib/formatters.py:199 +msgid "{e}E" msgstr "" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." +#: ckan/lib/formatters.py:201 +msgid "{z}Z" msgstr "" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" msgstr "" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" msgstr "" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" msgstr "" -#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 -#, python-format -msgid "User %s not authorized to create packages" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." msgstr "" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." msgstr "" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." msgstr "" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" -#: ckan/logic/auth/create.py:76 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to create resources on dataset %s" +msgid "%s <%s>" msgstr "" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" msgstr "" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" msgstr "" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" msgstr "" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" -msgstr "" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Eksik değer" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" +#: ckan/lib/navl/validators.py:66 +#, python-format +msgid "The input field %(name)s was not expected." msgstr "" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" msgstr "" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" msgstr "" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" msgstr "" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to edit group %s" +msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" msgstr "" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" msgstr "" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" msgstr "" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" msgstr "" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" msgstr "" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" msgstr "" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" msgstr "" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." msgstr "" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" msgstr "" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" +#: ckan/logic/validators.py:200 +msgid "Resource" msgstr "" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." msgstr "" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" +#: ckan/logic/validators.py:268 +msgid "Activity type" msgstr "" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." +#: ckan/logic/validators.py:331 +msgid "Names must be strings" msgstr "" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" msgstr "" -#: ckan/logic/auth/update.py:71 +#: ckan/logic/validators.py:338 #, python-format -msgid "User %s not authorized to edit resource %s" +msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/auth/update.py:100 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "User %s not authorized to change state of package %s" +msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" msgstr "" -#: ckan/logic/auth/update.py:145 +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Bu URL zaten kullanımda." + +#: ckan/logic/validators.py:366 #, python-format -msgid "User %s not authorized to change state of group %s" +msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/auth/update.py:162 +#: ckan/logic/validators.py:370 #, python-format -msgid "User %s not authorized to edit permissions of group %s" +msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" +#: ckan/logic/validators.py:376 +#, python-format +msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/logic/auth/update.py:197 +#: ckan/logic/validators.py:394 #, python-format -msgid "User %s not authorized to edit user %s" +msgid "Duplicate key \"%s\"" msgstr "" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" msgstr "" -#: ckan/logic/auth/update.py:216 +#: ckan/logic/validators.py:416 #, python-format -msgid "User %s not authorized to change state of revision" +msgid "Tag \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/auth/update.py:225 +#: ckan/logic/validators.py:420 #, python-format -msgid "User %s not authorized to update task_status table" +msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/validators.py:428 #, python-format -msgid "User %s not authorized to update term_translation table" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" msgstr "" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" msgstr "" -#: ckan/model/license.py:222 -msgid "License not specified" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." msgstr "" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" msgstr "" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" msgstr "" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" msgstr "" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" msgstr "" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons - Alıntı (CC BY)" - -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Alıntı-Lisans Devam (CC BY-SA)" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" msgstr "" -#: ckan/model/license.py:301 -msgid "Other (Open)" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." msgstr "" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." msgstr "" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Alıntı-Gayriticari (CC BY-NC)" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" msgstr "" -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "depends on %s" +#: ckan/logic/validators.py:712 +msgid "role does not exist." msgstr "" -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is a dependency of %s" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "derives from %s" +#: ckan/logic/validators.py:747 +msgid "Not a list" msgstr "" -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "has derivation %s" +#: ckan/logic/validators.py:750 +msgid "Not a string" msgstr "" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "is linked from %s" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/model/package_relationship.py:57 -#, python-format -msgid "is a child of %s" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/model/package_relationship.py:57 -#, python-format -msgid "is a parent of %s" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/model/package_relationship.py:61 -#, python-format -msgid "has sibling %s" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" msgstr "" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" msgstr "" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" msgstr "" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" msgstr "" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" msgstr "" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" msgstr "" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" msgstr "" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." msgstr "" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" msgstr "" -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 #, python-format -msgid "Error %(error_code)s" +msgid "User %s not authorized to edit these groups" msgstr "" -#: ckan/templates/footer.html:9 -msgid "About {0}" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" msgstr "" -#: ckan/templates/footer.html:15 -msgid "CKAN API" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." msgstr "" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" msgstr "" -#: ckan/templates/header.html:19 -msgid "View profile" +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" msgstr "" -#: ckan/templates/header.html:26 +#: ckan/logic/auth/create.py:129 #, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" +msgid "User %s not authorized to create organizations" +msgstr "" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" msgstr "" -#: ckan/templates/header.html:37 -msgid "Settings" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." msgstr "" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" msgstr "" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" msgstr "" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" msgstr "" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" msgstr "" -#: ckan/templates/header.html:116 -msgid "Search Datasets" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/templates/page.html:6 -msgid "Skip to content" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" msgstr "" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/templates/admin/base.html:3 -msgid "Administration" +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" msgstr "" -#: ckan/templates/admin/base.html:9 -msgid "Config" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" msgstr "" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" msgstr "" -#: ckan/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" msgstr "" -#: ckan/templates/admin/config.html:17 -msgid "Reset" +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" msgstr "" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." msgstr "" -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/update.py:39 #, 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.

" +msgid "User %s not authorized to edit package %s" msgstr "" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" msgstr "" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" msgstr "" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/update.py:128 #, 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

" +msgid "User %s not authorized to edit organization %s" msgstr "" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" msgstr "" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" +#: ckan/model/license.py:222 +msgid "License not specified" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons - Alıntı (CC BY)" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Alıntı-Lisans Devam (CC BY-SA)" + +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" +#: ckan/model/license.py:301 +msgid "Other (Open)" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." +#: ckan/model/license.py:321 +msgid "Other (Attribution)" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Alıntı-Gayriticari (CC BY-NC)" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." +#: ckan/model/license.py:357 +msgid "Other (Not Open)" msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/model/package_relationship.py:54 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" +msgid "depends on %s" msgstr "" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" msgstr "" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" msgstr "" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" msgstr "" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" msgstr "" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" msgstr "" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" msgstr "" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" msgstr "" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" msgstr "" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" msgstr "" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" msgstr "" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/development/snippets/form.html:24 -msgid "Select" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" msgstr "" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" 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" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" msgstr "" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" msgstr "" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/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" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" msgstr "" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" 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}?" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" msgstr "" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" 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" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" msgstr "" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" msgstr "" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" msgstr "" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" msgstr "" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." msgstr "" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" msgstr "" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" msgstr "" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" msgstr "" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" 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" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" msgstr "" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" msgstr "" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" msgstr "" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" msgstr "" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" msgstr "" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" msgstr "" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" msgstr "" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" msgstr "" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" msgstr "" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" +#: ckan/templates/footer.html:9 +msgid "About {0}" msgstr "" -#: ckan/templates/group/member_new.html:61 -msgid "Save" +#: ckan/templates/footer.html:15 +msgid "CKAN API" msgstr "" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" msgstr "" -#: ckan/templates/group/member_new.html:81 +#: ckan/templates/footer.html:24 msgid "" -"

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

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

" +"Powered by CKAN" msgstr "" -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" msgstr "" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" +#: ckan/templates/header.html:19 +msgid "View profile" msgstr "" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "" +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" msgstr "" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" msgstr "" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" +#: ckan/templates/header.html:37 +msgid "Settings" msgstr "" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" msgstr "" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" msgstr "" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" msgstr "" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" msgstr "" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" +#: ckan/templates/header.html:116 +msgid "Search Datasets" msgstr "" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" +#: ckan/templates/page.html:6 +msgid "Skip to content" msgstr "" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" msgstr "" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" msgstr "" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" msgstr "" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" +#: ckan/templates/admin/base.html:3 +msgid "Administration" msgstr "" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" msgstr "" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" +#: ckan/templates/admin/base.html:9 +msgid "Config" msgstr "" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" 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. " +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" +#: ckan/templates/admin/config.html:16 +msgid "Reset" msgstr "" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" +#: ckan/templates/admin/config.html:17 +msgid "Update Config" msgstr "" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" +#: ckan/templates/admin/config.html:33 +#, 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/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" msgstr "" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" +#: 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/home/index.html:4 -msgid "Welcome" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" 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/

" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" msgstr "" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." 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 " +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." msgstr "" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" msgstr "" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." msgstr "" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." msgstr "" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." msgstr "" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" msgstr "" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" msgstr "" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" msgstr "" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" msgstr "" -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" msgstr "" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" msgstr "" -#: ckan/templates/macros/form.html:265 -msgid "Custom" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" msgstr "" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" msgstr "" -#: ckan/templates/macros/form.html:395 -msgid "Required field" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" msgstr "" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" msgstr "" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" msgstr "" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" msgstr "" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" msgstr "" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" msgstr "" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" msgstr "" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" +#: 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/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" msgstr "" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" msgstr "" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" +#: 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/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" msgstr "" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" +#: 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/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" msgstr "" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" msgstr "" -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" +#: ckan/templates/group/edit_base.html:23 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" msgstr "" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" msgstr "" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" msgstr "" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." msgstr "" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" msgstr "" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" +#: 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/organization/member_new.html:62 -msgid "Update Member" +#: 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/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" msgstr "" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" msgstr "" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" msgstr "" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" msgstr "" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" 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).

" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" 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. " +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" +#: ckan/templates/group/member_new.html:80 +msgid "" +"

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

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

" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." +#: 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/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" msgstr "" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" msgstr "" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." msgstr "" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" msgstr "" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" 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. " +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" msgstr "" -#: ckan/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" msgstr "" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" msgstr "" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." msgstr "" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" 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" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" msgstr "" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" msgstr "" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" msgstr "" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" msgstr "" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" +#: 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/package/group_list.html:23 -msgid "There are no groups associated with this dataset" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" msgstr "" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" msgstr "" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" msgstr "" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" msgstr "" -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" msgstr "" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" msgstr "" -#: ckan/templates/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" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" msgstr "" -#: ckan/templates/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. " +#: ckan/templates/home/index.html:4 +msgid "Welcome" msgstr "" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" +#: 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/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" msgstr "" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" +#: 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/package/resource_data.html:19 -msgid "Upload error:" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" msgstr "" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" msgstr "" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" msgstr "" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" msgstr "" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" msgstr "" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" msgstr "" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" msgstr "" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" msgstr "" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" msgstr "" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" msgstr "" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" msgstr "" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" msgstr "" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" +#: ckan/templates/macros/form.html:265 +msgid "Custom" msgstr "" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" msgstr "" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" +#: ckan/templates/macros/form.html:395 +msgid "Required field" msgstr "" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" msgstr "" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" msgstr "" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" msgstr "" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" msgstr "" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" msgstr "" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" msgstr "" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" msgstr "" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" msgstr "" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" msgstr "" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" msgstr "" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" msgstr "" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" msgstr "" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" msgstr "" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" msgstr "" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" +#: 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/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" msgstr "" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." msgstr "" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" msgstr "" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" msgstr "" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" msgstr "" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" msgstr "" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format +#: ckan/templates/organization/member_new.html:81 msgid "" -"

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

" +"

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/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" msgstr "" -#: ckan/templates/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. " +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" 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). " +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" msgstr "" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" msgstr "" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" +#: 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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" +#: 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/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" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" msgstr "" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." msgstr "" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:19 +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "" + +#: ckan/templates/package/base_form_page.html:25 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/snippets/data_api_button.html:10 -msgid "Data API" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" +#: 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/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:41 -msgid "" -" License definitions and additional information can be found at opendefinition.org " +#: ckan/templates/package/edit_view.html:21 +msgid "Update" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" 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." +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" msgstr "" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" +#: 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/snippets/package_form.html:44 -msgid "Next: Add Data" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" +#: 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/snippets/package_metadata_fields.html:10 -msgid "1.0" +#: 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/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" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" -#: 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" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" msgstr "" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" msgstr "" -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." msgstr "" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_form.html:75 -msgid "Save & add another" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" msgstr "" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" msgstr "" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" msgstr "" -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" msgstr "" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, python-format +msgid "" +"

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

" msgstr "" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" +#: 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/snippets/revisions_table.html:24 +#: ckan/templates/package/search.html:60 #, python-format -msgid "Read dataset as of %s" +msgid "" +" You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s). " msgstr "" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" 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" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" msgstr "" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" msgstr "" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" msgstr "" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" +#: 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/view_form_filters.html:46 -msgid "Filters" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" msgstr "" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" msgstr "" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" msgstr "" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" +#: 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/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" msgstr "" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." msgstr "" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" +#: 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/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" msgstr "" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" msgstr "" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" msgstr "" -#: ckan/templates/revision/read.html:64 -msgid "Changes" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" msgstr "" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" +#: 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/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" msgstr "" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" msgstr "" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" msgstr "" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" msgstr "" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" +#: 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/snippets/home_breadcrumb_item.html:2 -msgid "Home" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" msgstr "" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" +#: 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/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" msgstr "" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" msgstr "" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" msgstr "" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" msgstr "" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" msgstr "" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" msgstr "" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" msgstr "" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" msgstr "" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" msgstr "" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" 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}\"" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" 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" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" 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}\"" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" 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" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" 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/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" msgstr "" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" -msgstr[1] "" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" msgstr "" -#: ckan/templates/snippets/social.html:5 -msgid "Social" +#: 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/snippets/subscribe.html:2 -msgid "Subscribe" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" 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:82 -msgid "Email" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" msgstr "" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" msgstr "" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." msgstr "" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" msgstr "" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" msgstr "" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" msgstr "" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" msgstr "" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" msgstr "" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" msgstr "" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" msgstr "" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" msgstr "" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" 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" +#: 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/user/edit.html:17 -msgid "Account Info" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" msgstr "" -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" msgstr "" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" msgstr "" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" msgstr "" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" msgstr "" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" msgstr "" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" msgstr "" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" msgstr "" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" msgstr "" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" msgstr "" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" +#: ckan/templates/revision/read.html:64 +msgid "Changes" msgstr "" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" msgstr "" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" msgstr "" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" msgstr "" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" 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" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" msgstr "" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" msgstr "" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" msgstr "" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Bir hesap oluşturun" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Şifrenizi mi unuttunuz?" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" 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/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" msgstr "" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "{user} olarak giriş yapmış bulunuyorsunuz." +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Oturumu kapat" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Beni hatırla" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Zaten giriş yapmış bulunuyorsunuz" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." msgstr "" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Oturumumu şimdi kapat" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "" -#: ckan/templates/user/new.html:6 -msgid "Registration" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" msgstr "" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" msgstr "" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Neden kayıt olmalıyım?" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" msgstr "" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "Kullanıcı adı" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Ad & Soyad" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Hesap oluşturun" +#: 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/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Şifrenizi sıfırlayın" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Şifreyi sıfırla" +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Şifreyi güncelle" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Nasıl çalışır?" +#: 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/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" msgstr "" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" msgstr "" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Bu kullanıcının bir özgeçmişi bulunmamaktadır." +#: 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/user/read_base.html:73 -msgid "Open ID" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" msgstr "" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "" +msgstr[1] "" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" msgstr "" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" +#: ckan/templates/snippets/social.html:5 +msgid "Social" msgstr "" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" msgstr "" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" +#: 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:82 +msgid "Email" msgstr "" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" msgstr "" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" msgstr "" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" 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" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" msgstr "" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" msgstr "" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Kullanıcı arama" - -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" msgstr "" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" msgstr "" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" msgstr "" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." msgstr "" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" +#: 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:16 +msgid "Create one now?" msgstr "" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." msgstr "" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." msgstr "" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" +#: 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 "" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" msgstr "" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" +#: ckan/templates/user/edit.html:19 +msgid "" +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" msgstr "" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" 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" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" msgstr "" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" 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" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" msgstr "" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Bu grubun bir açıklaması bulunmamaktadır." - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "Resim bağlantısı" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" msgstr "" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" msgstr "" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" msgstr "" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" +#: 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 "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." msgstr "" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Bir hesap oluşturun" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Şifrenizi mi unuttunuz?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: 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." -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Şifrenizi mi unuttunuz?" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." msgstr "" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "{user} olarak giriş yapmış bulunuyorsunuz." -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Oturumu kapat" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Beni hatırla" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Zaten giriş yapmış bulunuyorsunuz" + +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Tarih" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Oturumumu şimdi kapat" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" +#: ckan/templates/user/new.html:6 +msgid "Registration" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" +#: 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 "" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Yeni veriseti" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "Kullanıcı adı" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Ad & Soyad" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Hesap oluşturun" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Şifrenizi sıfırlayın" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Şifreyi sıfırla" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Şifreyi güncelle" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Nasıl çalışır?" + +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Veriseti sayısı" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Bu kullanıcının bir özgeçmişi bulunmamaktadır." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Etiket ismi" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Veriseti sayısı" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "İstatistik menüsü" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Toplam veriseti sayısı" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Web sitesi" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Arama listesi..." -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "Web adresi" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" +#: 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" diff --git a/ckan/i18n/uk/LC_MESSAGES/ckan.mo b/ckan/i18n/uk/LC_MESSAGES/ckan.mo new file mode 100644 index 00000000000..9aa014c22a6 Binary files /dev/null and b/ckan/i18n/uk/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/uk/LC_MESSAGES/ckan.po b/ckan/i18n/uk/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..f4461acadbf --- /dev/null +++ b/ckan/i18n/uk/LC_MESSAGES/ckan.po @@ -0,0 +1,4563 @@ +# Translations template for ckan. +# Copyright (C) 2017 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2017. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.7.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Kate Svetocheva , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/okfn/teams/11162/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.4.0\n" +"Language: uk\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/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:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Помилка" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Ресурс не знайдено" + +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Помилка:" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Статус" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Ніколи" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Деталі" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Архів Даних" + +#: ckanext/datastore/controller.py:46 +#, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" + +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Створити" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: 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:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Опис" + +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Зберегти" + +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Стовпчик" + +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Завантаження..." + +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "" + +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +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:28 +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:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "" + +#: 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:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "" + +#: 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:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "" + +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ресурси" + +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +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:101 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Графік" + +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Карта" + +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +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/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Дата" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "" + +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "" + +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Група" + +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Користувач" + +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "" + +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Текст" + +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +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:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "" + +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Адмін" + +#: ckan/authz.py:198 +msgid "Editor" +msgstr "" + +#: ckan/authz.py:202 +msgid "Member" +msgstr "" + +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "" + +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Назва сайту" + +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "" + +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "" + +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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:55 +msgid "About page text" +msgstr "" + +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "" + +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "" + +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "" + +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "" + +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "" + +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" + +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "" + +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "" + +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Не знайдено" + +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "" + +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "" + +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "" + +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "" + +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "" + +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "" + +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "" + +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "" + +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "" + +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "" + +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "" + +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "" + +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "" + +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "" + +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "" + +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "" + +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "" + +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "" + +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" + +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "" + +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "" + +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "" + +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "" + +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Групи" + +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "" + +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "" + +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Ліцензії" + +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "" + +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "" + +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "" + +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "" + +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "" + +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "" + +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "" + +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "" + +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "" + +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "" + +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "" + +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "" + +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "" + +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "" + +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "" + +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "" + +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, 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 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" + +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" + +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Набір даних не знайдено" + +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "" + +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "" + +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "" + +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "" + +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "" + +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "" + +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "" + +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "" + +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "" + +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "" + +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "" + +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "" + +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Набір даних було видалено" + +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "" + +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Ресурс успішно видалено" + +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "" + +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "" + +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "" + +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "" + +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "" + +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "" + +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "" + +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "" + +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "" + +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "" + +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "" + +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "" + +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Інші" + +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "" + +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "" + +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "" + +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "" + +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "" + +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Користувач не знайден" + +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "" + +#: ckan/controllers/user.py:245 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "" + +#: ckan/controllers/user.py:265 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" + +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "" + +#: ckan/controllers/user.py:320 +#, python-format +msgid "User %s not authorized to edit %s" +msgstr "" + +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Старий пароль" + +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "Невірний пароль" + +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "" + +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "" + +#: ckan/controllers/user.py:490 +#, python-format +msgid "\"%s\" matched several users" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 +#, python-format +msgid "No such user: %s" +msgstr "" + +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "" + +#: ckan/controllers/user.py:503 +#, python-format +msgid "Could not send reset link: %s" +msgstr "" + +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "" + +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "" + +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "" + +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "" + +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "" + +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "" + +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "" + +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "" + +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "" + +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "" + +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "" + +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "" + +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "" + +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "" + +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "" + +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "" + +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "" + +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "" + +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "" + +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "" + +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "" + +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Січень" + +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Лютий" + +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Березень" + +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Квітень" + +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Травень" + +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Червень" + +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Липень" + +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Серпень" + +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Вересень" + +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Жовтень" + +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Листопад" + +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Грудень" + +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "" + +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" + +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "" + +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "" + +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "" + +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "" + +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "" + +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "" + +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "" + +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "" + +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "" + +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "" + +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "" + +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "" + +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "" + +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "" + +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "" + +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "" + +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Невідомий" + +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "" + +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "" + +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "" + +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "" + +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/lib/mailer.py:39 +#, python-format +msgid "%s <%s>" +msgstr "" + +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "" + +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "Організація" + +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "група" + +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "" + +#: ckan/lib/navl/validators.py:66 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "" + +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "" + +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "" + +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "" + +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "" + +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "" + +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "" + +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "" + +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "" + +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "" + +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "" + +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "" + +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "" + +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Ресурс" + +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "" + +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "" + +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "" + +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "" + +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Цей URL вже використаний" + +#: ckan/logic/validators.py:366 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:370 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "" + +#: ckan/logic/validators.py:376 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "" + +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "" + +#: ckan/logic/validators.py:416 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:420 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "" + +#: ckan/logic/validators.py:428 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" + +#: ckan/logic/validators.py:436 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "" + +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "" + +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Цей логін недоступний" + +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "" + +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "" + +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "" + +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" + +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "" + +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" + +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "" + +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "" + +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "" + +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "" + +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "" + +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "" + +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "" + +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "" + +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "" + +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "" + +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "" + +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "" + +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "" + +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "" + +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "" + +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "" + +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "" + +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "" + +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "" + +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "" + +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "" + +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "" + +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "" + +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "" + +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "" + +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "" + +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "" + +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "" + +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "" + +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "" + +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "" + +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "" + +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "" + +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "" + +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "" + +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "" + +#: ckan/logic/action/update.py:1059 +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:45 +#, 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:63 +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:189 +msgid "Group was not found." +msgstr "" + +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "" + +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "" + +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "" + +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +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 +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/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "" + +#: ckan/logic/auth/get.py:109 +#, 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:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "" + +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "" + +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "" + +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" + +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "" + +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "" + +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "" + +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "" + +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" + +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" + +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "" + +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "" + +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" + +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "" + +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "" + +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "" + +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "" + +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "" + +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "" + +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "" + +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "" + +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "" + +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "" + +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "" + +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "" + +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "" + +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "" + +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "" + +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "" + +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "" + +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "" + +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "" + +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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 +msgid "There are unsaved modifications to this form" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +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/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +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:12 +msgid "Sysadmin settings" +msgstr "" + +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "" + +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "" + +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "" + +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "" + +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "" + +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "" + +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "" + +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "" + +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:33 +#, python-format +msgid "" +"

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

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

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

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

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

" +"

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

" +"

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

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

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

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

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

Purge deleted datasets forever and irreversibly.

" +msgstr "" + +#: ckan/templates/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:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "" + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "" + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "" + +#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 +#: ckan/templates/organization/admins.html:3 +#: ckan/templates/organization/admins.html:6 +msgid "Administrators" +msgstr "" + +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "" + +#: ckan/templates/group/confirm_delete.html:3 +#: ckan/templates/group/confirm_delete.html:15 +#: ckan/templates/group/confirm_delete_member.html:3 +#: ckan/templates/group/confirm_delete_member.html:16 +#: ckan/templates/organization/confirm_delete.html:3 +#: ckan/templates/organization/confirm_delete.html:15 +#: ckan/templates/organization/confirm_delete_member.html:3 +#: ckan/templates/organization/confirm_delete_member.html:16 +#: ckan/templates/package/confirm_delete.html:3 +#: ckan/templates/package/confirm_delete.html:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "" + +#: ckan/templates/group/confirm_delete_member.html:11 +#: ckan/templates/organization/confirm_delete_member.html:11 +msgid "Are you sure you want to delete member - {name}?" +msgstr "" + +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "" + +#: ckan/templates/group/edit_base.html:23 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/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "" + +#: ckan/templates/group/index.html: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:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "" + +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "" + +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" + +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "" + +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "" + +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" + +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "" + +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "" + +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "" + +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "" + +#: ckan/templates/group/member_new.html:80 +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:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:63 +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/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "" + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "" + +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "" + +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "" + +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "" + +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "" + +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "" + +#: ckan/templates/home/snippets/about_text.html:1 +msgid "" +"

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

" +"

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

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

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

" +msgstr "" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "" + +#: ckan/templates/home/snippets/promoted.html:10 +msgid "" +"This is a nice introductory paragraph about CKAN or the site in general. We " +"don't have any copy to go here yet but soon we will " +msgstr "" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "" + +#: ckan/templates/home/snippets/stats.html: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/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "" + +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "" + +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "" + +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "" + +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "" + +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "" + +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "" + +#: ckan/templates/organization/edit.html:6 +#: ckan/templates/organization/snippets/info.html:13 +#: ckan/templates/organization/snippets/info.html:16 +msgid "Edit Organization" +msgstr "" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "" + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "" + +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "" + +#: ckan/templates/organization/member_new.html:81 +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 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "" + +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "" + +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "" + +#: ckan/templates/organization/snippets/help.html:7 +msgid "" +"

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

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

" +msgstr "" + +#: ckan/templates/organization/snippets/helper.html:8 +msgid "" +" CKAN Organizations are used to create, manage and publish collections of " +"datasets. Users can have different roles within an Organization, depending " +"on their level of authorisation to create, edit and publish. " +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:63 +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:22 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/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:16 +msgid "View dataset" +msgstr "" + +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "" + +#: ckan/templates/package/edit_view.html:3 +#: ckan/templates/package/edit_view.html:4 +#: ckan/templates/package/edit_view.html:8 +#: ckan/templates/package/edit_view.html:12 +msgid "Edit view" +msgstr "" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +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:15 +msgid "Update Dataset" +msgstr "" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "" + +#: ckan/templates/package/new_view.html:3 +#: ckan/templates/package/new_view.html:4 +#: ckan/templates/package/new_view.html:8 +#: ckan/templates/package/new_view.html:12 +msgid "Add view" +msgstr "" + +#: ckan/templates/package/new_view.html:19 +msgid "" +" Data Explorer views may be slow and unreliable unless the DataStore " +"extension is enabled. For more information, please see the Data Explorer " +"documentation. " +msgstr "" + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "" + +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "" + +#: 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:39 +msgid "API Endpoint" +msgstr "" + +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "" + +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "" + +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "" + +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "" + +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:122 +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:144 +msgid "Additional Information" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "" + +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "" + +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "" + +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "" + +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "" + +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, 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/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:37 +#: ckan/templates/package/snippets/additional_info.html:42 +#: ckan/templates/package/snippets/package_metadata_fields.html:20 +msgid "Maintainer" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/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/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:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:111 +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:24 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:77 +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:23 +msgid "Explore" +msgstr "" + +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "" + +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "" + +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html: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/revision/diff.html:6 +msgid "Differences" +msgstr "" + +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "" + +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "" + +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "" + +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "" + +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "" + +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "" + +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "" + +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "" + +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "" + +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "" + +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "" + +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "" + +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "" + +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "" + +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "" + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +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:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "" + +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "" + +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "" + +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "" + +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "" + +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "" + +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "" + +#: ckan/templates/snippets/search_form.html:86 +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:82 +msgid "Email" +msgstr "" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "" + +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "" + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:16 +msgid "Create one now?" +msgstr "" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "" + +#: ckan/templates/user/dashboard_organizations.html: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 +msgid "Change password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "" + +#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 +#: ckan/templates/user/login.html:12 +#: ckan/templates/user/snippets/login_form.html:28 +msgid "Login" +msgstr "" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "" + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "" + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "" + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "" + +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "" + +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "" + +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." +msgstr "" + +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "" + +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "" + +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "" + +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "" + +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "" + +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "" + +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "" + +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "" + +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "" + +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "" + +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "" + +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "" diff --git a/ckan/i18n/uk_UA/LC_MESSAGES/ckan.mo b/ckan/i18n/uk_UA/LC_MESSAGES/ckan.mo index 96123b75458..ce359b11edf 100644 Binary files a/ckan/i18n/uk_UA/LC_MESSAGES/ckan.mo and b/ckan/i18n/uk_UA/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po b/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po index be4d7c7994e..9c6bcb951d5 100644 --- a/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po +++ b/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po @@ -1,4600 +1,4704 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Zoriana Zaiats , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: uk_UA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Функція авторизації не знайдена: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Завершено" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Адмін" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Обробка" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Редактор" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Підтведження" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Учасник" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Помилка" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "Для виконання цієї дії необхідні права системного адміністратора" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Ще не вкладено" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Заголовок сайту" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Ресурс не знайдено" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Стиль" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Недостатньо прав для перегляду цієї сторінки" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Лінія тегів сайту" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Вкласти до DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Логотип тега сайту" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Помилка вкладення" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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 "Про проект" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Помилка:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Текст сторінки про проект" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Відстеження помилки:" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Вступний текст" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Статус" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Текст на домашній сторінці" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Останнє оновлення" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Довільний CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Ніколи" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "Код сss, інтегрований в головну сторінку" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Журнал вкладень" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Головна сторінка" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Подробиці" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Кінець повідомлення журналу" + +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" -#: ckan/controllers/admin.py:160 +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "Формат: має бути один з %s" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Ресурс DataStore не знайдено" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." msgstr "" -"Неможливо очистити пакет %s, оскільки версія %s містить невидалені пакети %s" +"Дані були недійсними (наприклад, числове значення завелике або вставлене у " +"текстове поле)" -#: ckan/controllers/admin.py:182 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "При видаленні версії %s виникла помилка: %s" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Ресурс \"{0}\" не знайдено." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Очищення завершено" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "Користувач {0} не має достатньо прав для оновлення ресурсу {1}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Дія не вступила в силу." +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN Data API" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Недостатньо прав для перегляду цієї сторінки" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "Доступ до даних ресурсу через веб API із потужною підтримкою запитів" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "У доступі відмовлено" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Більше інформаціі в головні документації по CKAN Data API та " +"DataStore.

" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Не знайдено" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Точки входу" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Неправильний запит" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Доступ до API даних можна отримати через такі дії за допомогою API дій CKAN." -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Назва дії невідома: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Створити" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Помилка JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Оновити / Вставити" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Неправильні дані запиту: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Запит" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Неможливо перелічити об'єкти цього типу: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Запит (через SQL)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Неможливо прочитати об'єкт цього типу: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Запит" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Неможливо створити новий об'єкт цього типу: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Приклад запиту (перші 5 результатів)" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "Неможливо додати пакет до пошукового індексу" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Приклад запиту (результати, що містять 'jones')" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Неможливо оновити об'єкт такого типу: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Приклад запиту (за допомогою SQL)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Неможливо оновити пошуковий індекс" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Приклад: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Неможливо видалити об'єкт такого типу: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Простий ajax (JSONP) запрос до API даних з використанням jQuery." -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Версію не вказано" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Приклад: Python" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Не існує версії з id: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "Поле {num}" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Відсутність пошуку ('since_id=UUID' або 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Мітка" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Неможливо прочитати параметри: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Опис" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Неправильний параметр пошуку: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Зберегти" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Невідомий регістр: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Словник даних" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Спотворене значення qjson: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Колонка" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Запит повинен бути у вигляді JSON коду." +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "Тип" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Групу не знайдено" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Завантаження..." -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Організація не знайдена" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "API даних" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Невірний тип групи" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "Таблиця" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Організації " +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Групи" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Показати колонки" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Теги" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "Приховати/показати колонки" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Формати" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Наборів даних на сторінку" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Ліцензії" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Тестові налаштування" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "Немає прав на масове оновлення" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Актуальність" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Недостатньо прав для створення групи" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "Користувач %r не має достатньо прав для редагування %s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Помилка цілісності" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Last Modified" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "" -"Користувач %r не має достатньо прав для редагування прав користувача %s" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Користувацьке поле (по зростанню)" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Недостатньо прав для видалення групи %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Користувацьке поле (по спаданню)" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Організація була видалена" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Популярне" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -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 "Довільний текст" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s було видалено." +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "довільний текст" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "Недостатньо прав для додавання учасника у групу %s" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Код країни" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Недостатньо прав для видалення учасників групи %s" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "користувацький текст ресурсу" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Учасник групи був видалений" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Це неперекладена строка" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -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/controllers/group.py:778 -msgid "CKAN Group Revision History" -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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Останні зміни у групі CKAN:" +#: 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 наборів даних" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Log message: " +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Тепер ви підписані на {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Підписники" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Ви більше не підписані на {0}" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ресурси" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Недостатньо прав для перегляду підписників %s" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Зображення" -#: ckan/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "Сайт зараз перебуває у режимі офлайн. База даних не ініціалізована." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL-адреса зображення" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " +#: 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 (якщо пусто, використовується адреса" +" ресурсу)" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "" -"%s використовує Вашу електронну пошту, якщо Вам необхідно скинути свій " -"пароль." +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "Провідник даних" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "Графік" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Параметр \"{parameter_name}\" не є цілим числом" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "Карта" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Набір даних не знайдено" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "помилка при завантаженні представлення" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Неправильний формат перевірки: %r" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "Не вдалось завантажити представлення" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" -"Перегляд {package_type} наборів даних у форматі {format} не підтримується " -"(файл шаблону {file} не знайдений)." +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "DataStore повернув помилку" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Недостатньо прав для читання пакету %s" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "DataProxy повернув помилку" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Історія попередніх версій набору даних" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "Сітка" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Останні зміни у наборі даних CKAN:" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "Фільтри" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Недостатньо прав для створення пакету" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Зміщення ряду" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Недостатньо прав для редагування цього ресурсу" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "наприклад, 0" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Ресурс не знайдено" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Кількість рядів" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Недостатньо прав для оновлення набору даних" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "наприклад: 100" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Набір даних {id} не знайдено" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Тип графіка" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "Ви має додати хоча би один ресурс" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Група (Вісь 1)" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Помилка" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Серії (Вісь 2)" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Недостатньо прав для створення ресурсу" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Тип поля" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "Недостатньо прав для створення ресурсу у цьому пакеті" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Поле широти" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "Неможливо додати пакет до пошукового індексу." +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Поле довготи" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "Неможливо оновити пошуковий індекс." +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Поле GeoJSON" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "Набір даних було видалено" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Автоматичне збільшення до можливостей" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Недостатньо прав для видалення пакету %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Кластерні маркери" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Ресурс був видалений" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Всього наборів даних" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Недостатньо прав для видалення ресурсу %s" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Дата" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Вид ресурсу не знайдено" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Всього наборів даних" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Дані ресурсу не знайдено" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Версії набору даних за тиждень" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Не доступно для завантаження" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Усі версії набору даних" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Недостатньо прав для читання набору даних %s" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Нові набори даних" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Недостатньо прав для читання ресурсу %s" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Найрейтинговіші набори даних" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Недостатньо прав для редагування ресурсу" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Середня оцінка" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "View не знайдено" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Кількість оцінок" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Тип представлення не знайдено" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Немає оцінок" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Погані дані про представлення ресурсу" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Найчастіше редаговані набори даних" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Представлення ресурсу не надано" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Набір даних" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Попередній перегляд недоступний." +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Кількість редагувань" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Історія змін бази CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Немає редагованих наборів даних" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Останні зміни репозиторію CKAN." +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Найбільші групи" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Datasets affected: %s.\n" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Група" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Редакція оновлюється" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Кількість наборів даних" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Інше" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Немає груп" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Тег не знайдено" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Найпопулярніші теги" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Користувача не знайдено" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Назва тегу" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Недостатньо прав для реєстрації користувачем" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Кількість наборів даних" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Недостатньо прав для створення користувача" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "Користувачі, що створили найбільшу кількість наборів даних" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" -"Недостатньо прав для видалення користувача з ідентифікатором \"{user_id}\"." +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Користувач" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Не вказано користувача" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Меню статистики" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Недостатньо прав для редагування користувача %s" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Всього наборів даних" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Профіль оновлено" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "Текст" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Недостатньо прав для створення користувача %s" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "Вебсайт" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Ви неправильно ввели КАПЧУ. Попробуйте ще раз." +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Адреса веб сторінки" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" msgstr "" -"Користувач \"%s\" тепер зареєстрований, але ви все ще перебуваєте в сесії як" -" користувач \"%s\"" +"наприклад, http://example.com (якщо пусто, використовується адреса ресурсу)" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Недостатньо прав для редагування користувача." +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Ваш браузер не підтримує фрейми." -#: ckan/controllers/user.py:320 +#: ckan/authz.py:182 #, python-format -msgid "User %s not authorized to edit %s" -msgstr "Користувач %s не має достатньо прав для редагування %s" - -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "Введений пароль невірний" +msgid "Authorization function not found: %s" +msgstr "Функція авторизації не знайдена: %s" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "Старий пароль" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Адмін" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "невірний пароль" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Редактор" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "Не вдалось увійти. Неправильний логін або пароль." +#: ckan/authz.py:202 +msgid "Member" +msgstr "Учасник" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Недостатньо прав для запиту скидання паролю." +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "Для виконання цієї дії необхідні права системного адміністратора" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" відповідає кільком користувачам" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Заголовок сайту" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Користувача %s немає " - -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "" -"Будь ласка перевірте вашу електронну пошту – на неї має прийти лист з кодом " -"відновлення." +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Стиль" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Не вдалося надіслати посилання на відновлення: %s" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "Лінія тегів сайту" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Недостатньо прав для скидання паролю." +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Логотип тега сайту" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Неправильний код відновлення. Попробуйте знову." +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:541 -msgid "Your password has been reset." -msgstr "Ваш пароль був відновлений." +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Текст сторінки про проект" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "Пароль повинен мати не менше 4 символів." +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Вступний текст" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Введені паролі не збігаються." +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Текст на домашній сторінці" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Ви повинні ввести пароль" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Довільний CSS" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "Підписка не була знайдена" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "Код сss, інтегрований в головну сторінку" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} не знайдено" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Головна сторінка" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Все" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Неможливо очистити пакет %s, оскільки версія %s містить невидалені пакети %s" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Значення відсутнє" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "При видаленні версії %s виникла помилка: %s" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Перенаправлення на зовнішні сайти не дозволено." +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Очищення завершено" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} додав тег {tag} до набору даних {dataset}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Дія не вступила в силу." -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} оновив групу {group}" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "У доступі відмовлено" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} оновив організацію {organization}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Не знайдено" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} оновив набір даних {dataset}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Неправильний запит" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} змінив додатково {extra} з набору даних {dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Назва дії невідома: %s" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} оновив ресурс {resource} у наборі даних {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Помилка JSON: %s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} оновив свій профіль" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Неправильні дані запиту: %s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} видалив групу {group}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Неможливо перелічити об'єкти цього типу: %s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} видалив організацію {organization}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Неможливо прочитати об'єкт цього типу: %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} видалив набір даних {dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Неможливо створити новий об'єкт цього типу: %s %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} видалив додатково {extra} з набору даних {dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "Неможливо додати пакет до пошукового індексу" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} видалив ресурс {resource} з набору даних {dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Неможливо оновити об'єкт такого типу: %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} створив групу {group}" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Неможливо оновити пошуковий індекс" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} створив організацію {organization}" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Неможливо видалити об'єкт такого типу: %s %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} створив набір даних {dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Версію не вказано" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} додав додатково {extra} з набору даних {dataset}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Не існує версії з id: %s" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} додав ресурс {resource} до набору даних {dataset}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Відсутність пошуку ('since_id=UUID' або 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} підписав" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Неможливо прочитати параметри: %r" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} видалив тег {tag} з набору даних {dataset}" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Неправильний параметр пошуку: %s" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} стежить за {dataset}" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Невідомий регістр: %s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} стежить за {user}" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Спотворене значення qjson: %r" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} стежить за {group}" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Запит повинен бути у вигляді JSON коду." -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Переглянути" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +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/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Організація не знайдена" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Січень" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Невірний тип групи" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Лютий" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Організації " -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Березень" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Групи" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Квітень" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Теги" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Травень" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Формати" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Червень" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Ліцензії" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Липень" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Користувач %r не має достатньо прав для редагування %s" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Серпень" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "Немає прав на масове оновлення" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Вересень" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Недостатньо прав для створення групи" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Жовтень" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Помилка цілісності" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Листопад" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "" +"Користувач %r не має достатньо прав для редагування прав користувача %s" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "Грудень" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Недостатньо прав для видалення групи %s" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "Щойно" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Організація була видалена" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} хвилину тому" -msgstr[1] "{mins} хвилини тому" -msgstr[2] "{mins} хвилин тому" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Група була видалена" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} годину тому" -msgstr[1] "{hours} години тому" -msgstr[2] "{hours} годин тому" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s було видалено." -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} день тому" -msgstr[1] "{days} дні тому" -msgstr[2] "{days} днів тому" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "Користувач %r не має достатньо прав для редагування учасників %s" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} місяць назад" -msgstr[1] "{months} місяці назад" -msgstr[2] "{months} місяців назад" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Недостатньо прав для додавання учасника у групу %s" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "більше {years} року назад" -msgstr[1] "більше {years} років назад" -msgstr[2] "більше {years} років назад" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Недостатньо прав для видалення учасників групи %s" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Учасник групи був видалений" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{day} {month} {year}" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Виберіть дві версії перед порівнянням" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Історія попередніх версій групи" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Останні зміни у групі CKAN:" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Log message: " -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Тепер ви підписані на {0}" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Ви більше не підписані на {0}" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Недостатньо прав для перегляду підписників %s" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Сайт зараз перебуває у режимі офлайн. База даних не ініціалізована." -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Будь ласка, оновіть Ваш профайл і вкажіть свою електронну" +" пошту." -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s використовує Вашу електронну пошту, якщо Вам необхідно скинути свій " +"пароль." -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "Неправильний пошуковий запит: {error_message}" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Параметр \"{parameter_name}\" не є цілим числом" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Набір даних не знайдено" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Неправильний формат перевірки: %r" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Оновіть свій аватар на gravatar.com" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Недостатньо прав для читання пакету %s" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Невідомий" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Історія попередніх версій набору даних" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Ресурс без назви" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Останні зміни у наборі даних CKAN:" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Створити новий набір даних." +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Недостатньо прав для створення пакету" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Відредаговані ресурси." +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Недостатньо прав для редагування цього ресурсу" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Відредаговані налаштування." +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Недостатньо прав для оновлення набору даних" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} перегляд" -msgstr[1] "{number} перегляди" -msgstr[2] "{number} переглядів" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Набір даних {id} не знайдено" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} недавній перегляд" -msgstr[1] "{number} недавніх переглядів" -msgstr[2] "{number} недавніх переглядів" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "Ви має додати хоча би один ресурс" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Недостатньо прав для створення ресурсу" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Email адреса отримувача не доступна!" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "Недостатньо прав для створення ресурсу у цьому пакеті" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "організація" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "Неможливо додати пакет до пошукового індексу." -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "група" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Неможливо оновити пошуковий індекс." -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Значення відсутнє" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Набір даних було видалено" -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "Введене поле %(name)s не очікувалося." - -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Будь ласка, введіть ціле число" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Ресурси" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Пакет ресурсу(ів) не дійсний" +msgid "Unauthorized to delete package %s" +msgstr "Недостатньо прав для видалення пакету %s" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Додатки" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Ресурс був видалений" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1052 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Тег словника \"%s\" не існує" - -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Користувач" +msgid "Unauthorized to delete resource %s" +msgstr "Недостатньо прав для видалення ресурсу %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Набір даних" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Вид ресурсу не знайдено" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Група" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Дані ресурсу не знайдено" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Не вдалося проаналізувати як дійсний JSON" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Не доступно для завантаження" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Недостатньо прав для читання набору даних %s" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Організації не існує" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Недостатньо прав для читання ресурсу %s" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "Ви не можете додати набір даних до цієї організації" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Недостатньо прав для редагування ресурсу" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Неправильне число" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "View не знайдено" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Має бути натуральним числом" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Тип представлення не знайдено" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Має бути додатнім числом" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Погані дані про представлення ресурсу" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Формат дати вказаний неправильно" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Представлення ресурсу не надано" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "Посилання в log_message заборонені." +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Попередній перегляд недоступний." -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Набір даних з таким id вже існує" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Історія змін бази CKAN" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Ресурс" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Останні зміни репозиторію CKAN." -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "Дане ім'я групи або ID не існує" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "Datasets affected: %s.\n" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Тип процесу" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Редакція оновлюється" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Назви повинні бути рядками" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Інше" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Це ім'я не може бути використане" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Тег не знайдено" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "Має мати не менше %s символів" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Недостатньо прав для реєстрації користувачем" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Ім'я має мати не більше %i символів" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Недостатньо прав для створення користувача" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." msgstr "" -"може містити лише символи нижнього регістру (ascii), а також символи - " -"(дефіс) та _ (підкреслення)" +"Недостатньо прав для видалення користувача з ідентифікатором \"{user_id}\"." -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Дане URL уже зайняте" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Не вказано користувача" -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "Назва \"%s\" є коротшою за встановлений мінімум у %s символи" +msgid "Unauthorized to edit user %s" +msgstr "Недостатньо прав для редагування користувача %s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "Назва \"%s\" є довшою за встановлений максимум у %s символи" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Користувача не знайдено" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "Версія повинна містити максимум %i символів" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Профіль оновлено" -#: ckan/logic/validators.py:393 +#: ckan/controllers/user.py:245 #, python-format -msgid "Duplicate key \"%s\"" -msgstr "Створити дублікат ключа \"%s\"" +msgid "Unauthorized to create user %s" +msgstr "Недостатньо прав для створення користувача %s" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Група з такою назвою уже існує" +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Ви неправильно ввели КАПЧУ. Попробуйте ще раз." -#: ckan/logic/validators.py:415 +#: ckan/controllers/user.py:265 #, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Тег \"%s\" коротший за мінімальне значення %s" +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Користувач \"%s\" тепер зареєстрований, але ви все ще перебуваєте в сесії як" +" користувач \"%s\"" -#: ckan/logic/validators.py:419 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "Тег \"%s\" довший за максимальне значення %i" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Недостатньо прав для редагування користувача." -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:320 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" -"Тег \"%s\" може містити лише числа, літери, а також символи - (дефіс) та _ " -"(підкреслення)." +msgid "User %s not authorized to edit %s" +msgstr "Користувач %s не має достатньо прав для редагування %s" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Тег \"%s\" не може містити літер у верхньому регістрі" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "Введений пароль невірний" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Імена користувачів мають бути рядками" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "Старий пароль" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Цей логін уже використовується." +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "невірний пароль" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Будь ласка, введіть обидва паролі" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "Не вдалось увійти. Неправильний логін або пароль." -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Паролі мають бути рядками" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Недостатньо прав для запиту скидання паролю." -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Ваш пароль має мати не менше 4 символів" +#: ckan/controllers/user.py:490 +#, python-format +msgid "\"%s\" matched several users" +msgstr "\"%s\" відповідає кільком користувачам" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Введені паролі не збігаються" +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 +#, python-format +msgid "No such user: %s" +msgstr "Користувача %s немає " -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." msgstr "" -"Редагування не дозволено, оскільки текст схожий на спам. Будь ласка, " -"уникайте посилань у описі." +"Будь ласка перевірте вашу електронну пошту – на неї має прийти лист з кодом " +"відновлення." -#: ckan/logic/validators.py:619 +#: ckan/controllers/user.py:503 #, python-format -msgid "Name must be at least %s characters long" -msgstr "Ім'я має мати не менше %s символів" +msgid "Could not send reset link: %s" +msgstr "Не вдалося надіслати посилання на відновлення: %s" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Ця назва словника уже використовується." +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Недостатньо прав для скидання паролю." -#: ckan/logic/validators.py:633 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" -"Неможливо змінити значення ключа з %s на %s. Цей ключ доступний лише для " -"читання" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Неправильний код відновлення. Попробуйте знову." -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "Тег словника не знайдено" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Ваш пароль був відновлений." -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Тег %s не належить словнику %s" - -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Немає назви тегу" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "Пароль повинен мати не менше 4 символів." -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Тег %s уже існує в словнику %s" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Введені паролі не збігаються." -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Вкажіть дійсний URL" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Ви повинні ввести пароль" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "роль не існує" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Підписка не була знайдена" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "Набори даних, що не належать організації, не можуть бути приватними." +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} не знайдено" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Не список" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Все" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Не рядок" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Значення відсутнє" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "Цей батьківський елемент може створити петлю в ієрархії" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Перенаправлення на зовнішні сайти не дозволено." -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" -"параметри \"filter_fields\" та \"filter_values\" повинні бути однакової " -"довжини" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} додав тег {tag} до набору даних {dataset}" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "параметр \"filter_fields\" необхідний, якщо \"filter_values\" заповнений" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} оновив групу {group}" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "параметр \"filter_values\" необхідний, якщо \"filter_fields\" заповнений" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} оновив організацію {organization}" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "Вже існує поле схеми з таким же ім’ям" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} оновив набір даних {dataset}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Створити об'єкт %s" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} змінив додатково {extra} з набору даних {dataset}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Зв'язати пакети: %s %s %s" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} оновив ресурс {resource} у наборі даних {dataset}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Створення об'єкту %s" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} оновив свій профіль" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Ви пробували створити організацію як групу" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} видалив групу {group}" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "Введіть ідентифікатор пакету або його ім'я (параметр \"пакет\")." +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} видалив організацію {organization}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "Задайте рейтинг (параметр \"рейтинг\")." +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} видалив набір даних {dataset}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Значення рейтингу має бути цілим числом." +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} видалив додатково {extra} з набору даних {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Значення рейтингу має бути між %i та %i." +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} видалив ресурс {resource} з набору даних {dataset}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} створив групу {group}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "Увійдіть, щоб мати можливість стежити за користувачами" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} створив організацію {organization}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Ви не можете стежити за собою" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} створив набір даних {dataset}" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Ви уже стежите за {0}" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} додав додатково {extra} з набору даних {dataset}" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "Увійдіть, щоб мати можливість стежити за набором даних" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} додав ресурс {resource} до набору даних {dataset}" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Користувача {username} не існує." +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} підписав" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Увійдіть, щоб мати можливість стежити за групою" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} видалив тег {tag} з набору даних {dataset}" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} стежить за {dataset}" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Видалити пакет: %s" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} стежить за {user}" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Видалити %s" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} стежить за {group}" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Видалити учасника: %s" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Переглянути" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "id немає в даних" +#: 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}" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Не вдалося знайти словник \"%s\"" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Січень" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Не вдалося знайти тег \"%s\"" +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "Лютий" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "Увійдіть, щоб мати можливість відписатись від чогось." +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Березень" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Ви не стежите за {0}." +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Квітень" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Ресурс не знайдено." +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Травень" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "Не вказуйте, якщо вже використовуєте параметр запиту" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Червень" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Мають бути пара (пари) :" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Липень" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "Поле \"{field}\" не кваліфікується в resource_search." +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "Серпень" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Пакет не знайдено." +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "Вересень" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: Оновити об'єкт %s" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "Жовтень" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Обновити зв'язок пакетів: %s %s %s" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Листопад" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "TaskStatus не знайдено." +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "Грудень" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Організацію не знайдено." +#: ckan/lib/formatters.py:114 +msgid "Just now" +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/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} хвилину тому" +msgstr[1] "{mins} хвилини тому" +msgstr[2] "{mins} хвилин тому" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, 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/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} годину тому" +msgstr[1] "{hours} години тому" +msgstr[2] "{hours} годин тому" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "Не надано id ресурсу, неможливо підтвердити достовірність." +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} день тому" +msgstr[1] "{days} дні тому" +msgstr[2] "{days} днів тому" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "" -"Не знайдено пакетів для цього ресурсу. Неможливо підтвердити достовірність." +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} місяць назад" +msgstr[1] "{months} місяці назад" +msgstr[2] "{months} місяців назад" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" -"Користувач %s не має достатньо прав для створення ресурсів у наборі даних %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "більше {years} року назад" +msgstr[1] "більше {years} років назад" +msgstr[2] "більше {years} років назад" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "Користувач %s не має достатньо прав для редагування цих пакетів" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "Користувач %s не має достатньо прав для створення груп" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{day} {month} {year}" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "Користувач %s не має достатньо прав для створення організацій" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" -msgstr "" -"Користувач {user} не має достатньо прав для створення користувачів через API" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "Не має достатньо прав для створення користувачів" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Групу не знайдено" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Для створення пакету необхідний дійсний ключ API" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Для створення групи необхідний дійсний ключ API" +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "Користувач %s не має достатньо прав для додавання учасників" +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "Користувач %s не має достатньо прав для редагування групи %s" +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "Користувач %s не має достатньо прав для видалення ресурсу %s" +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" -"Представлення ресурсу не знайдено, неможливо підтвердити достовірність." +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "Користувач %s не має достатньо прав для видалення зв'язку %s" +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "Користувач %s не має достатньо прав для видалення груп" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "Користувач %s не має достатньо прав для видалення групи %s" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "Користувач %s не має достатньо прав для видалення організацій" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "Користувач %s не має достатньо прав для видалення організації %s" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Оновіть свій аватар на gravatar.com" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "Користувач %s не має достатньо прав для видалення task_status" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Невідомий" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Не авторизований" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Ресурс без назви" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "Користувач %s не має достатньо прав для читання цих пакетів" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Створити новий набір даних." -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "Користувач %s не має достатньо прав для читання пакету %s" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Відредаговані ресурси." -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "Користувач %s не має достатньо прав для читання ресурсу %s" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Відредаговані налаштування." -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "Користувач %s не має достатньо прав для читання групи %s" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} перегляд" +msgstr[1] "{number} перегляди" +msgstr[2] "{number} переглядів" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "Увійдіть, щоб отримати доступ до панелі управління." +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} недавній перегляд" +msgstr[1] "{number} недавніх переглядів" +msgstr[2] "{number} недавніх переглядів" -#: ckan/logic/auth/update.py:39 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to edit package %s" -msgstr "Користувач %s не має достатньо прав для редагування пакету %s" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "Користувач %s не має достатньо прав для редагування ресурсу %s" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Email адреса отримувача не доступна!" -#: ckan/logic/auth/update.py:100 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "Користувач %s не має достатньо прав для зміни статусу пакета %s" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "організація" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "Користувач %s не має достатньо прав для редагування організації %s" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "група" -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "Користувач %s не має достатньо прав для зміни статусу групи %s" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Значення відсутнє" -#: ckan/logic/auth/update.py:162 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "Користувач %s не має достатньо прав для редагування дозволів групи %s" +msgid "The input field %(name)s was not expected." +msgstr "Введене поле %(name)s не очікувалося." -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "Ви повинні бути авторизовані для редагування користувача" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Будь ласка, введіть ціле число" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "Користувач %s не має достатньо прав для редагування користувача %s" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "Значення має бути строкою" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "Користувач {0} не має достатньо прав для оновлення користувача {1}" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Пакет ресурсу(ів) не дійсний" -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "Користувач %s не має достатньо прав для зміни статусу версії" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Додатки" -#: ckan/logic/auth/update.py:225 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to update task_status table" -msgstr "" -"Користувач %s не має достатньо прав для оновлення таблиці task_status " +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Тег словника \"%s\" не існує" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "" -"Користувач %s не має достатньо прав для оновлення таблиці term_translation" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Не вдалося проаналізувати як дійсний JSON" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Для редагування пакету необхідний дійсний ключ API" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "Вкажіть організацію" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Для редагування групи необхідний дійсний ключ API" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Організації не існує" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Ліцензію не вказано" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "Ви не можете додати набір даних до цієї організації" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Неправильне число" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Має бути натуральним числом" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Має бути додатнім числом" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Формат дати вказаний неправильно" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "Посилання в log_message заборонені." -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Набір даних з таким id вже існує" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Ресурс" -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "Інші (Open)" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "Дане ім'я групи або ID не існує" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Інші (Public Domain)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Тип процесу" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Інші (Attribution)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Назви повинні бути рядками" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Це ім'я не може бути використане" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Має мати не менше %s символів" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Інші (Non-Commercial)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Ім'я має мати не більше %i символів" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Інші (Not Open)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"може містити лише символи нижнього регістру (ascii), а також символи - " +"(дефіс) та _ (підкреслення)" -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "depends on %s" -msgstr "залежить від %s" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Дане URL уже зайняте" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "is a dependency of %s" -msgstr "залежно від %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Назва \"%s\" є коротшою за встановлений мінімум у %s символи" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:370 #, python-format -msgid "derives from %s" -msgstr "походить від %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Назва \"%s\" є довшою за встановлений максимум у %s символи" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "has derivation %s" -msgstr "є похідним від %s" +msgid "Version must be a maximum of %i characters long" +msgstr "Версія повинна містити максимум %i символів" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:394 #, python-format -msgid "links to %s" -msgstr "посилається на %s" +msgid "Duplicate key \"%s\"" +msgstr "Створити дублікат ключа \"%s\"" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "Група з такою назвою уже існує" + +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "зв'язаний посиланням від %s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Тег \"%s\" коротший за мінімальне значення %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "є дочірнім від %s" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Тег \"%s\" довший за максимальне значення %i" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "є батьківським для %s" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Тег \"%s\" може містити лише числа, літери, а також символи - (дефіс) та _ " +"(підкреслення)." -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "має сестринське відношення з %s" +msgid "Tag \"%s\" must not be uppercase" +msgstr "Тег \"%s\" не може містити літер у верхньому регістрі" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Завантаження..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Імена користувачів мають бути рядками" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "Для цього ресурсу немає доступних для завантаження даних API" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Цей логін уже використовується." -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "Не вдалося завантажити інформацію про дані API" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Будь ласка, введіть обидва паролі" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Збігів не знайдено" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Паролі мають бути рядками" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Друкуйте..." +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Ваш пароль має мати не менше 4 символів" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Ввід надто короткий, має бути хоча би один символ" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Введені паролі не збігаються" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Ця форма містить незбережені зміни" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Редагування не дозволено, оскільки текст схожий на спам. Будь ласка, " +"уникайте посилань у описі." -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Підтвердіть операцію" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Ім'я має мати не менше %s символів" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "Ви впевнені, що хочете виконати цю операцію?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Ця назва словника уже використовується." -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Підтвердити" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Неможливо змінити значення ключа з %s на %s. Цей ключ доступний лише для " +"читання" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Скасувати" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Тег словника не знайдено" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Стежити" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Тег %s не належить словнику %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Не стежити" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Немає назви тегу" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Вивантажити" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Тег %s уже існує в словнику %s" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Посилання" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Вкажіть дійсний URL" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Видалити" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "роль не існує" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Зображення" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "Набори даних, що не належать організації, не можуть бути приватними." -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "URL" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Не список" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Файл" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Не рядок" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "Вкласти файл з комп’ютера" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "Цей батьківський елемент може створити петлю в ієрархії" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "Додати посилання на адресу в інтернеті (або посилання на API)" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" +"параметри \"filter_fields\" та \"filter_values\" повинні бути однакової " +"довжини" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Змінити порядок ресурсів" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "параметр \"filter_fields\" необхідний, якщо \"filter_values\" заповнений" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Зберегти порядок" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "параметр \"filter_values\" необхідний, якщо \"filter_fields\" заповнений" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Збереження..." +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "Вже існує поле схеми з таким же ім’ям" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Вкласти файл" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "Електрона пошта {email} має некоректний формат" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Виникла помилка" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Створити об'єкт %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Ресурс вивантажено" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Зв'язати пакети: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Не вдалось вивантажити файл" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Створення об'єкту %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Не вдалося завантажити" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Ви пробували створити організацію як групу" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Не вдалось отримати дані з вивантаженого файла" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Введіть ідентифікатор пакету або його ім'я (параметр \"пакет\")." -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" -"Ви вкладаєте файл. Ви впевнені, що хочете перейти на іншу сторінку і " -"припинити вкладення?" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Задайте рейтинг (параметр \"рейтинг\")." -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "Змінити порядок представлення ресурсу" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Значення рейтингу має бути цілим числом." -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Редагувати" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Значення рейтингу має бути між %i та %i." -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Показати більше" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Помилка під час надсилання листа-запрошення, користувача не було створено: " +"{0}" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Сховати" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "Увійдіть, щоб мати можливість стежити за користувачами" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "Помилка %(error_code)s" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Ви не можете стежити за собою" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "Про {0}" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Ви уже стежите за {0}" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "Увійдіть, щоб мати можливість стежити за набором даних" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Користувача {username} не існує." -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Створено за допомогою CKAN" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Увійдіть, щоб мати можливість стежити за групою" -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Налаштування системного адміністратора" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "Видалити користувача: {0}" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Переглянути профіль" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Видалити пакет: %s" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 #, 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 нових елементів)" +msgid "REST API: Delete %s" +msgstr "REST API: Видалити %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Панель приладів" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Видалити учасника: %s" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Змінити налаштування" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "id немає в даних" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "Налаштування" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Не вдалося знайти словник \"%s\"" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Вийти" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Не вдалося знайти тег \"%s\"" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Увійти" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "Увійдіть, щоб мати можливість відписатись від чогось." -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Зареєструватись" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Ви не стежите за {0}." -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Набори даних" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Ресурс не знайдено." -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Пошук по наборах даних" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "Не вказуйте, якщо вже використовуєте параметр запиту" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Пошук" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Мають бути пара (пари) :" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Перейти до вмісту" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Поле \"{field}\" не кваліфікується в resource_search." -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Завантажити менше" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Пакет не знайдено." -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Завантажити більше" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: Оновити об'єкт %s" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "Ця стрічка активності не має записів" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Обновити зв'язок пакетів: %s %s %s" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "Адміністрація" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "TaskStatus не знайдено." -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Сисадміни" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Організацію не знайдено." -#: ckan/templates/admin/base.html:9 -msgid "Config" -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/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Кошик" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Користувач %s не має достатньо прав для редагування цих груп" -#: ckan/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "Ви впевнені, що хочете скинути налаштування?" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Користувач %s не має достатньо прав для додавання набору даних до цієї " +"організації" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Скинути" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Не надано id ресурсу, неможливо підтвердити достовірність." -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Оновити налаштування" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Не знайдено пакетів для цього ресурсу. Неможливо підтвердити достовірність." -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "Опції налаштувань CKAN" - -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:76 #, 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.

" +msgid "User %s not authorized to create resources on dataset %s" msgstr "" -"

Назва сайту: Це назва цього примірника CKAN.

Стиль: Виберіть зі списку простих варіацій головної кольорової схеми, щоб швидко отримати працюючу тему.

Логотип сайту: Це логотип, що відображається у заголовку усіх шаблонів примірника CKAN.

Про нас: Цей текст буде відображатись на сторінці з інформацією про сайт цього примірника CKAN.

Вступний текст: \n" -"Цей текст буде відображатись на головній сторінці цього примірника CKAN як привітання для відвідувачів.

Користувацький CSS: Це блок CSS, що з’явиться у <head> тегу кожної сторінки. Якщо ви хочете змінити шаблон більше, ми рекомендуємо читати документацію.

Головна сторінка: Тут можна вибрати наперед визначене розташування модулів, що будуть відображатись на головній сторінці.

" +"Користувач %s не має достатньо прав для створення ресурсів у наборі даних %s" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "Скинути пароль" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Користувач %s не має достатньо прав для редагування цих пакетів" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "Адмініструвати CKAN" +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Користувач %s не має достатньо прав для створення груп" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:129 #, 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

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

Як користувач з правами системного адміністратора ви маєте повний контроль над цим примірником CKAN. \n" -"Працюйте обережно!

Для детальніших пояснень роботи з функціональністю CKAN, дивіться документацію для сисадмінів.

" +"Користувач {user} не має достатньо прав для створення користувачів через API" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "Чистка" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Не має достатньо прав для створення користувачів" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "

Чистка видаляє всі набори даних назавжди і безповоротно.

" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Групу не знайдено" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN Data API" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Для створення пакету необхідний дійсний ключ API" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "Доступ до даних ресурсу через веб API із потужною підтримкою запитів" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Для створення групи необхідний дійсний ключ API" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" -"Більше інформаціі в головні документації по CKAN Data API та " -"DataStore.

" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Користувач %s не має достатньо прав для додавання учасників" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Точки входу" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Користувач %s не має достатньо прав для редагування групи %s" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"Доступ до API даних можна отримати через такі дії за допомогою API дій CKAN." +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Користувач %s не має достатньо прав для видалення ресурсу %s" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Створити" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "" +"Представлення ресурсу не знайдено, неможливо підтвердити достовірність." -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Оновити / Вставити" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Користувач %s не має достатньо прав для видалення зв'язку %s" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Запит" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Користувач %s не має достатньо прав для видалення груп" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Запит (через SQL)" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Користувач %s не має достатньо прав для видалення групи %s" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Запит" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Користувач %s не має достатньо прав для видалення організацій" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Приклад запиту (перші 5 результатів)" +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Користувач %s не має достатньо прав для видалення організації %s" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Приклад запиту (результати, що містять 'jones')" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Користувач %s не має достатньо прав для видалення task_status" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Приклад запиту (за допомогою SQL)" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Не авторизований" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Приклад: Javascript" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Користувач %s не має достатньо прав для читання цих пакетів" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "Простий ajax (JSONP) запрос до API даних з використанням jQuery." +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Користувач %s не має достатньо прав для читання пакету %s" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Приклад: Python" +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Користувач %s не має достатньо прав для читання ресурсу %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "На даний момент попередній перегляд недоступний для цього ресурсу." +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Користувач %s не має достатньо прав для читання групи %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Клікніть тут, щоб отримати детальнішу інформацію. " +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "Увійдіть, щоб отримати доступ до панелі управління." -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Завантажити ресурс" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Користувач %s не має достатньо прав для редагування пакету %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Ваш браузер не підтримує фрейми." +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Користувач %s не має достатньо прав для редагування ресурсу %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Попередній перегляд недоступний." +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Користувач %s не має достатньо прав для зміни статусу пакета %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Детальніше..." +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Користувач %s не має достатньо прав для редагування організації %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:145 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "Немає обробника для цього типу даних: %(type)s." +msgid "User %s not authorized to change state of group %s" +msgstr "Користувач %s не має достатньо прав для зміни статусу групи %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "Стандарт" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Користувач %s не має достатньо прав для редагування дозволів групи %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Стандартний ввід" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "Ви повинні бути авторизовані для редагування користувача" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Середній" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Користувач %s не має достатньо прав для редагування користувача %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Середня ширина вводу" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "Користувач {0} не має достатньо прав для оновлення користувача {1}" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Повний" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Користувач %s не має достатньо прав для зміни статусу версії" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Повна ширина вводу" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" +"Користувач %s не має достатньо прав для оновлення таблиці task_status " -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Великий" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"Користувач %s не має достатньо прав для оновлення таблиці term_translation" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Великий ввід" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Для редагування пакету необхідний дійсний ключ API" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Додати префікс" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Для редагування групи необхідний дійсний ключ API" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Додати ввід як префікс " +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Ліцензію не вказано" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Довільне поле (порожнє)" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Довільне поле" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Зниження" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Textarea" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Select" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Стрічка активності" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: 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/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "Додати групу" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Інші (Open)" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Форма групи" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Інші (Public Domain)" -#: 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/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Інші (Attribution)" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "Ви впевнені, що хочете видалити групу - {name}?" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: 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/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Управління" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Інші (Non-Commercial)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Редагувати групу" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Інші (Not Open)" -#: 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/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "залежить від %s" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Підписники" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "залежно від %s" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Історія" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "походить від %s" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Додати групу" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "є похідним від %s" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Пошук груп..." +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "посилається на %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Назва (по зростанню)" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "зв'язаний посиланням від %s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Назва (по спаданню)" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "є дочірнім від %s" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "На даний момент немає груп для цього сайту" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "є батьківським для %s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "Не хочете створити?" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "має сестринське відношення з %s" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "Повернутись до всіх учасників" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "Для цього ресурсу немає доступних для завантаження даних API" -#: 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/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "Не вдалося завантажити інформацію про дані API" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Додати учасника" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Друкуйте..." -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Існуючий користувач" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Збігів не знайдено" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"Якщо ви хочете додати існуючого користувача, знайдіть його ім’я внизу." +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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 символ" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "або" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Ця форма містить незбережені зміни" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Новий користувач" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Підтвердіть операцію" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"Якщо ви хочете запровити нового користувача, введіть їхню адресу електронної" -" пошти тут." +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "Ви впевнені, що хочете виконати цю операцію?" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Роль" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Підтвердити" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Ви впевнені, що хочете видалити цього учасника?" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Видалити" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Не стежити" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "Зберегти" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Стежити" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Що таке роль?" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Посилання" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

Адміністратор: Може редагувати інформацію про групи, а " -"також управляти членами організації.

Член: Може " -"додавати/видаляти набори даних з груп.

" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Додати посилання на адресу в інтернеті (або посилання на API)" -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" -msgstr "Створити групу" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Вивантажити" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "Оновити групу" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Видалити" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "Створити групу" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "Вкласти файл з комп’ютера" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Актуальність" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "URL" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Last Modified" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Файл" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Популярне" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Зберегти порядок" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "Пошук по наборах даних..." +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Збереження..." -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Набори даних у групі: {group}" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Вкласти файл" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Остання історія змін" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Виникла помилка" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Назва" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Не вдалось вивантажити файл" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Моя група" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Не вдалося завантажити" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "моя-група" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Ресурс вивантажено" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Опис" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Не вдалось отримати дані з вивантаженого файла" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "Коротко про мою групу..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Ви вкладаєте файл. Ви впевнені, що хочете перейти на іншу сторінку і " +"припинити вкладення?" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "Ви впевнені, що хочете видалити цю групу?" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Додати фільтр" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Зберегти групу" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "Оберіть поле" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} набір даних" -msgstr[1] "{num} набори даних" -msgstr[2] "{num} наборів даних" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Редагувати" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 наборів даних" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Показати більше" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "Переглянути {name}" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Сховати" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "Видалити набір даних з цієї групи" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Помилка %(error_code)s" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Що таке група?" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Про {0}" -#: ckan/templates/group/snippets/helper.html:8 +#: 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 "" -" 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. " +"Powered by CKAN" msgstr "" -"Ви можете використовувати групи CKAN для створення та управління наборами " -"даних. Використовуйте їх для каталогізування наборів даних для конкретного " -"проекту чи команди, на певну тему або як найпростіший спосіб допомогти людям" -" шукати та знаходити ваші власні опубліковані набори даних." +"Створено за допомогою CKAN" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "Порівняти" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Налаштування системного адміністратора" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Видалено" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "Переглянути профіль" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "детальніше" +#: ckan/templates/header.html:26 +#, 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 нових елементів)" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Версія" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Панель приладів" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Час" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Змінити налаштування" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Автор" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Налаштування" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Повідомлення журналу" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Вийти" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Ласкаво просимо до" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +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/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Зареєструватись" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Вітаємо у CKAN" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Набори даних" -#: ckan/templates/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/header.html:116 +msgid "Search Datasets" +msgstr "Пошук по наборах даних" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Це вибраний розділ" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Пошук" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "Наприклад, довкілля" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Перейти до вмісту" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "Пошук даних" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Завантажити менше" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Популярні теги" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Завантажити більше" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} статистика" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Ця стрічка активності не має записів" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "набір даних" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Адміністрація" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "набори даних" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Сисадміни" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "організації" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Налаштування" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "групи" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Кошик" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Ви впевнені, що хочете скинути налаштування?" + +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Скинути" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Оновити налаштування" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "Опції налаштувань CKAN" + +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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 "" -"Тут ви можете використовувати Markdown форматування " +"

Назва сайту: Це назва цього примірника CKAN.

Стиль: Виберіть зі списку простих варіацій головної кольорової схеми, щоб швидко отримати працюючу тему.

Логотип сайту: Це логотип, що відображається у заголовку усіх шаблонів примірника CKAN.

Про нас: Цей текст буде відображатись на сторінці з інформацією про сайт цього примірника CKAN.

Вступний текст: \n" +"Цей текст буде відображатись на головній сторінці цього примірника CKAN як привітання для відвідувачів.

Користувацький CSS: Це блок CSS, що з’явиться у <head> тегу кожної сторінки. Якщо ви хочете змінити шаблон більше, ми рекомендуємо читати документацію.

Головна сторінка: Тут можна вибрати наперед визначене розташування модулів, що будуть відображатись на головній сторінці.

" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Це поле обов’язкове" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Скинути пароль" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Звичайний" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Адмініструвати CKAN" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -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. \n" +"Працюйте обережно!

Для детальніших пояснень роботи з функціональністю CKAN, дивіться документацію для сисадмінів.

" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Обов’язкове поле" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "Чистка" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "

Чистка видаляє всі набори даних назавжди і безповоротно.

" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "URL зображення" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "На даний момент попередній перегляд недоступний для цього ресурсу." -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Очистити вкладення" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Клікніть тут, щоб отримати детальнішу інформацію. " -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Форма організації" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Завантажити ресурс" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "Редагувати набори даних" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Попередній перегляд недоступний." -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Додати набори даних" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Детальніше..." -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "знайдено для \"{query}\"" +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Немає обробника для цього типу даних: %(type)s." -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "Вибачте, не знайдено жодного набору даних за запитом \"{query}\"" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Стандарт" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Зробити публічним" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Стандартний ввід" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Зробити приватним" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Середній" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Чернетка" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Середня ширина вводу" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Приватний" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Повний" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "Ця організація не має наборів даних" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Повна ширина вводу" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "Ви впевнені, що хочете видалити організацію - {name}?" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +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/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Великий ввід" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Додати префікс" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Додати ввід як префікс " + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Довільне поле (порожнє)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Довільне поле" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Зниження" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "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:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Стрічка активності" + +#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 +#: ckan/templates/organization/admins.html:3 +#: ckan/templates/organization/admins.html:6 +msgid "Administrators" +msgstr "Адміністратори" + +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "Додати групу" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Форма групи" + +#: ckan/templates/group/confirm_delete.html:3 +#: ckan/templates/group/confirm_delete.html:15 +#: ckan/templates/group/confirm_delete_member.html:3 +#: ckan/templates/group/confirm_delete_member.html:16 +#: ckan/templates/organization/confirm_delete.html:3 +#: ckan/templates/organization/confirm_delete.html:15 +#: ckan/templates/organization/confirm_delete_member.html:3 +#: ckan/templates/organization/confirm_delete_member.html:16 +#: ckan/templates/package/confirm_delete.html:3 +#: ckan/templates/package/confirm_delete.html:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Підтвердіть видалення" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Додати організацію" +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Ви впевнені, що хочете видалити групу - {name}?" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -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 "Ви впевнені, що хочете видалити учасника - {name}?" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "На даний момент немає організацій для цього сайту" +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "Управління" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Ім'я користувача" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Редагувати групу" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "Email адреса" +#: ckan/templates/group/edit_base.html:23 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" +msgstr "Учасники" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "Оновити члена" +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Історія" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

Адміністратор: Може додавати/редагувати та видаляти " -"набори даних, а також управляти членами організації.

" -"

Редактор: Може додавати та редагувати набори даних, але " -"не може управляти членами організації.

Член: Може " -"переглядати приватні набори даних організації, але не може додавати " -"нові.

" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Додати групу" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Створити організацію" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Пошук груп..." -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Оновити організацію" +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "На даний момент немає груп для цього сайту" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Створити організацію" +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Не хочете створити?" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Додати набір даних" +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Повернутись до всіх учасників" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "Набори даних в організації: {group}" +#: 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/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "Що таке організація?" +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +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/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +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. " +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"Організації в CKAN використовуються для створення, управління і публікації " -"колекцій наборів даних. Користувачі можуть мати різні ролі в рамках " -"організації, залежно від рівня їх прав на створення, зміну та публікацію." - -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Моя організація" +"Якщо ви хочете додати існуючого користувача, знайдіть його ім’я внизу." -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "моя-організація" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "або" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "Коротко про мою організацію..." +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Новий користувач" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." msgstr "" -"Ви впевнені, що хочете видалити цю Організацію? Це призведе до видалення " -"всіх публічних і приватних наборів даних, що належать до цієї організації." +"Якщо ви хочете запровити нового користувача, введіть їхню адресу електронної" +" пошти тут." -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Зберегти організацію" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Роль" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Переглянути {organization_name}" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Ви впевнені, що хочете видалити цього учасника?" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "Створити набір даних" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Видалити" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Що таке набір даних?" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Що таке роль?" -#: ckan/templates/package/base_form_page.html:25 +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" msgstr "" -"Набір даних CKAN це колекція інформаційних ресурсів (таких як файли), разом " -"з описом та іншою інформацією, що доступні за фіксованою URL-адресою. Набори" -" даних - це те, що користувачі бачать при пошуку даних." - -#: 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:16 -msgid "View dataset" -msgstr "Переглянути набір даних" - -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Редагувати метадані" +"

Адміністратор: Може редагувати інформацію про групи, а " +"також управляти членами організації.

Член: Може " +"додавати/видаляти набори даних з груп.

" -#: ckan/templates/package/edit_view.html:3 -#: ckan/templates/package/edit_view.html:4 -#: ckan/templates/package/edit_view.html:8 -#: ckan/templates/package/edit_view.html:12 -msgid "Edit view" -msgstr "Редагувати представлення" +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Створити групу" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Попередній перегляд" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Оновити групу" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "Оновити" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Створити групу" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "Пов’язати цю групу з цим набором даних" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Пошук по наборах даних..." -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Додати до групи" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Набори даних у групі: {group}" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "Немає груп пов’язаних з цим набором даних" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Остання історія змін" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Оновити набір даних" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Назва" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "Додати дані до набору даних" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Моя група" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "Додати новий ресурс" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +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/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Коротко про мою групу..." -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Новий ресурс" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +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/group/snippets/group_form.html:63 +msgid "Save Group" +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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Переглянути {name}" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Додати" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Видалити набір даних з цієї групи" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Що таке група?" + +#: ckan/templates/group/snippets/helper.html:8 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +" 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 "" -"Це стара версія набору даних, датована %(timestamp)s. Вона може значно " -"відрізнятись від поточної версії." +"Ви можете використовувати групи CKAN для створення та управління наборами " +"даних. Використовуйте їх для каталогізування наборів даних для конкретного " +"проекту чи команди, на певну тему або як найпростіший спосіб допомогти людям" +" шукати та знаходити ваші власні опубліковані набори даних." -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Вкласти до DataStore" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "Порівняти" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Помилка вкладення" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Видалено" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Помилка:" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "детальніше" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Версія" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Статус" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Час" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Останнє оновлення" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Автор" -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Ніколи" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Повідомлення журналу" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Журнал вкладень" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Ласкаво просимо до" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -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/package/resource_data.html:81 -msgid "End of log" -msgstr "Кінець повідомлення журналу" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Вітаємо у CKAN" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -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 або сайт загалом." -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "Переглянути ресурс" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Це вибраний розділ" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "Редагувати ресурс" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Наприклад, довкілля" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Пошук даних" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -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/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API Endpoint" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "набір даних" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Перейти до ресурсу" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "набори даних" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Завантажити" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "організації" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "URL:" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "групи" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "З опису набори даних" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Логотип сайту" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Джерело: %(dataset)s" +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Тут ви можете використовувати Markdown форматування " -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "Для цього ресурсу поки що немає жодного представлення." +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "Це поле обов’язкове" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "Бачите не ті представлення, які очікували?" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "Звичайний" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "Ось можливі причини, чому ви не бачите очікуваних представлень:" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Форма містить неправильні значення:" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "Немає представлення, яке б підходило цьому ресурсу" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Обов’язкове поле" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "Адміністратори сайту можливо не увімкнули плагіни представлення" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" -"Якщо представлення вимагає DataStore, можливо плагін DataStore не включений," -" або дані не переміщені в DataStore, або DataStore ще не встиг завершити " -"обробку даних." +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "URL зображення" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Додаткова інформація" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Очистити вкладення" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Поле" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Форма організації" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Значення" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Редагувати набори даних" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "невідомо" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Додати набори даних" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Створено" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "знайдено для \"{query}\"" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Формат" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Вибачте, не знайдено жодного набору даних за запитом \"{query}\"" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Ліцензія" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Зробити публічним" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "Нове представлення" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Зробити приватним" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "Цей ресурс немає представлень" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Чернетка" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Додати новий ресурс" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Приватний" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

Цей набір даних пустий, чому б не " -"додати даних?

" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "Ця організація не має наборів даних" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Ви впевнені, що хочете видалити організацію - {name}?" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "Документація API" +#: 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/package/search.html:55 -msgid "full {format} dump" -msgstr "повний {format} дамп" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +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 "" -" Ви також можете отримати доступ до цього реєстру через %(api_link)s (see " -"%(api_doc_link)s) або завантажити %(dump_link)s. " +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +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 "" -" Ви можете отримати доступ до цього реєстру через %(api_link)s (see " -"%(api_doc_link)s). " +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "На даний момент немає організацій для цього сайту" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "Всі представлення" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Ім'я користувача" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "Переглянути представлення" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email адреса" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "Переглянути попередній перегляд" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Оновити члена" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "Додаткова інформація" +#: ckan/templates/organization/member_new.html:81 +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/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "Джерело" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} член" +msgstr[1] "{count} члена" +msgstr[2] "{count} членів" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Створити організацію" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "Версія" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Оновити організацію" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Стан" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Створити організацію" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "Останнє оновлення" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Додати набір даних" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." -msgstr "" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "Набори даних в організації: {group}" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Що таке організація?" -#: ckan/templates/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "API даних" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Моя організація" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "Заголовок" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "моя-організація" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "наприклад Вичерпний заголовок" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Коротко про мою організацію..." -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "наприклад мій-набір-даних" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "" +"Ви впевнені, що хочете видалити цю Організацію? Це призведе до видалення " +"всіх публічних і приватних наборів даних, що належать до цієї організації." -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "Деякі корисні замітки про дані" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Зберегти організацію" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -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/snippets/package_basic_fields.html:41 +#: ckan/templates/package/base.html:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"Визначення ліцензії та додаткова інформація може бути знайдена на opendefinition.org" +"Набір даних CKAN це колекція інформаційних ресурсів (таких як файли), разом " +"з описом та іншою інформацією, що доступні за фіксованою URL-адресою. Набори" +" даних - це те, що користувачі бачать при пошуку даних." -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Організація" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Ви впевнені, що хочете видалити набір даних - {name}?" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Немає організації" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Ви впевнені, що хочете видалити ресурс - {name}?" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Видимість" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "Переглянути набір даних" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Загальнодоступний" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Редагувати метадані" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Попередній перегляд" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "Ви впевнені, що хочете видалити цей набір даних" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Оновити" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Далі: Додати дані" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +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/group_list.html:14 +msgid "Add to group" +msgstr "Додати до групи" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +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 "Joe Bloggs" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Оновити набір даних" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "E-mail автора" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Додати новий ресурс" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Супровідний Email" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update 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:81 +msgid "Add" +msgstr "Додати" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Це стара версія набору даних, датована %(timestamp)s. Вона може значно " +"відрізнятись від поточної версії." -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Усі ресурси" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "наприклад January 2011 Gold Prices" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Переглянути ресурс" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Корисні нотатки про дані" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Редагувати ресурс" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "наприклад CSV, XML або JSON" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Представлення" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "Це буде додано автоматично, можете залишити пустим" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API Endpoint" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "наприклад 2012-06-05" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Перейти до ресурсу" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Розмір файлу" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Завантажити" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "наприклад 1024" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "URL:" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME тип" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "З опису набори даних" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "наприклад application/json" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Джерело: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "Ви впевнені, що хочете видалити цей ресурс?" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "Для цього ресурсу поки що немає жодного представлення." -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Попередній" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "Бачите не ті представлення, які очікували?" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Зберегти і додати ще один" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Ось можливі причини, чому ви не бачите очікуваних представлень:" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Завершити" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" +msgstr "Немає представлення, яке б підходило цьому ресурсу" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Що таке ресурс?" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "Адміністратори сайту можливо не увімкнули плагіни представлення" -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Дослідити" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Додаткова інформація" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "Детальніша інформація" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Поле" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Вставити" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Значення" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "Це представлення ресурсу недоступне на даний момент." +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "Останнє оновлення даних" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "Приєднати представлення ресурсу" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "невідомо" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" -"Ви можете скопіювати і вставити embed код в CMS або програмне забезпечення " -"для блогу, що підтримує чистий HTML" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "Останнє оновлення метаданих" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "Ширина" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Створено" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "Висота" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Формат" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Код" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Ліцензія" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "Попередній перегляд ресурсу" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Нове представлення" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Дані та ресурси" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "Цей ресурс немає представлень" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "Цей набір даних пустий" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Додати новий ресурс" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format -msgid "Read dataset as of %s" -msgstr "Читати набір даних як %s" +msgid "" +"

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

" +msgstr "" +"

Цей набір даних пустий, чому б не " +"додати даних?

" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "Створити набір даних" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" -#: 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/search.html:53 +msgid "API Docs" +msgstr "Документація API" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "наприклад, Моє представлення" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "повний {format} дамп" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -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 "" +" Ви також можете отримати доступ до цього реєстру через %(api_link)s (see " +"%(api_doc_link)s) або завантажити %(dump_link)s. " -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -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 "" +" Ви можете отримати доступ до цього реєстру через %(api_link)s (see " +"%(api_doc_link)s). " -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "Видалити фільтр" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Всі представлення" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "Фільтри" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Переглянути представлення" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "Що таке представлення?" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +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/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Додаткова інформація" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Відмінності" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Джерело" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Історія відмінностей" +#: ckan/templates/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/revision/diff.html:44 -msgid "Difference" -msgstr "Різниця" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Версія" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Відмінностей немає" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Стан" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Історія змін" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Останнє оновлення" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -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/revision/read.html:30 -msgid "Undelete" -msgstr "Відмінити видалення" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Створити нову організацію" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -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/revision/read.html:74 -msgid "Datasets' Tags" -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/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Сутність" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Заголовок" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Новий запис активності" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "наприклад Вичерпний заголовок" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Код візуалізації даних" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "наприклад мій-набір-даних" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Приєднайте це представлення, скопіювавши це у свою сторінку:" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "Деякі корисні замітки про дані" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Виберіть ширину і висоту в пікселях:" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "наприклад економіка, психічне здоров'я, уряд" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Ширина:" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Визначення ліцензії та додаткова інформація може бути знайдена на opendefinition.org" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Висота:" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Організація" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Статус Datapusher: {status}." +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Немає організації" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Трекбек URL (зворотні посилання)" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Видимість" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Показати більше {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Загальнодоступний" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Показати лише популярні {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Активний" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "Немає {facet_type}, які б підходили пошуковому запиту" +#: 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/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Головна" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Ви впевнені, що хочете видалити цей набір даних" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Мова" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Далі: Додати дані" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Перейти" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "Не вказано ліцензію" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Цей набір даних відповідає вимогам Open Definition." +#: 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/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Ця організація не має опису" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "E-mail автора" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -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/snippets/search_form.html:17 -msgid "Submit" -msgstr "Підтвердити" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Супровідний Email" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Впорядкувати по " +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Оновити ресурс" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Фільтрувати результати" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "Дані" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Попробуйте пошукати ще.

" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "наприклад January 2011 Gold Prices" -#: 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}\"" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Корисні нотатки про дані" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "Не було знайдено жодного набору даних для \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "наприклад CSV, XML або JSON" -#: 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} наборів даних знайдено" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Це буде додано автоматично, можете залишити пустим" + +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "наприклад 2012-06-05" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "Не було знайдено жодного набору даних " +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +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}\"" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "наприклад 1024" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "Не було знайдено жодної групи для \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME тип" -#: 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} груп знайдено" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "наприклад application/json" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Не було знайдено жодної групи" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +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}\"" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Попередній" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "Не було знайдено жодної організації для \"{query}\"" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Зберегти і додати ще один" -#: 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} організацій знайдено" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Завершити" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Не було знайдено жодної організації" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Що таке ресурс?" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -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/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Підписатися" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +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:82 -msgid "Email" -msgstr "Email" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Детальніша інформація" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Вставити" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Редагування" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "Це представлення ресурсу недоступне на даний момент." -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "Пошук тегів" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "Приєднати представлення ресурсу" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Стрічка новин" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Ви можете скопіювати і вставити embed код в CMS або програмне забезпечення " +"для блогу, що підтримує чистий HTML" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "Мої набори даних" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "Ширина" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "Мої Організації" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "Висота" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "Мої Групи" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Код" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "Активність елементів, на які я підписаний(а)" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Попередній перегляд ресурсу" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Ви ще не створювали жодного набору даних." +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Дані та ресурси" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Створити один зараз?" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "Цей набір даних пустий" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "Ви не є членом жодної групи." +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Читати набір даних як %s" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "Ви не є членом жодної організації." +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +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/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/user/edit.html:17 -msgid "Account Info" -msgstr "Інформація про акаунт" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +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/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "наприклад, Інформація про моє представлення" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "Деталі змін" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Видалити фільтр" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Повне ім'я" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Що таке представлення?" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "наприклад Joe Bloggs" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "Представлення це відображення даних ресурсу" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "наприклад joe@example.com" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Відмінності" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Коротко про себе" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Історія відмінностей" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Отримувати сповіщення на електронну пошту" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Різниця" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Змінити пароль" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Відмінностей немає" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Історія змін" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Пароль" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Версії" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Підтвердіть пароль" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "Відмінити видалення" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "Ви впевнені, що хочете видалити цього користувача?" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "Зміни" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "Ви впевнені, що хочете згенерувати новий ключ API?" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Теги наборів даних" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "Перегенерувати ключ API" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Сутність" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Оновити профіль" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Новий запис активності" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "Всі користувачі" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +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/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Приєднайте це представлення, скопіювавши це у свою сторінку:" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Потрібен акаунт?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Виберіть ширину і висоту в пікселях:" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "Тоді зареєструйтесь прямо зараз – це займе всього хвилину." +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Ширина:" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Створити акаунт" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Висота:" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Забули свій пароль?" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Статус Datapusher: {status}." -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" -"Жодної проблеми. Скористайтеся відновленням пароля для його поновлення. " +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Трекбек URL (зворотні посилання)" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Забули свій пароль?" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Показати більше {facet_type}" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Вийшов" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Показати лише популярні {facet_type}" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Ви вийшли з системи." +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "Немає {facet_type}, які б підходили пошуковому запиту" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "Ви увійшли в систему як {user}." +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Головна" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Вийти" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Мова" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Запам'ятати мене" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Перейти" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Ви уже увійшли в систему" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Не вказано ліцензію" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "Вам потрібно вийти з системи, щоб увійти через інший акаунт." +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Цей набір даних відповідає вимогам Open Definition." -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "Вийти зараз" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Ця організація не має опису" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Реєстрація" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Цей набір даних не має опису" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Зареєструвати акаунт" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Підтвердити" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Навіщо реєструватись?" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Впорядкувати по " -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Фільтрувати результати" + +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Попробуйте пошукати ще.

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

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

" msgstr "" -"Щоб мати можливість створювати набори даних, групи та робити інші захоплюючі" -" речі" +"

Виникла помилка під час " +"пошуку.Спробуйте ще раз.

" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -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}\"" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Повне ім'я" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Не було знайдено жодного набору даних для \"{query}\"" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Створити акаунт" +#: 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} наборів даних знайдено" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Скинути пароль" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Не було знайдено жодного набору даних " -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -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}\"" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Оновити пароль" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Не було знайдено жодної групи для \"{query}\"" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Як це працює?" +#: 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} груп знайдено" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "Просто введіть новий пароль і ми оновимо Ваш акаунт" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Не було знайдено жодної групи" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -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}\"" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Ви не вказали свою біографію." +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Не було знайдено жодної організації для \"{query}\"" -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Цей користувач не вказував свою біографію." +#: 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} організацій знайдено" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Не було знайдено жодної організації" -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Це означає, що тільки ви можете це бачити" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Соціальні мережі" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "Учасник починаючи з " +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Підписатися" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "Ключ API" +#: 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:82 +msgid "Email" +msgstr "Email" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "Відновити Ваш пароль." +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "Скидання пароля" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Редагування" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "Подати запит на скидання" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Пошук тегів" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Введіть ім'я користувача в поле і ми надішлемо вам лист з посиланням для " -"введення нового пароля." +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Стрічка новин" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Активність від:" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Мої набори даних" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Пошуковий список..." +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Мої Організації" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "Ви ні на що не підписані" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Мої Групи" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Підписників немає" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Активність елементів, на які я підписаний(а)" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Шукати користувача" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Ви ще не створювали жодного набору даних." -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -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:16 +msgid "Create one now?" +msgstr "Створити один зараз?" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Обробка" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Ви не є членом жодної групи." -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Підтведження" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Ви не є членом жодної організації." -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -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 "Користувачі" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Ресурс DataStore не знайдено" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Інформація про акаунт" -#: ckanext/datastore/db.py:663 +#: ckan/templates/user/edit.html:19 msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." +" Your profile lets other CKAN users know about who you are and what you do. " msgstr "" -"Дані були недійсними (наприклад, числове значення завелике або вставлене у " -"текстове поле)" - -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -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/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 дізнатись про те, хто ви і чим " +"займаєтесь." -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "Користувацьке поле (по зростанню)" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Деталі змін" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "Користувацьке поле (по спаданню)" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +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 "Довільний текст" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "наприклад Joe Bloggs" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "довільний текст" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "наприклад joe@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Код країни" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Коротко про себе" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "користувацький текст ресурсу" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Отримувати сповіщення на електронну пошту" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Змінити пароль" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Ця група не має опису" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "Пароль системного адміністратора" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" -"Інструмент CKAN для попереднього перегляду є потужним і багатофункціональним" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Пароль" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "URL-адреса зображення" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +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 (якщо пусто, використовується адреса" -" ресурсу)" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "Ви впевнені, що хочете видалити цього користувача?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "Провідник даних" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Ви впевнені, що хочете згенерувати новий ключ API?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "Таблиця" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "Перегенерувати ключ API" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "Графік" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Оновити профіль" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "Карта" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Всі користувачі" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -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 "Увійти" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "Зміщення ряду" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Потрібен акаунт?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "наприклад, 0" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Тоді зареєструйтесь прямо зараз – це займе всього хвилину." -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "Кількість рядів" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Створити акаунт" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "наприклад: 100" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Забули свій пароль?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "Тип графіка" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Жодної проблеми. Скористайтеся відновленням пароля для його поновлення. " -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "Група (Вісь 1)" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Забули свій пароль?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "Серії (Вісь 2)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Вийшов" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "Тип поля" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Ви вийшли з системи." -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "Поле широти" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Ви увійшли в систему як {user}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "Поле довготи" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Вийти" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "Поле GeoJSON" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Запам'ятати мене" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "Автоматичне збільшення до можливостей" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Ви уже увійшли в систему" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "Кластерні маркери" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." +msgstr "Вам потрібно вийти з системи, щоб увійти через інший акаунт." -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Всього наборів даних" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Вийти зараз" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Дата" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Реєстрація" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Всього наборів даних" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Зареєструвати акаунт" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Версії набору даних за тиждень" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Навіщо реєструватись?" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Усі версії набору даних" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "" +"Щоб мати можливість створювати набори даних, групи та робити інші захоплюючі" +" речі" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Нові набори даних" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "ім'я користувача" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Найрейтинговіші набори даних" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Повне ім'я" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Середня оцінка" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Створити акаунт" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Кількість оцінок" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Скинути пароль" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Немає оцінок" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Оновлення пароля" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Найчастіше редаговані набори даних" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Оновити пароль" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Кількість редагувань" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Як це працює?" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Немає редагованих наборів даних" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "Просто введіть новий пароль і ми оновимо Ваш акаунт" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Найбільші групи" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Користувач ще не створював жодного набору даних." -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Кількість наборів даних" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Ви не вказали свою біографію." -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Немає груп" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Цей користувач не вказував свою біографію." -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Найпопулярніші теги" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Назва тегу" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Це означає, що тільки ви можете це бачити" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Кількість наборів даних" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Учасник починаючи з " -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "Ключ API" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Меню статистики" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Відновити Ваш пароль." -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Всього наборів даних" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "Скидання пароля" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "Текст" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "Подати запит на скидання" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Введіть ім'я користувача в поле і ми надішлемо вам лист з посиланням для " +"введення нового пароля." -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "Вебсайт" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "Активність від:" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "Адреса веб сторінки" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +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/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 "Шукати користувача" diff --git a/ckan/i18n/vi/LC_MESSAGES/ckan.mo b/ckan/i18n/vi/LC_MESSAGES/ckan.mo index d25421de00b..bc69eb74b4d 100644 Binary files a/ckan/i18n/vi/LC_MESSAGES/ckan.mo and b/ckan/i18n/vi/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/vi/LC_MESSAGES/ckan.po b/ckan/i18n/vi/LC_MESSAGES/ckan.po index 3d885978e39..3bfc250152a 100644 --- a/ckan/i18n/vi/LC_MESSAGES/ckan.po +++ b/ckan/i18n/vi/LC_MESSAGES/ckan.po @@ -1,4520 +1,4614 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "Không tìm thấy tính năng xác nhận: %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Hoàn thành" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "Quản trị viên" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Đang chờ" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "Biên tập viên" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Đang đăng ký" -#: ckan/authz.py:199 -msgid "Member" -msgstr "Thành viên" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Lỗi" -#: ckan/controllers/admin.py:34 -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ị" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Chưa tải lên được" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "Tiêu đề trang" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "Nguồn không tìm thấy" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "Kiểu trang trí" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "Không được phép truy cập trang này" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "Đặt thẻ đánh dấu dòng" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Tải lên kho dữ liệu" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "Thẻ biểu tượng trang" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Lỗi tải:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Lỗi:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "Thông tin về trang" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "Đoạn văn bản giới thiệu" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Tình trạng" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "Văn bản trên trang chủ" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Cập nhật lần cuối" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "Chỉnh sửa CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Không bao giờ" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "CSS cho phép chỉnh sửa được chèn vào đầu trang" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Nhật ký đăng tải" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "Trang chủ" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Chi tiết" + +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Kết thúc nhật ký" -#: ckan/controllers/admin.py:160 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Kho dữ liệu" + +#: ckanext/datastore/controller.py:46 #, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "Không tìm thấy nguồn kho dữ liệu" + +#: ckanext/datastore/backend/postgres.py:1052 msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." 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" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "Tài nguyên \"{0}\" không tìm thấy." -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "Xóa thành công" +#: ckanext/datastore/logic/auth.py:19 +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}" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "Hoạt động chưa hoàn thành" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "Giao diện người sử dụng dữ liệu CKAN " -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "Không được phép truy cập trang này" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +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." -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "Không được phép truy cập" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "Không tìm thấy" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "Điểm kết thúc" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "Yêu cầu bị lỗi" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "Tên hành động không biết: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "Tạo" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "Lỗi JSON: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "Cậ nhật/Chèn" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "Dữ liệu yêu cầu tồi: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "Truy vấn" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "Không thể liệt kê được loại đối tượng này: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "Truy vấn (thông qua ngôn ngữ truy vấn mang tính cấu trúc)" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "Không thể đọc được loại đối tượng này: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "Đang hỏi" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "Không thể tạo mới đối tượng loại này: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "Ví dụ câu hỏi (5 kết quả đầu tiên)" -#: ckan/controllers/api.py:398 -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" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "Ví dụ câu hỏi (kết quả có chứa \"jones\")" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "Không thể cập nhật được loại đối tượng này: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "Ví dụ câu hỏi (bằng xác nhận SQL)" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "Không thể cập nhật mục lục tìm kiếm" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "Ví dụ: Javascript" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "Không thể xóa được loại đối tượng này: %s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +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" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "Không xác định được sửa đổi" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "Ví dụ: Con trăn" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "Không có sửa đổi với id: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "Mất giới hạn tìm kiếm ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "Không thể đọc thông số: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "Mô tả" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "Lựa chọn tìm kiếm lỗi: %s" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "Lưu" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "Đăng ký không xác định: %s" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "Giá trị qjson biến dạng: %r" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "Đòi hỏi các thông số phải dưới dạng một định nghĩa được mã hóa json" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "Không tìm thấy nhóm" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Đang tải" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "Không tìm thấy tổ chức" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "Dữ liệu API" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "Loại nhóm không đúng" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "Tổ chức" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Nhóm" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "Từ khóa" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "Định dạng" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "Giấy phép" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" -#: ckan/controllers/group.py:448 -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/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "Sự liên quan" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "Không được phép tạo nhóm" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, 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/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "Lỗi tích hợp" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Sửa gần đây" -#: ckan/controllers/group.py:600 -#, 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" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "" -#: ckan/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "Không được quyền xóa nhóm %s" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "" -#: ckan/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "Tổ chức bị xóa" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "Ưa chuộng" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "Nhóm bị xóa" +#: 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ữ" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "Tùy chỉnh chữ" -#: ckan/controllers/group.py:704 -#, 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" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Mã quốc gia" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "Không được xóa thành viên %s nhóm" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "Thành viên nhóm bị xóa" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "Chọn hiệu chỉnh trước khi so sánh" +#: 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/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "Lịch sử sửa đổi nhóm CKAN" +#: 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/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "Thay đổi gần đây của nhóm CKAN" +#: 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" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -msgstr "Nhật kí tin nhắn" +#: 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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "Bạn đang theo dõi {0}" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Người theo dõi" -#: ckan/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -msgstr "Bạn đang không theo dõi {0}" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Nguồn" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "Không được phép xem người theo dõi %s" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "Hình ảnh" -#: ckan/controllers/home.py:36 -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" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "" -#: ckan/controllers/home.py:81 -#, 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." +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" -#: ckan/controllers/home.py:83 -#, 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." +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" msgstr "" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Thông số \"{parameter_name}\" không phải là số nguyên" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "Dữ liệu không tìm thấy" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "Định dạng hiệu chỉnh không hợp lệ: %r " +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" msgstr "" -"Rà soát {package_type} các bộ dữ liệu trong {format} định dạng không được " -"hỗ trợ (tệp mẫu {file} không tìm thấy)." -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "Không được phép đọc dữ liệu %s" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "Lịch sử sửa đổi bộ dữ liệu CKAN" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "Những thay đổi gần đây của bộ dữ liệu CKAN" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "Không cấp phép tạo dữ liệu" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "Không cấp phép hiệu chỉnh nguồn này" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "Nguồn không tìm thấy" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "Không cấp phép cập nhật dữ liệu" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "Dữ liệu {id} không tìm thấy" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "" -#: ckan/controllers/package.py:660 -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" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "Lỗi" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "Không được phép tạo mới tài liệu" - -#: ckan/controllers/package.py:727 -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:941 -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:989 -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:1026 -msgid "Dataset has been deleted." -msgstr "Dữ liệu đã được xóa." - -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Không được phép xóa dữ liệu %s" - -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "Nguồn không tìm thấy" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "Không được phép xóa nguồn %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "Không tìm thấy chức năng đọc dữ liệu" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "Dữ liệu nguồn không tìm thấy" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "Không thể tải về" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "Không được phép đọc bộ dữ liệu %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "Không được phép tìm hiểu nguồn %s" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "Tổng số bộ dữ liệu" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "Không được phép sửa dữ liệu" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "Ngày" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "Không thấy chức năng đọc" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "Toàn bộ bộ dữ liệu" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "Không tìm thấy định dạng đọc" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "Kiểm tra bộ dữ liệu hàng tuần" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "Thông tin về dữ liệu kém " +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "Kiểm tra tất cả bộ dữ liệu" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "Không có chức năng đọc dữ liệu" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "Bộ dữ liệu mới" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "Không được xem trước" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "Bộ dữ liệu được đánh giá cao nhất" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "Lịch sử sửa đổi kho CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "Đánh giá trung bình" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "Thay đổi gần đây của kho CKAN" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "Số lần đánh giá" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "Bộ dữ liệu bị ảnh hưởng: %s\n" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "Không có đánh giá" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "Cập nhật điều chỉnh" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "Bộ dữ liệu được sửa nhiều nhất" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "Khác" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "Dữ liệu" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "Không tìm thấy từ khóa" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "Số lần sửa" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "Người sử dụng không tìm thấy" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "Những bộ dữ liệu không được chỉnh sửa" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "Không cấp phép đăng kí cho người sử dụng" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "Các nhóm lớn nhất" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "Không cấp phép tạo người sử dụng" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "Nhóm" -#: ckan/controllers/user.py:210 -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}\"." +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "Số bộ dữ liệu" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "Người sử dụng không được xác nhận" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "Không có nhóm" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "Không được phép sửa người dùng %s" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "Các nhãn đứng đầu" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "Cập nhật lí lịch" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "Tên nhãn" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "Không được quyền tạo người dùng %s" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "Số bộ dữ liệu" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "Hệ thống kiểm thử lỗi. Đề nghị thử lại." +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:265 -#, 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/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "Người sử dụng" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "Không cấp phép hiệu chỉnh người sử dụng" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "Bảng chọn thống kê" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "Người dùng %s không được phép sửa %s" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "Tổng số bộ dữ liệu" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" msgstr "" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" msgstr "" -#: ckan/controllers/user.py:386 -msgid "incorrect password" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" msgstr "" -#: ckan/controllers/user.py:427 -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" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "Không cấp phép đề nghị cài lại mật khẩu" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Trình duyệt của bạn không hỗ trợ iframes" -#: ckan/controllers/user.py:490 +#: ckan/authz.py:182 #, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" gắn với một số người dùng" +msgid "Authorization function not found: %s" +msgstr "Không tìm thấy tính năng xác nhận: %s" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "Không có người dùng này: %s" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "Quản trị viên" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "Kiểm tra hòm thư email để tái lập mã." +#: ckan/authz.py:198 +msgid "Editor" +msgstr "Biên tập viên" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "Không thể gửi kết nối được tái lập: %s" +#: ckan/authz.py:202 +msgid "Member" +msgstr "Thành viên" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "Không cấp phép cài lại mật khẩu" +#: ckan/controllers/admin.py:34 +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/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "Từ khóa không hợp lệ. Thử lại" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "Tiêu đề trang" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "Mật khẩu của bạn đã được cài đặt lại" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "Kiểu trang trí" -#: ckan/controllers/user.py:562 -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/admin.py:52 +msgid "Site Tag Line" +msgstr "Đặt thẻ đánh dấu dòng" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "Mật khẩu bạn nhập không đúng" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "Thẻ biểu tượng trang" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "Bạn phải nhập mật khẩu" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:636 -msgid "Follow item not found" -msgstr "Không tìm thấy mục tin tiếp theo" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "Thông tin về trang" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0} Không tìm thấy" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "Đoạn văn bản giới thiệu" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "Tất cả" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "Văn bản trên trang chủ" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "Giá trị bị mất" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "Chỉnh sửa CSS" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "Không cho phép chuyển hướng trang " +#: ckan/controllers/admin.py:57 +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/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} đã thêm thẻ {tag} đến tập dữ liệu{dataset}" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "Trang chủ" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} Nhóm đã cập nhật {group}" +#: ckan/controllers/admin.py:161 +#, 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/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor} Tổ chức đã được cập nhật {organization}" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Vấn đề xóa chỉnh sửa %s: %s" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} Dữ liệu đã được cập nhật {dataset}" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "Xóa thành công" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} Thay đổi phần bổ sung {extra} dữ liệu {dataset}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "Hoạt động chưa hoàn thành" -#: ckan/lib/activity_streams.py:75 -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/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "Không được phép truy cập" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} Lí lịch đã được cập nhật" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "Không tìm thấy" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} đã xóa nhóm {group}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "Yêu cầu bị lỗi" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} đã xóa tổ chức {organization}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "Tên hành động không biết: %s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} đã xóa bộ dữ liệu {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "Lỗi JSON: %s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} đã xóa dữ liệu {extra} bổ sung {dataset} " +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "Dữ liệu yêu cầu tồi: %s" -#: ckan/lib/activity_streams.py:93 -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/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "Không thể liệt kê được loại đối tượng này: %s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} đã tạo nhóm {group}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "Không thể đọc được loại đối tượng này: %s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} đã tạo tổ chức {organization}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "Không thể tạo mới đối tượng loại này: %s %s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} đã tạo bộ dữ liệu {dataset}" +#: ckan/controllers/api.py:400 +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/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} đã bổ sung {extra} vào bộ dữ liệu {dataset} " +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "Không thể cập nhật được loại đối tượng này: %s" -#: ckan/lib/activity_streams.py:109 -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/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "Không thể cập nhật mục lục tìm kiếm" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} Đăng nhập" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "Không thể xóa được loại đối tượng này: %s %s" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} đã loại thẻ {tag} khỏi bộ dữ liệu {dataset} " +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "Không xác định được sửa đổi" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} khởi động giám sát {dataset} " +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "Không có sửa đổi với id: %s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} khởi động giám sát {user}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "Mất giới hạn tìm kiếm ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor} khởi động giám sát {group} " +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "Không thể đọc thông số: %r" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "Xem" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "Lựa chọn tìm kiếm lỗi: %s" -#: ckan/lib/email_notifications.py:103 -msgid "{n} new activity from {site_title}" -msgid_plural "{n} new activities from {site_title}" -msgstr[0] "" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "Đăng ký không xác định: %s" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "Tháng 1" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "Giá trị qjson biến dạng: %r" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "Tháng 2" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "Đòi hỏi các thông số phải dưới dạng một định nghĩa được mã hóa json" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "Tháng 3" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "Không tìm thấy nhóm" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "Tháng 4" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "Không tìm thấy tổ chức" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "Tháng 5" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "Loại nhóm không đúng" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "Tháng 6" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "Tổ chức" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "Tháng 7" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "Nhóm" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "Tháng 8" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "Từ khóa" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "Tháng 9" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "Định dạng" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "Tháng 10" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "Giấy phép" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "Tháng 11" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, 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/lib/formatters.py:63 -msgid "December" -msgstr "Tháng 12" +#: ckan/controllers/group.py:442 +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/lib/formatters.py:116 -msgid "Just now" -msgstr "Ngay bây giờ" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "Không được phép tạo nhóm" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} Vài phút trước" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "Lỗi tích hợp" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} Vài giờ trước" +#: ckan/controllers/group.py:594 +#, 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/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} Vài ngày trước" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Không được quyền xóa nhóm %s" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} Vài tháng trước" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "Tổ chức bị xóa" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "Hơn {years} vài năm trước" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "Nhóm bị xóa" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." msgstr "" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" - -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:705 +#, 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/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Không được xóa thành viên %s nhóm" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "Thành viên nhóm bị xóa" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "Chọn hiệu chỉnh trước khi so sánh" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "Lịch sử sửa đổi nhóm CKAN" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "Thay đổi gần đây của nhóm CKAN" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "Nhật kí tin nhắn" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "Bạn đang theo dõi {0}" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "Bạn đang không theo dõi {0}" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Không được phép xem người theo dõi %s" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: 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/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/home.py:73 +#, 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/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/home.py:75 +#, 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/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "Cập nhật ảnh đại diện của bạn trên gravatar.com" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "Không biết" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Thông số \"{parameter_name}\" không phải là số nguyên" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "Nguồn không tên" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "Dữ liệu không tìm thấy" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "Dữ liệu mới tạo" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Định dạng hiệu chỉnh không hợp lệ: %r " -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "Nguồn đã hiệu chỉnh" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "Cài đặt hiệu chỉnh" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Không được phép đọc dữ liệu %s" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} xem" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "Lịch sử sửa đổi bộ dữ liệu CKAN" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number} Số lượng xem gần đây" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "Những thay đổi gần đây của bộ dữ liệu CKAN" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "Không cấp phép tạo dữ liệu" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "Không có địa chỉ email của người nhận" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "Không cấp phép hiệu chỉnh nguồn này" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "Tổ chức" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "Không cấp phép cập nhật dữ liệu" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "Nhóm" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "Dữ liệu {id} không tìm thấy" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "Giá trị bị mất" +#: ckan/controllers/package.py:650 +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/lib/navl/validators.py:66 -#, 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/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "Không được phép tạo mới tài liệu" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "Nhập giá trị số nguyên" +#: ckan/controllers/package.py:714 +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/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "Nguồn" +#: ckan/controllers/package.py:928 +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/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "Nguồn dữ liệu không hợp lệ" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "Không thể cập nhật mục lục tìm kiếm" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "Phần thêm" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "Dữ liệu đã được xóa." -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Từ khóa \"%s\" không tồn tại" +msgid "Unauthorized to delete package %s" +msgstr "Không được phép xóa dữ liệu %s" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "Người sử dụng" - -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "Dữ liệu" - -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "Nhóm" - -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "Không thể phân tích JSON hợp lệ" - -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "Nguồn không tìm thấy" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "Tổ chức không tồn tại" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Không được phép xóa nguồn %s" -#: ckan/logic/validators.py:51 -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/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "Không tìm thấy chức năng đọc dữ liệu" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "Số nguyên không hợp lệ" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "Dữ liệu nguồn không tìm thấy" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "Phải là một số tự nhiên" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "Không thể tải về" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "Phải là số nguyên dương" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Không được phép đọc bộ dữ liệu %s" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "Định dạng dữ liệu không đúng" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Không được phép tìm hiểu nguồn %s" -#: ckan/logic/validators.py:138 -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/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "Không được phép sửa dữ liệu" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "Bộ dữ liệu đã có sẵn" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "Không thấy chức năng đọc" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "Nguồn" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "Không tìm thấy định dạng đọc" -#: ckan/logic/validators.py:253 -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/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "Thông tin về dữ liệu kém " -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "Hình thức hoạt động" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "Không có chức năng đọc dữ liệu" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "Tên phải là một chuỗi" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "Không được xem trước" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "Tên không được sử dụng" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "Lịch sử sửa đổi kho CKAN" -#: ckan/logic/validators.py:337 -#, python-format -msgid "Must be at least %s characters long" -msgstr "" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "Thay đổi gần đây của kho CKAN" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/revision.py:110 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "Tên dài tối đa %i ký tự" +msgid "Datasets affected: %s.\n" +msgstr "Bộ dữ liệu bị ảnh hưởng: %s\n" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "Cập nhật điều chỉnh" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "Địa chỉ đã được sử dụng" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "Khác" -#: ckan/logic/validators.py:365 -#, 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/controllers/tag.py:74 +msgid "Tag not found" +msgstr "Không tìm thấy từ khóa" -#: ckan/logic/validators.py:369 -#, 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/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "Không cấp phép đăng kí cho người sử dụng" -#: ckan/logic/validators.py:375 -#, 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/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "Không cấp phép tạo người sử dụng" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "Từ khóa bị trùng lặp \"%s\"" +#: ckan/controllers/user.py:210 +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/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "Tên nhóm đã tồn tại trên dữ liệu" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "Người sử dụng không được xác nhận" -#: ckan/logic/validators.py:415 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, 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" +msgid "Unauthorized to edit user %s" +msgstr "Không được phép sửa người dùng %s" -#: ckan/logic/validators.py:419 -#, 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/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "Người sử dụng không tìm thấy" -#: ckan/logic/validators.py:427 -#, 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/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "Cập nhật lí lịch" -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:245 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "Thẻ \"%s\" không chấp nhận ký tự viết hoa" +msgid "Unauthorized to create user %s" +msgstr "Không được quyền tạo người dùng %s" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "Tên người sử dụng phải là một chuỗi" +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "Hệ thống kiểm thử lỗi. Đề nghị thử lại." -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "Không có tên đăng nhập" +#: ckan/controllers/user.py:265 +#, 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/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "Nhập mật khẩu" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "Không cấp phép hiệu chỉnh người sử dụng" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "Mật khẩu phải là một chuỗi" +#: ckan/controllers/user.py:320 +#, python-format +msgid "User %s not authorized to edit %s" +msgstr "Người dùng %s không được phép sửa %s" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "Mật khẩu phải có ít nhất 4 kí tự" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "Mật khẩu bạn nhập không đúng" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." +#: ckan/controllers/user.py:386 +msgid "incorrect password" 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:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "Tên gồm tối thiểu %s ký tự" +#: ckan/controllers/user.py:427 +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/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "Từ vựng đã được sử dụng" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "Không cấp phép đề nghị cài lại mật khẩu" -#: ckan/logic/validators.py:633 +#: ckan/controllers/user.py:490 #, 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:642 -msgid "Tag vocabulary was not found." -msgstr "Từ vựng đi kèm không tìm thấy" +msgid "\"%s\" matched several users" +msgstr "\"%s\" gắn với một số người dùng" -#: ckan/logic/validators.py:655 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "Thẻ %s không nằm trong kho từ vựng %s" +msgid "No such user: %s" +msgstr "Không có người dùng này: %s" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "Không có từ khóa" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "Kiểm tra hòm thư email để tái lập mã." -#: ckan/logic/validators.py:674 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "Thẻ %s đã có trong kho từ vựng %s" - -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "Cung cấp địa chỉ hợp lệ" +msgid "Could not send reset link: %s" +msgstr "Không thể gửi kết nối được tái lập: %s" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "không tồn tại vai trò này" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "Không cấp phép cài lại mật khẩu" -#: ckan/logic/validators.py:740 -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/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "Từ khóa không hợp lệ. Thử lại" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "Không có danh sách" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "Mật khẩu của bạn đã được cài đặt lại" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "Không phải là một chuỗi" +#: ckan/controllers/user.py:562 +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/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "có thể tạo vòng lặp trong hệ thống" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "Mật khẩu bạn nhập không đúng" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "Bạn phải nhập mật khẩu" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "Không tìm thấy mục tin tiếp theo" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} Không tìm thấy" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "Tất cả" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: Tạo đối tượng %s" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "Giá trị bị mất" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: Tạo mối liên kết gói dữ liệu: %s %s %s" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "Không cho phép chuyển hướng trang " -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: Tạo đối tượng thành viên %s" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} đã thêm thẻ {tag} đến tập dữ liệu{dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "Thử thiết lập tổ chức dạng nhóm" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} Nhóm đã cập nhật {group}" -#: ckan/logic/action/create.py:881 -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/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} Tổ chức đã được cập nhật {organization}" -#: ckan/logic/action/create.py:884 -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/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} Dữ liệu đã được cập nhật {dataset}" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "Trị số phải là số nguyên" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} Thay đổi phần bổ sung {extra} dữ liệu {dataset}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "Trị số trong khoảng %i và %i." +#: ckan/lib/activity_streams.py:75 +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/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} Lí lịch đã được cập nhật" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -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/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} đã xóa nhóm {group}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "Bạn không thể tự theo dõi chính mình" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} đã xóa tổ chức {organization}" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "Bạn đang theo dõi {0}" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} đã xóa bộ dữ liệu {dataset}" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -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/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor} đã xóa dữ liệu {extra} bổ sung {dataset} " -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "Tên người sử dụng {username} không tồn tại" +#: ckan/lib/activity_streams.py:93 +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/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "Bạn phải đăng nhập để theo dõi nhóm" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} đã tạo nhóm {group}" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} đã tạo tổ chức {organization}" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: Xóa dữ liệu %s" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} đã tạo bộ dữ liệu {dataset}" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: Xóa %s" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} đã bổ sung {extra} vào bộ dữ liệu {dataset} " -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: Xóa thành viên:%s" +#: ckan/lib/activity_streams.py:109 +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/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "Địa chỉ không có trong dữ liệu" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} Đăng nhập" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "Không thể tìm từ vựng \"%s\"" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} đã loại thẻ {tag} khỏi bộ dữ liệu {dataset} " -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "Không thể tìm từ khóa \"%s\"" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} khởi động giám sát {dataset} " -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -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/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} khởi động giám sát {user}" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "Bạn đang không theo dõi {0}" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor} khởi động giám sát {group} " -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "Không tìm thấy nguồn" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Xem" -#: ckan/logic/action/get.py:2049 -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/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "Phải là : cặp(s)" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "Tháng 1" -#: ckan/logic/action/get.py:2090 -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/lib/formatters.py:23 +msgid "February" +msgstr "Tháng 2" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "Không tìm thấy dữ liệu" +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "Tháng 3" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "Giao diện người sử dụng REST: Đối tượng cập nhật %s" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "Tháng 4" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: Cập nhập package liên quan: %s %s %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "Tháng 5" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "Trạng thái công việc không tìm thấy." +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "Tháng 6" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "Không tìm thấy tổ chức" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "Tháng 7" -#: 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/lib/formatters.py:47 +msgid "August" +msgstr "Tháng 8" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, 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/lib/formatters.py:51 +msgid "September" +msgstr "Tháng 9" -#: 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/lib/formatters.py:55 +msgid "October" +msgstr "Tháng 10" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "Tháng 11" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -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/lib/formatters.py:63 +msgid "December" +msgstr "Tháng 12" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "Ngay bây giờ" -#: 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/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} Vài phút trước" -#: 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/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} Vài giờ trước" -#: 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/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} Vài ngày trướ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/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} Vài tháng trước" -#: 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/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "Hơn {years} vài năm trước" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "Không tìm thấy nhóm" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "Cần API key hợp lệ để tạo package." +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "Cần API key hợp lệ để tạo tạo nhóm." +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/auth/create.py:239 -#, 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/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, 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/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: 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/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: 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/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: 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/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: 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/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: 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/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: 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/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: 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/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "Không cấp phép" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: 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/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/get.py:130 -#, 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/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/get.py:149 -#, 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/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "Cập nhật ảnh đại diện của bạn trên gravatar.com" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "Không biết" -#: ckan/logic/auth/get.py:258 -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/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "Nguồn không tên" -#: ckan/logic/auth/update.py:39 -#, 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/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "Dữ liệu mới tạo" -#: ckan/logic/auth/update.py:71 -#, 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/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "Nguồn đã hiệu chỉnh" -#: ckan/logic/auth/update.py:100 -#, 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/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "Cài đặt hiệu chỉnh" -#: ckan/logic/auth/update.py:128 -#, 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/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} xem" -#: ckan/logic/auth/update.py:145 -#, 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/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} Số lượng xem gần đây" -#: ckan/logic/auth/update.py:162 +#: ckan/lib/mailer.py:39 #, 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" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/update.py:189 -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/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "Không có địa chỉ email của người nhận" + +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "Tổ chức" + +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "Nhóm" + +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "Giá trị bị mất" -#: ckan/logic/auth/update.py:197 +#: ckan/lib/navl/validators.py:66 #, 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" +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/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "Nhập giá trị số nguyên" + +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" msgstr "" -#: ckan/logic/auth/update.py:216 -#, 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/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "Nguồn dữ liệu không hợp lệ" -#: ckan/logic/auth/update.py:225 -#, 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/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "Phần thêm" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, 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" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Từ khóa \"%s\" không tồn tại" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "Cần API key hợp lệ để chỉnh sửa package" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "Không thể phân tích JSON hợp lệ" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "Cần API key hợp lệ để chỉnh sửa nhóm" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "Không xác định được giấy phép" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "Tổ chức không tồn tại" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Tổ chức Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:52 +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/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Tổ chức Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "Số nguyên không hợp lệ" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Tổ chức Open Data Commons Attribution License" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "Phải là một số tự nhiên" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "Phải là số nguyên dương" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Giấy phép bản quyền mở" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "Định dạng dữ liệu không đúng" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" - -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "Tổ chức GNU Free Documentation License" +#: ckan/logic/validators.py:139 +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/model/license.py:301 -msgid "Other (Open)" -msgstr "Khác (Mở)" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "Bộ dữ liệu đã có sẵn" -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "Khác (Khu vực công cộng)" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "Nguồn" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "Khác (Quyền)" +#: ckan/logic/validators.py:254 +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/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "Tổ chức UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "Hình thức hoạt động" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Bản quyền mở phi thương mại (bất kỳ)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "Tên phải là một chuỗi" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "Khác (phi thương mại)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "Tên không được sử dụng" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "Khác (Không mở)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "depends on %s" -msgstr "Phụ thuộc vào %s" +msgid "Name must be a maximum of %i characters long" +msgstr "Tên dài tối đa %i ký tự" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "Địa chỉ đã được sử dụng" + +#: ckan/logic/validators.py:366 #, python-format -msgid "is a dependency of %s" -msgstr "Là phần phụ thuộc của %s" +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/model/package_relationship.py:55 +#: ckan/logic/validators.py:370 #, python-format -msgid "derives from %s" -msgstr "xuất phát từ %s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Độ dài tên \"%s\" trên mức tối đa %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "has derivation %s" -msgstr "có nguồn %s" +msgid "Version must be a maximum of %i characters long" +msgstr "Phiên bản không vượt quá %i ký tự " -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:394 #, python-format -msgid "links to %s" -msgstr "Liên kết tới %s" +msgid "Duplicate key \"%s\"" +msgstr "Từ khóa bị trùng lặp \"%s\"" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:410 +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:416 #, python-format -msgid "is linked from %s" -msgstr "Được liên kết từ %s" +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/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "Là con của %s" +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/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "là gốc của %s" +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/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "có liên hệ gần nhau %s" +msgid "Tag \"%s\" must not be uppercase" +msgstr "Thẻ \"%s\" không chấp nhận ký tự viết hoa" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "Đang tải" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "Tên người sử dụng phải là một chuỗi" -#: ckan/public/base/javascript/modules/api-info.js:20 -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/logic/validators.py:561 +msgid "That login name is not available." +msgstr "Không có tên đăng nhập" -#: ckan/public/base/javascript/modules/api-info.js:21 -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/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "Nhập mật khẩu" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "Không tìm thấy" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "Mật khẩu phải là một chuỗi" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "Bắt đầu nhập" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "Mật khẩu phải có ít nhất 4 kí tự" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "Kí tự quá ngắn, phải có ít nhất 1 kí tự" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "Mật khẩu bạn nhập không đúng" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "Không thể lưu thay đổi theo hình thức này" +#: ckan/logic/validators.py:611 +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/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "Xác nhận hành động" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Tên gồm tối thiểu %s ký tự" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -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/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "Từ vựng đã được sử dụng" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "Xác nhận" +#: ckan/logic/validators.py:634 +#, 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/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "Hủy" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "Từ vựng đi kèm không tìm thấy" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "Theo dõi" +#: ckan/logic/validators.py:656 +#, 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/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "Không theo dõi" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "Không có từ khóa" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "Tải lên" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Thẻ %s đã có trong kho từ vựng %s" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "Liên kết" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "Cung cấp địa chỉ hợp lệ" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "Xóa" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "không tồn tại vai trò này" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "Hình ảnh" +#: ckan/logic/validators.py:741 +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/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "Địa chỉ" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "Không có danh sách" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "Tệp" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "Không phải là một chuỗi" -#: ckan/public/base/javascript/modules/image-upload.js:22 -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/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "có thể tạo vòng lặp trong hệ thống" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" 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/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "Sắp xếp lại nguồn" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "Lưu" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "Đang lưu" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "Tải lên một tệp" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "Xuất hiện lỗi" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: Tạo đối tượng %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "Nguồn đã tải lên" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: Tạo mối liên kết gói dữ liệu: %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "Không thể tải tệp" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: Tạo đối tượng thành viên %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "Không thể tải lên giá trị" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "Thử thiết lập tổ chức dạng nhóm" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "Không thể lấy dữ liệu từ tệp đã tải" +#: ckan/logic/action/create.py:893 +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/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "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-reorder.js:8 -msgid "Reorder resource view" -msgstr "Sắp xép lại dữ liệu." - -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "Hiệu chỉnh" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "Hiển thị thêm" +#: ckan/logic/action/create.py:896 +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/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "Ẩn" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "Trị số phải là số nguyên" -#: ckan/templates/error_document_template.html:3 +#: ckan/logic/action/create.py:905 #, 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" +msgid "Rating must be between %i and %i." +msgstr "Trị số trong khoảng %i và %i." -#: ckan/templates/footer.html:16 -msgid "CKAN Association" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Được phát triển bởi CKAN" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +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/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "Cài đặt hệ thống" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "Bạn không thể tự theo dõi chính mình" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "Xem tiểu sử" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "Bạn đang theo dõi {0}" -#: ckan/templates/header.html:26 -#, 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/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +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/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Bảng điều khiển" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "Tên người sử dụng {username} không tồn tại" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "Cài đặt hiệu chỉnh" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "Bạn phải đăng nhập để theo dõi nhóm" -#: ckan/templates/header.html:37 -msgid "Settings" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "Thoát" +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "REST API: Xóa dữ liệu %s" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "Đăng nhập" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: Xóa %s" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "Đăng kí" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: Xóa thành viên:%s" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "Dữ liệu" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "Địa chỉ không có trong dữ liệu" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "Tìm kiếm bộ dữ liệu" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Không thể tìm từ vựng \"%s\"" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "Tìm kiếm" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Không thể tìm từ khóa \"%s\"" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "Đi thẳng đến nội dung" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +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/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "Tải ít hơn" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "Bạn đang không theo dõi {0}" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "Tải thêm" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "Không tìm thấy nguồn" -#: 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/logic/action/get.py:2087 +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/templates/admin/base.html:3 -msgid "Administration" -msgstr "Quản trị" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "Phải là : cặp(s)" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "Quản trị hệ thống" +#: ckan/logic/action/get.py:2128 +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/templates/admin/base.html:9 -msgid "Config" -msgstr "Cấu hình" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "Không tìm thấy dữ liệu" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "Rác" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "Giao diện người sử dụng REST: Đối tượng cập nhật %s" -#: ckan/templates/admin/config.html:16 -#: 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/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: Cập nhập package liên quan: %s %s %s" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "Cài đặt lại" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "Trạng thái công việc không tìm thấy." -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "Cập nhật cấu hình" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "Không tìm thấy tổ chức" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "các lựa chọn cấu hình CKAN " +#: 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/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 #, 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.

" +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/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/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/templates/admin/index.html:15 -msgid "Administer CKAN" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +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 "" -"

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

" +msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -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/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +#: 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/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "Giao diện người sử dụng dữ liệu CKAN " +#: 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/templates/ajax_snippets/api_info.html:23 -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." +#: 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/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +#: 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/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "Điểm kết thúc" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "Không tìm thấy nhóm" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"Giao diện người sử dụng dữ liệu có thể truy cập thông qua hoạt động theo dõi" -" giao diện người sử dụng CKAN" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "Cần API key hợp lệ để tạo package." -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "Tạo" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "Cần API key hợp lệ để tạo tạo nhóm." -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "Cậ nhật/Chèn" +#: ckan/logic/auth/create.py:237 +#, 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/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "Truy vấn" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, 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/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "Truy vấn (thông qua ngôn ngữ truy vấn mang tính cấu trúc)" +#: 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/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "Đang hỏi" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "Ví dụ câu hỏi (5 kết quả đầu tiên)" +#: 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/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "Ví dụ câu hỏi (kết quả có chứa \"jones\")" +#: 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/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "Ví dụ câu hỏi (bằng xác nhận SQL)" +#: 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/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "Ví dụ: Javascript" +#: 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/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" +#: 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/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "Ví dụ: Con trăn" +#: 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/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/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "Không cấp phép" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "Bấm vào đây để biết thêm thông tin" +#: ckan/logic/auth/get.py:109 +#, 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/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "Tải nguồn về" +#: 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/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "Trình duyệt của bạn không hỗ trợ iframes" +#: 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/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "Không thể xem trước" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "Thêm chi tiết" +#: ckan/logic/auth/get.py:252 +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/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:39 #, 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" +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/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "Đầu vào tiêu chuẩn " +#: ckan/logic/auth/update.py:71 +#, 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/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "Trung bình" +#: ckan/logic/auth/update.py:100 +#, 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/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "Đầu vào cỡ trung bình" +#: ckan/logic/auth/update.py:128 +#, 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/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "Đầy đủ" +#: ckan/logic/auth/update.py:145 +#, 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/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "Đầu vào cỡ đầy đủ" +#: ckan/logic/auth/update.py:162 +#, 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/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "Lớn" +#: ckan/logic/auth/update.py:190 +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/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "Đầu vào lớn" +#: ckan/logic/auth/update.py:198 +#, 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/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "Hàm bổ sung Tiền tố" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "Đầu vào hàm bổ sung tiền tố" +#: ckan/logic/auth/update.py:217 +#, 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/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "Trường chỉnh sửa (trống)" +#: ckan/logic/auth/update.py:226 +#, 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/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "Trường chỉnh sửa" +#: ckan/logic/auth/update.py:240 +#, 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/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Giảm " +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "Cần API key hợp lệ để chỉnh sửa package" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "Vùng văn bản" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "Cần API key hợp lệ để chỉnh sửa nhóm" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "Chọn" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "Không xác định được giấy phép" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "Chuỗi hoạt động" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Tổ chức Open Data Commons Public Domain Dedication and License (PDDL)" -#: 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:7 -msgid "Add a Group" -msgstr "Thêm nhóm" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Tổ chức Open Data Commons Open Database License (ODbL)" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "Hình thức nhóm" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Tổ chức Open Data Commons Attribution License" -#: 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/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: 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/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Giấy phép bản quyền mở" -#: 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/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "Quản lí" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "Tổ chức GNU Free Documentation License" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "Điều chỉnh nhóm" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "Khác (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/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "Khác (Khu vực công cộng)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "Người theo dõi" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +msgstr "Khác (Quyền)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "Lịch sử" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "Tổ chức UK Open Government Licence (OGL)" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "Thêm nhóm" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Bản quyền mở phi thương mại (bất kỳ)" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "Tìm nhóm" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "Khác (phi thương mại)" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "Tên từ A-Z" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "Khác (Không mở)" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "Tên từ Z-A" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "Phụ thuộc vào %s" -#: 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/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "Là phần phụ thuộc của %s" -#: 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/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "xuất phát từ %s" -#: 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/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "có nguồn %s" -#: 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/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "Liên kết tới %s" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "Thêm thành viên" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "Được liên kết từ %s" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "Người sử dụng hiện tại" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "Là con của %s" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" -"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/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "là gốc của %s" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "Hoặc" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "có liên hệ gần nhau %s" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "Người sử dụng mới" +#: ckan/public/base/javascript/modules/api-info.js:96 +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/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" -"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/public/base/javascript/modules/api-info.js:124 +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/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "Vai trò" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "Bắt đầu nhập" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "Bạn có muốn xóa thành viên này không?" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "Không tìm thấy" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "Xóa" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:61 -msgid "Save" -msgstr "Lưu" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "Không thể lưu thay đổi theo hình thức này" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "Vai trò là gì?" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "Xác nhận hành động" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

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/public/base/javascript/modules/confirm-action.js:100 +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/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/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "Xác nhận" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "Sự liên quan" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "Sửa gần đây" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "Không theo dõi" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "Ưa chuộng" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "Theo dõi" -#: ckan/templates/group/read.html:21 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/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "Liên kết" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "Bộ dữ liệu trong nhóm: {group}" +#: ckan/public/base/javascript/modules/image-upload.js:61 +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/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "Lịch sử sửa đổi gần đây" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "Tải lên" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "Tên" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "Xóa" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "Nhóm của tôi" +#: ckan/public/base/javascript/modules/image-upload.js:87 +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:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 #: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "Nhóm của tôi" +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "Địa chỉ" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "Mô tả" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "Tệp" -#: 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/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "Lưu" -#: ckan/templates/group/snippets/group_form.html:60 -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/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "Đang lưu" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "Lưu nhóm" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "Tải lên một tệp" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} Bộ dữ liệu" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "Xuất hiện lỗi" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0 Bộ dữ liệu" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "Không thể tải tệp" -#: 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/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "Không thể tải lên giá trị" -#: 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/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "Nguồn đã tải lên" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "Nhóm là gì?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "Không thể lấy dữ liệu từ tệp đã tải" -#: ckan/templates/group/snippets/helper.html:8 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 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. " +"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/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" 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/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "So sánh" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "Đã xóa" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "Hiệu chỉnh" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "Đọc thêm" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "Hiển thị thêm" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "Sửa lại" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "Ẩn" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "Nhãn thời gian" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Lỗi %(error_code)s" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "Tác giả" +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Thông tin {0}" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "Nhật kí tin nhắn" +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "Giao diện người sử dụng CKAN" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "Chào đón" +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" -#: ckan/templates/home/snippets/about_text.html:1 +#: ckan/templates/footer.html:24 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/

" +"Powered by CKAN" 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/

" +"Được phát triển bởi CKAN" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "Chào mừng gia nhập CKAN" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "Cài đặt hệ thống" -#: 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/header.html:19 +msgid "View profile" +msgstr "Xem tiểu sử" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "Đây là khu vực mô tả" +#: ckan/templates/header.html:26 +#, 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/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Bảng điều khiển" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "Cài đặt hiệu chỉnh" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "Các thẻ phổ biến" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} Thống kê" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "Thoát" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "Bộ dữ liệu" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +msgstr "Đăng nhập" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "Các bộ dữ liệu" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Đăng kí" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "Các tổ chức" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "Dữ liệu" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "Các nhóm" +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "Tìm kiếm bộ dữ liệu" -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Tìm kiếm" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "Lĩnh vực được yêu cầu" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Đi thẳng đến nội dung" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "Chỉnh sửa" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Tải ít hơn" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -msgstr "Mẫu gồm các đầu vào vô hiệu" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Tải thêm" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "Lĩnh vực được yêu cầu" +#: 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/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Quản trị" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "hình ảnh URL" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Quản trị hệ thống" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "Xóa nội dung tải" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Cấu hình" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "Hình thức tổ chức" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "Rá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/admin/config.html:16 +#: 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/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "Thêm bộ dữ liệu" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "Cài đặt lại" -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "tìm thấy đáp ứng \"{query}\"" +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "Cập nhật cấu hình" -#: 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/admin/config.html:26 +msgid "CKAN config options" +msgstr "các lựa chọn cấu hình CKAN " -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "Công khai" +#: ckan/templates/admin/config.html:33 +#, 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/organization/bulk_process.html:41 -msgid "Make private" -msgstr "Bí mật" +#: 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/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "Nháp" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "Riêng tư" +#: 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/organization/bulk_process.html:88 -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/admin/trash.html:20 +msgid "Purge" +msgstr "" -#: 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/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +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 "Chỉnh sửa tổ chức" +#: 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/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "Thêm tổ chức" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "Bấm vào đây để biết thêm thông tin" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "Tìm kiếm tổ chức..." +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "Tải nguồn về" -#: 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/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Không thể xem trước" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Tên người sử dụng" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Thêm chi tiết" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "" +#: 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/organization/member_new.html:62 -msgid "Update Member" -msgstr "Cập nhật thành viên" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Tiêu chuẩn" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

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/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Đầu vào tiêu chuẩn " -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "Tạo một Tổ chức" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Trung bình" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "Cập nhật Tổ chức" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Đầu vào cỡ trung bình" -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "Tạo Tổ chức" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Đầy đủ" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "Thêm bộ dữ liệu" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Đầu vào cỡ đầy đủ" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Lớn" -#: 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/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Đầu vào lớn" -#: 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/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Hàm bổ sung Tiền tố" -#: 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. " +#: 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/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "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:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "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:7 +msgid "Add a Group" +msgstr "Thêm nhóm" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "Hình thức nhóm" + +#: 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/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:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "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:23 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/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "Lịch sử" + +#: 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:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Thêm thành viên" + +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "Người sử dụng hiện tại" + +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." msgstr "" -"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." +"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:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "Hoặc" + +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "Người sử dụng mới" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "Tổ chức của tôi" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"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/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "Tổ chức_của tôi" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "Vai trò" -#: 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/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: 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:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 #: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "Xóa" + +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "Vai trò là gì?" + +#: ckan/templates/group/member_new.html:80 msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." +"

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

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

" msgstr "" -"Bạn có chắc muốn xóa Tổ chức này không? Tất cả những bộ dữ liệu công khai và" -" cá nhân thuộc về tổ chức này cũng sẽ bị xóa." +"

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/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "Lưu Tổ chức" +#: 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/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "Xem {organization_name}" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Cập nhật nhóm" -#: ckan/templates/package/base.html:22 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/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Tạo nhóm" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "Bộ dữ liệu là gì?" +#: ckan/templates/group/read.html:21 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/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/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "Bộ dữ liệu trong nhóm: {group}" -#: 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/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "Lịch sử sửa đổi gần đây" -#: 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/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "Tên" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "Xem bộ dữ liệu" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Nhóm của tôi" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "Chỉnh sửa lý lịch dữ liệu" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "Nhóm của tôi" -#: 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/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/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "Xem trước" +#: ckan/templates/group/snippets/group_form.html:60 +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/package/edit_view.html:21 -msgid "Update" -msgstr "Cập nhật" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "Lưu nhóm" -#: 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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Xem tên {name}" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "Thêm vào nhóm" +#: 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/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/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Nhóm là gì?" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "Cập nhật bộ dữ liệu" +#: 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/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/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "So sánh" -#: 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/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Đã xóa" -#: 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/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "Đọc thêm" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "Nguồn mới" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "Sửa lạ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/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "Nhãn thời gian" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "Tác giả" + +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "Nhật kí tin nhắn" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Chào đón" + +#: ckan/templates/home/snippets/about_text.html:1 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +"

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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "Thêm" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Chào mừng gia nhập CKAN" -#: ckan/templates/package/read_base.html:32 -#, python-format +#: ckan/templates/home/snippets/promoted.html:10 msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." +"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à bản hiệu đính cũ của bộ dữ liệu, được chỉnh sửa lúc %(timestamp)s. Nó" -" có thể khác nhiều so với phiên bản hiện tại." - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "Tải lên kho dữ liệu" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "Lỗi tải:" +"Đâ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/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "Lỗi:" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Đây là khu vực mô tả" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" msgstr "" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "Tình trạng" - -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "Cập nhật lần cuối" - -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "Không bao giờ" - -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "Nhật ký đăng tải" - -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "Chi tiết" - -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "Kết thúc nhật ký" - -#: 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:32 -msgid "Edit resource" -msgstr "Sửa nguồn" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "Kho dữ liệu" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Các thẻ phổ biến" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "Các lượt xem" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} Thống kê" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "Đầu nút API" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "Bộ dữ liệu" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "Đến nguồn" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "Các bộ dữ liệu" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "Tải về" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "Các tổ chức" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "Địa chỉ:" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "Các nhóm" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "Từ tóm tắt của bộ dữ liệu" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "Nguồn: %(dataset)s" +msgid "" +"You can use Markdown formatting here" +msgstr "" -#: ckan/templates/package/resource_read.html:112 -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/macros/form.html:265 +msgid "This field is required" +msgstr "Lĩnh vực được yêu cầu" -#: ckan/templates/package/resource_read.html:116 -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/macros/form.html:265 +msgid "Custom" +msgstr "Chỉnh sửa" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "Mẫu gồm các đầu vào vô hiệu" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "Lĩnh vực được yêu cầu" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "hình ảnh URL" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "Thông tin khác" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "Xóa nội dung tải" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "Miền" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "Hình thức tổ chức" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "Giá trị" +#: 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/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "Không biết" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "Thêm bộ dữ liệu" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "Được tạo ra" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "tìm thấy đáp ứng \"{query}\"" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "Định dạng" +#: 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/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "Giấy phép" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "Công khai" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "Bí mật" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Nháp" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "Thêm nguồn mới" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "Riêng tư" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

Bộ dữ liệu này trống, bạn có muốn " -"thêm vào không?

" +#: ckan/templates/organization/bulk_process.html:88 +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/package/search.html:52 -msgid "API" -msgstr "Giao diện lập trình ứng dụng" +#: 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/package/search.html:53 -msgid "API Docs" -msgstr "Văn bản API" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Thêm tổ chức" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "đầy đủ {format} kết xuất" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Tìm kiếm tổ chức..." -#: 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/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/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/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Tên người sử dụng" -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" msgstr "" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "Cập nhật thành viên" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" +#: ckan/templates/organization/member_new.html:81 +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/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/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" -#: 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/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "Tạo một Tổ chức" -#: 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/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Cập nhật Tổ chức" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "Tình trạng" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Tạo Tổ chức" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" +#: ckan/templates/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "Thêm bộ dữ liệu" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" msgstr "" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -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/package/snippets/cannot_create_package.html:18 -msgid "There are no organizations to which you can assign this dataset." +#: 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/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/helper.html:8 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +" 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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "Dữ liệu API" - -#: 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/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Tổ chức 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/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "Tổ chức_của tôi" -#: 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/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/package/snippets/package_basic_fields.html:41 +#: ckan/templates/organization/snippets/organization_form.html:60 msgid "" -" License definitions and additional information can be found at opendefinition.org " +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." 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:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "Tổ chức" +"Bạn có chắc muốn xóa Tổ chức này không? Tất cả những bộ dữ liệu công khai và" +" cá nhân thuộc về tổ chức này cũng sẽ bị xóa." -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "Không có tổ chức nào" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "Lưu Tổ chức" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "Tầm nhìn" +#: 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/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "Công khai" +#: ckan/templates/package/base.html:22 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/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "Hoạt động" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Bộ dữ liệu là gì?" -#: ckan/templates/package/snippets/package_form.html:28 +#: ckan/templates/package/base_form_page.html:25 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." +" 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/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/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/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "Tiếp theo: Thêm dữ liệu" +#: 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:16 +msgid "View dataset" +msgstr "Xem bộ dữ liệu" + +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "Chỉnh sửa lý lịch dữ liệu" + +#: 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:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "Xem trước" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Cập nhật" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: 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/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/group_list.html:14 +msgid "Add to group" +msgstr "Thêm vào nhóm" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "Email tác giả" +#: 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/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/new_package_form.html:15 +msgid "Update Dataset" +msgstr "Cập nhật bộ dữ liệu" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "Email người bảo dưỡng" +#: 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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "Cập nhật nguồn" +#: 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/snippets/resource_form.html:24 -msgid "Data" -msgstr "" +#: 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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Nguồn mới" -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "VD: Giá vàng Tháng 1 năm 2011" +#: 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/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "Vài ghi chú hữu ích về dữ liệu" +#: 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/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "VD: CSV, XML hay JSON" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "Thêm" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." msgstr "" +"Đây là bản hiệu đính cũ của bộ dữ liệu, được chỉnh sửa lúc %(timestamp)s. Nó" +" có thể khác nhiều so với phiên bản hiện tại." -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "VD: 5.6.2012" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "Kích cỡ tệp" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Tất cả các nguồn" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "VD: 1024" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Xem nguồn" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "Định dạng MIME" +#: 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/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "VD: ứng dụng/json" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Các lượt xem" -#: ckan/templates/package/snippets/resource_form.html:65 -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/resource_read.html:39 +msgid "API Endpoint" +msgstr "Đầu nút API" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "Trước" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "Đến nguồn" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "Lưu & thêm" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "Tải về" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "Kết thúc" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "Địa chỉ:" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "Nguồn là gì?" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "Từ tóm tắt của bộ dữ liệu" -#: 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/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Nguồn: %(dataset)s" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "Tìm hiểu" +#: ckan/templates/package/resource_read.html:109 +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/snippets/resource_item.html:36 -msgid "More information" -msgstr "Thông tin thêm" +#: ckan/templates/package/resource_read.html:113 +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/snippets/resource_view.html:11 -msgid "Embed" -msgstr "Đã được gắn" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 +#: ckan/templates/package/resource_read.html:122 msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +"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/snippets/resource_view.html:69 -msgid "Width" -msgstr "" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "Thông tin khác" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Miền" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "Mã" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Giá trị" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "Dữ liệu và nguồn" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "Không biết" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "Đọc bộ dữ liệu %s" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Được tạo ra" -#: 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/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "Định dạng" -#: 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/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "Giấy phép" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Thêm nguồn mới" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, 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/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "Giao diện lập trình ứng dụng" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Văn bản API" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "đầy đủ {format} kết xuất" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" +#: 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/snippets/view_help.html:2 -msgid "What's a view?" +#: 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/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" msgstr "" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "Khác" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "Khác biệt trong các bản chỉnh sửa" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "Khác biệt" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "Không khác biệt" +#: 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/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "Lịch sử sửa đổi" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Nguồn" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "Sửa đổi" +#: 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/revision/read.html:30 -msgid "Undelete" -msgstr "Bỏ xóa" +#: 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/revision/read.html:64 -msgid "Changes" -msgstr "Những thay đổi" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "Tình trạng" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "Từ khóa của bộ dữ liệu" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "Đối tượng" +#: 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/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "Mục hoạt động mới" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "Xem dữ liệu nhúng" +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "Nhúng nội dung này bằng cách sao chép vào trang của bạn:" +#: 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/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "Chọn chiều rộng và chiều cao theo điểm ảnh:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Tiêu đề" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "Chiều rộng:" +#: 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/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "Chiều cao:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "Bộ dữ liệu_của tôi" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Trạng thái Datapusher: {status}." +#: 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/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Tra ngược URL" +#: 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/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "Hiển thị thêm {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"Bạn có thể tìm định nghĩa giấy phép và thông tin khác tại đây opendefinition.org" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "Chỉ hiển thị ưu chuộng {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Tổ chức" -#: ckan/templates/snippets/facet_list.html:87 -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/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "Không có tổ chức nào" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "Trang chủ" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "Tầm nhìn" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "Ngôn ngữ" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "Công khai" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Đến" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "Hoạt động" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "Không cấp giấy phép" +#: 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/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "Bộ dữ liệu này đáp ứng Định nghĩa Mở" +#: 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/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "Không có mô tả nào về tổ chức 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/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/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -msgstr "Đăng kí" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "Sắp xếp thành" +#: ckan/templates/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/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "Kết quả lọc" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email tác giả" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

Thử tìm kiếm khác

" +#: 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/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email người bảo dưỡng" -#: 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/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Cập nhật nguồn" -#: 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/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "" -#: 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/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "" -#: 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/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "VD: Giá vàng Tháng 1 năm 2011" -#: 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/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "Vài ghi chú hữu ích về dữ liệu" -#: 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/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "VD: CSV, XML hay JSON" -#: 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/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "Không tìm thấy nhóm" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "VD: 5.6.2012" -#: 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/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "Kích cỡ tệp" -#: 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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "VD: 1024" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "Định dạng MIME" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "Không tìm thấy tổ chức" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "VD: ứng dụng/json" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "Xã hội" +#: ckan/templates/package/snippets/resource_form.html:65 +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/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "Đăng kí" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "Trước" -#: 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:82 -msgid "Email" -msgstr "Thư điện tử" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "Lưu & thêm" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "Định dạng dữ liệu dựa theo chuẩn XML " +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "Kết thúc" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "Biên tập" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Nguồn là gì?" -#: 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/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/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "Cung cấp tin tức" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "Tìm hiểu" -#: 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/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "Thông tin thêm" -#: 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/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "Đã được gắn" -#: 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/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "" -#: 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/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "Bạn không tạo bộ dữ liệu nào" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "Tạo bộ dữ liệu ngay bây giờ?" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "" -#: 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/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "" -#: ckan/templates/user/dashboard_organizations.html:20 -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/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "Mã" -#: 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/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "Thông tin tài khoản" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "Dữ liệu và nguồn" -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" 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/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Đọc bộ dữ liệu %s" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "Tên" +#: 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/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "VD: Joe Bloggs" +#: 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/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "VD: joe@example.com" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "Thông tin bản thân" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "Đăng kí không cần email" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "Đổi mật khẩu" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "Mật khẩu" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Khác" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "Xác nhận mật khẩu" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "Khác biệt trong các bản chỉnh sửa" -#: ckan/templates/user/edit_user_form.html:45 -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/revision/diff.html:44 +msgid "Difference" +msgstr "Khác biệt" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Không khác biệt" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Lịch sử sửa đổi" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "Cập nhật lí lịch" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "Sửa đổi" -#: 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/revision/read.html:30 +msgid "Undelete" +msgstr "Bỏ xóa" -#: 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/revision/read.html:64 +msgid "Changes" +msgstr "Những thay đổi" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "Cần một tài khoản không?" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "Từ khóa của bộ dữ liệu" -#: 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/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "Đối tượng" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "Tạo tài khoản" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "Mục hoạt động mới" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "Quên mật khẩu?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "Xem dữ liệu nhúng" -#: 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/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "Nhúng nội dung này bằng cách sao chép vào trang của bạn:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "Quên mật khẩu" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "Chọn chiều rộng và chiều cao theo điểm ảnh:" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "Thoát" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "Chiều rộng:" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "Bạn đang thoát" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "Chiều cao:" -#: 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/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Trạng thái Datapusher: {status}." -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "Thoát" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Tra ngược URL" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "Ghi nhớ mật khẩu" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "Hiển thị thêm {facet_type}" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "Bạn đã đăng nhập" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "Chỉ hiển thị ưu chuộng {facet_type}" -#: ckan/templates/user/logout_first.html:24 -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/snippets/facet_list.html:87 +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/user/logout_first.html:25 -msgid "Log out now" -msgstr "Thoát ngay bây giờ" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Trang chủ" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "Đăng kí" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Ngôn ngữ" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "Đăng kí một tài khoản" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Đến" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "Lý do đăng ký?" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "Không cấp giấy phép" -#: 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/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "Bộ dữ liệu này đáp ứng Định nghĩa Mở" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "Không có mô tả nào về tổ chức này" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "Tên" +#: 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/user/new_user_form.html:17 -msgid "Create Account" -msgstr "Tạo tài khoản" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "Đăng kí" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "Cài lại mật khẩu" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Sắp xếp thành" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "Thiết lập lại mật khẩu" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "Kết quả lọc" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "Cập nhật mật khẩu" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

Thử tìm kiếm khác

" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "Thực hiện công việc này như thế nào?" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/perform_reset.html:40 -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/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/user/read.html:21 -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/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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "Bạn đã không cung cấp lí lịch" +#: 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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "Người sử dụng này không có lí lịch" +#: 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/user/read_base.html:73 -msgid "Open ID" -msgstr "Mở địa chỉ" +#: 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/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "Chỉ bạn mới có thể xem" +#: 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/user/read_base.html:87 -msgid "Member Since" -msgstr "Thành viên trước đây" +#: 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/user/read_base.html:96 -msgid "API Key" -msgstr "Chìa khóa giao diện người sử dụng" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Không tìm thấy nhóm" -#: 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/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/user/request_reset.html:6 -msgid "Password reset" -msgstr "" +#: 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/user/request_reset.html:19 -msgid "Request reset" -msgstr "" +#: 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/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" -"Nhập tên sử dụng của bạn vào hộp thư và chúng tôi sẽ gửi một liên kết để " -"nhập mật khẩu mới" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Không tìm thấy tổ chức" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "Hoạt động từ" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Xã hội" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "Tìm kiếm danh sách" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Đăng kí" -#: 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/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:82 +msgid "Email" +msgstr "Thư điện tử" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "Không có người theo dõi" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "Định dạng dữ liệu dựa theo chuẩn XML " -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "Tìm kiếm người sử dụng" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "Biên tập" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "Hoàn thành" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Từ khóa tìm kiếm" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "Đang chờ" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Cung cấp tin tức" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "Đang đăng ký" +#: 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" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "Chưa tải lên được" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Tổ chức của tôi" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "Không tìm thấy nguồn kho dữ liệu" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Nhóm của tôi" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" +#: 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" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "Tài nguyên \"{0}\" không tìm thấy." +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "Bạn không tạo bộ dữ liệu nào" -#: 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}" +#: 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:16 +msgid "Create one now?" +msgstr "Tạo bộ dữ liệu ngay bây giờ?" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "" +#: 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" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "" +#: 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" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -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 "Người sử dụng" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" +#: 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ì" -#: 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ữ" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Thay đổi chi tiết" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "Tùy chỉnh chữ" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Tên" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "Mã quốc gia" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "VD: Joe Bloggs" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "VD: joe@example.com" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Thông tin bản thân" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "Không có mô tả nào về nhóm này" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Đăng kí không cần email" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "Đổi mật khẩu" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Mật khẩu" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "Xác nhận mật khẩu" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "" +#: ckan/templates/user/edit_user_form.html:45 +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?" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" msgstr "" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" msgstr "" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -msgstr "" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "Cập nhật lí lịch" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" +#: 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" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -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 "Đăng nhập" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Cần một tài khoản không?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" +#: 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" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Tạo tài khoản" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Quên mật khẩu?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" +#: 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" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Quên mật khẩu" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Thoát" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Bạn đang thoát" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" +#: 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}." -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Thoát" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Ghi nhớ mật khẩu" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "Tổng số bộ dữ liệu" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "Bạn đã đăng nhập" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "Ngày" +#: ckan/templates/user/logout_first.html:24 +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" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "Toàn bộ bộ dữ liệu" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "Thoát ngay bây giờ" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "Kiểm tra bộ dữ liệu hàng tuần" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Đăng kí" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "Kiểm tra tất cả bộ dữ liệu" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Đăng kí một tài khoản" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "Bộ dữ liệu mới" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Lý do đăng ký?" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "Bộ dữ liệu được đánh giá cao nhất" +#: 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" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "Đánh giá trung bình" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "Số lần đánh giá" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Tên" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "Không có đánh giá" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "Tạo tài khoản" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "Bộ dữ liệu được sửa nhiều nhất" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "Cài lại mật khẩu" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "Số lần sửa" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "Thiết lập lại mật khẩu" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "Những bộ dữ liệu không được chỉnh sửa" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "Cập nhật mật khẩu" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "Các nhóm lớn nhất" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "Thực hiện công việc này như thế nào?" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "Số bộ dữ liệu" +#: ckan/templates/user/perform_reset.html:40 +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" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "Không có nhóm" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "Người sử dụng không tạo bộ dữ liệu nào" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "Các nhãn đứng đầu" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "Bạn đã không cung cấp lí lịch" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "Tên nhãn" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "Người sử dụng này không có lí lịch" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "Số bộ dữ liệu" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Mở địa chỉ" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "Chỉ bạn mới có thể xem" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "Bảng chọn thống kê" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "Thành viên trước đây" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "Tổng số bộ dữ liệu" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "Chìa khóa giao diện người sử dụng" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "" +#: 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" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" msgstr "" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." msgstr "" +"Nhập tên sử dụng của bạn vào hộp thư và chúng tôi sẽ gửi một liên kết để " +"nhập mật khẩu mới" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +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" diff --git a/ckan/i18n/zh_CN/LC_MESSAGES/ckan.mo b/ckan/i18n/zh_CN/LC_MESSAGES/ckan.mo index 2ef0e6452aa..af742cf989e 100644 Binary files a/ckan/i18n/zh_CN/LC_MESSAGES/ckan.mo and b/ckan/i18n/zh_CN/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/zh_CN/LC_MESSAGES/ckan.po b/ckan/i18n/zh_CN/LC_MESSAGES/ckan.po index 2c9f5b11ef9..6b500cbb4ba 100644 --- a/ckan/i18n/zh_CN/LC_MESSAGES/ckan.po +++ b/ckan/i18n/zh_CN/LC_MESSAGES/ckan.po @@ -1,4485 +1,4581 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Adrià Mercader , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "授权功能未找到 %s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "完成" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "管理员" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "挂起中" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "编辑者" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "提交中" -#: ckan/authz.py:199 -msgid "Member" -msgstr "成员" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "错误" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "必须成为系统管理员才能管理" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "尚未完成上传" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "网站标题" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "没找到资源" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "风格" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "没有权限浏览此页 " -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "网站标签行" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "上传至数据仓库" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "网站标签图标" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "上传错误:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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 "关于" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "错误:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "关于页面文字" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "介绍文字" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "状态" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "主页文字" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "最后更新" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "客户化格式" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "从未" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "将自定义的CSS插入页面头部" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "上传日志" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "首页" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "日志结尾" -#: ckan/controllers/admin.py:182 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "数据仓库" + +#: ckanext/datastore/controller.py:46 #, python-format -msgid "Problem purging revision %s: %s" -msgstr "清除变更问题%s: %s" +msgid "format: must be one of %s" +msgstr "" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "清理结束" +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "动作未执行." +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "数据不合法(比如: 数值越界或数值插入字符字段)" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "没有权限浏览此页 " +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "未发现资源 \"{0}\"" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "没有登陆权限" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "用户{0}未被授权修改资源{1}" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "未找到" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN 数据 API" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "错误请求" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "通过 API 来访问与查询数据" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "指令名称未知:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "JSON 错误:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "终端" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "错误请求的数据:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +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." -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "无法列出此类型的项目:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "创建" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "无法读取此类型的项目:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "更新 / 插入" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "无法创建此类型的新项目:%s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "查询" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "无法在搜索索引中加入组件" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "查询 (通过 SQL)" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "无法更新此类型的项目:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "查询中" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "无法更新搜索索引" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "查询实例(头5条结果)" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "无法删除此类型的项目:%s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "查询实例(结果中含 'jones')" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "没有指定的修改" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "查询示例(通过 SQL 语句)" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "没有关于此id的修改: %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "示例:Javascript" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "遗漏搜索关键字 ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "使用 Jquery 向 数据 API 发起简单的 ajax (JSONP) 请求" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "无法读取参数: %r" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "示例:Python" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "错误搜索选项: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "未知的注册: %s" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "格式不正确的 qjson 值: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "描述" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "请求的参数必须用JSON代码的字典格式." +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "保存" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "未找到群组" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "未发现该组织名" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "错误的群组类别" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "机构" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "读取中..." -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "群组" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "数据 API" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "标签" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "表格" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "格式" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "授权" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "没有权限进行批量更新" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "没有权限创立群组" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "每页的数据集" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "用户%r没有权限编缉%s" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "测试配置" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "完整性错误" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "相关度" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "用户 %r 无权限修改 %s 的授权" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "没有权限删除群组%s" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "机构已经被删除." +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "最后修改时间" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "群组已经被删除." +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s 已经被删除" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "没有权限加成员到群组%s" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "热门" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "没有权限删除群组%s成员" +#: 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 "自定义文字" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "群组成员已被删除" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "自定义文字" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "比较之前选择两个修改版本" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "国家代码" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "CKAN 群组修该历史" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "自定义资源文字" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "CKAN 群组最新变更" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr " 你现在在追随{0}" +#: 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/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -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 "0数据集" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "没有权限浏览追随者%s" +#: 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/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "本网站目前无法运作. 数据库没有初始化." +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "追从者" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "請 更新你的个人资料 并且加入你的电子邮件地址。" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "资源" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "%s用你的电子邮件地址, 若你需要重设你的密码." +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "图片" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "图片url" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "参数\"{parameter_name}\"并非整型" +#: 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 (如果为空将使用资源路径)" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "数据集未找到" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "修改格式无效:%r" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "图" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "不支持查看 {format} 格式的 {package_type} 数据集 (模板文件 {file} 未找到)。" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "没有权限读取组件 %s" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "CKAN 数据集变更历史" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "CKAN 数据集最新变更:" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "没有权限创建组件" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "没有权限编缉本资源" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "没找到资源" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "筛选" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "没有权限更新数据集" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "数据集 {id} 未找到" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "例如:0" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "你必须添加至少一项数据资源" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "行数" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "错误" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "例如:100" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "没有权限创建资源" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "图片类型" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" msgstr "" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "无法在搜索索引中加入组件" - -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "无法更新搜索索引" - -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "数据集已被删除" - -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "没有权限删除组件 %s" - -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "资源已被删除" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "没有权限删除资源 %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "字段类型" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "未找到资源视图" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "纬度字段" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "没找到资源数据" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "经度字段" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "没有可下载的内容" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON字段" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "没有权限读取数据集 %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "没有权限读取资源 %s" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "没有权限编辑该资源" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "数据集总数" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "未发现该视图" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "日期" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "无法找到该视图类型" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "所有数据集" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" msgstr "" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" msgstr "" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "没有给定的预览" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "新数据集" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "CKAN资料库变更记录" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "最高分数据集" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "CKAN资料库最新变更." +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "平均评分" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "受影响的数据集:%s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "评分数目" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "版本更新" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "暂无评分" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "其他" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "编辑数做多的数据集" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "未找到标签" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "数据集" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "未找到用户" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "编辑数" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "没有权限注册为用户" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "没有权限创建用户" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "最大群组" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "没有权限删除编号为 \"{user_id}\" 的用户" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "群组" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "未指定用户" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "数据集数目" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "没有权限编缉用户%s" +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "没有群组" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "用户信息已更新" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "没有权限创建用户%s" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "标签名" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "验证码错误。请重试。" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "数据集数目" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "用户\"%s\"已经注册了但你仍旧已\"%s\"的身份登录着" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "没有权限编辑用户信息" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "用户" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "用户 %s没有编辑权限%s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "统计目录" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "密码不正确" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "数据集总数" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "旧密码" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "文本" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "不正确的密码" +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "网站" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "登录失败。用户名或密码错误。" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "页面url" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "没有权限申请重置密码" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "例如. http://example.com (如果为空将使用资源路径)" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" 找到多个匹配的用户" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "你的浏览器不支持内置页框." -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 +#: ckan/authz.py:182 #, python-format -msgid "No such user: %s" -msgstr "没有此用户:%s" +msgid "Authorization function not found: %s" +msgstr "授权功能未找到 %s" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "请检查邮箱中的重置码。" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "管理员" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "无法发送重置链接:%s" +#: ckan/authz.py:198 +msgid "Editor" +msgstr "编辑者" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "没有权限重置密码" +#: ckan/authz.py:202 +msgid "Member" +msgstr "成员" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "无效的重置码。请重试。" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "必须成为系统管理员才能管理" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "您的密码已经被重设." +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "网站标题" -#: ckan/controllers/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "您的密码必需有4个以上字符." +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "风格" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "你输入的密码错误。" +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "网站标签行" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "您必须提供密码" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "网站标签图标" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "没有关注项目" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:640 -msgid "{0} not found" -msgstr "{0} 未找到" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "关于页面文字" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "所有事物" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "介绍文字" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "缺失值" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "主页文字" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "不允许重定向至其它站点。" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "客户化格式" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} 向数据集 {dataset} 添加了标签 {tag}" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "将自定义的CSS插入页面头部" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor} 更新了群组 {group}" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "首页" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor}更新了机构{organization}" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "无法净化组件 %s相关的修订版本%s 包含未刪除的组件 %s" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor}变更了数据集{dataset}" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "清除变更问题%s: %s" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} 变更了数据集{dataset} 中额外的数据{extra} " +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "清理结束" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} 更新了数据集{dataset}的资源{resource}" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "动作未执行." -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} 更新了他们的个人资料" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "没有登陆权限" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor} 删除了群组{group}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "未找到" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor} 删除了机构{organization}" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "错误请求" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} 删除了数据集{dataset}" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "指令名称未知:%s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor}删除了额外的{extra} 数据集 {dataset}" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON 错误:%s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor}从数据集{dataset}删除了资源{resource}" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "错误请求的数据:%s" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor} 建立了群组{group}" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "无法列出此类型的项目:%s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor} 建立了机构 {organization}" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "无法读取此类型的项目:%s" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor} 建立了数据集{dataset}" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "无法创建此类型的新项目:%s %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} 增加了额外{extra}的数据到数据集{dataset}" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "无法在搜索索引中加入组件" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor}增加了资源{resource} 到数据集{dataset}" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "无法更新此类型的项目:%s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} 已登录" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "无法更新搜索索引" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} 从数据集{dataset}删除了标签{tag} " +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "无法删除此类型的项目:%s %s" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor} 开始追随{dataset}" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "没有指定的修改" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor} 开始追随{user}" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "没有关于此id的修改: %s" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor}开始关注{group}" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "遗漏搜索关键字 ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "浏览" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "无法读取参数: %r" -#: ckan/lib/email_notifications.py:103 -msgid "{n} new activity from {site_title}" -msgid_plural "{n} new activities from {site_title}" -msgstr[0] "" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "错误搜索选项: %s" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "一月" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "未知的注册: %s" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "二月" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "格式不正确的 qjson 值: %r" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "三月" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "请求的参数必须用JSON代码的字典格式." -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "四月" +#: ckan/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "未找到群组" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "五月" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "未发现该组织名" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "六月" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "错误的群组类别" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "七月" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "机构" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "八月" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "群组" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "九月" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "标签" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "十月" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "格式" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "十一月" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "授权" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "十二月" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "用户%r没有权限编缉%s" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "刚才" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "没有权限进行批量更新" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins} 分钟前" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "没有权限创立群组" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours} 小时前" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "完整性错误" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days} 天前" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "用户 %r 无权限修改 %s 的授权" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months}月前" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "没有权限删除群组%s" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "{years}年前" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "机构已经被删除." -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "群组已经被删除." -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s 已经被删除" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes}字节" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "没有权限加成员到群组%s" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "没有权限删除群组%s成员" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "群组成员已被删除" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "比较之前选择两个修改版本" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "CKAN 群组修该历史" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "CKAN 群组最新变更" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "日志信息:" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr " 你现在在追随{0}" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "你不再追随{0}" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "没有权限浏览追随者%s" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "本网站目前无法运作. 数据库没有初始化." -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "請 更新你的个人资料 并且加入你的电子邮件地址。" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s用你的电子邮件地址, 若你需要重设你的密码." -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "在gravatar.com更新你的头像" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "未知的" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "参数\"{parameter_name}\"并非整型" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "未命名资源" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "数据集未找到" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "创建新数据集." +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "修改格式无效:%r" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "编辑过的资源." +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "编辑过的设置." +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "没有权限读取组件 %s" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "{number} 浏览" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "CKAN 数据集变更历史" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "{number}最新浏览" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "CKAN 数据集最新变更:" -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "没有权限创建组件" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "没有收件人电子信箱地址!" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "没有权限编缉本资源" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "组织" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "没有权限更新数据集" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "群组" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "数据集 {id} 未找到" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "缺失值" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "你必须添加至少一项数据资源" -#: ckan/lib/navl/validators.py:66 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "预料之外的输入项 %(name)s" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "没有权限创建资源" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "请输入整数" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "资源" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "无法在搜索索引中加入组件" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "组件资源无效" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "无法更新搜索索引" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "额外内容" +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "数据集已被删除" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "标签 \"%s“ 不存在" - -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "用户" +msgid "Unauthorized to delete package %s" +msgstr "没有权限删除组件 %s" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "数据集" - -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "群组" - -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "不合法的 JSON 文件" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "资源已被删除" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "没有权限删除资源 %s" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "机构不存在" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "未找到资源视图" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "你不能向这个机构添加数据集" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "没找到资源数据" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "无效整数" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "没有可下载的内容" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "必须为自然数" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "没有权限读取数据集 %s" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "必须为正整数" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "没有权限读取资源 %s" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "日期格式错误" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "没有权限编辑该资源" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "在 log_message 中不允许超链接" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "未发现该视图" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "数据集id已经存在" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "无法找到该视图类型" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "资源" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "群组名称或 ID 不存在" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "" -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "活动类型" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "没有给定的预览" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "姓名必须为字符串" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "CKAN资料库变更记录" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "这个名称不可使用" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "CKAN资料库最新变更." -#: ckan/logic/validators.py:337 +#: ckan/controllers/revision.py:110 #, python-format -msgid "Must be at least %s characters long" -msgstr "长度不得少于 %s 个字符" +msgid "Datasets affected: %s.\n" +msgstr "受影响的数据集:%s.\n" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "名称最大长度为 %i 字符" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "版本更新" -#: ckan/logic/validators.py:342 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "其他" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "URL已被占用" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "未找到标签" -#: ckan/logic/validators.py:365 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "名称 \"%s\" 的长度小于最小长度 %s" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "没有权限注册为用户" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "名称 \"%s\" 长度大于最大长度 %s" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "没有权限创建用户" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "版本号最大长度为 %i 字符" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "没有权限删除编号为 \"{user_id}\" 的用户" + +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "未指定用户" -#: ckan/logic/validators.py:393 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Duplicate key \"%s\"" -msgstr "重复键值 \"%s\"" +msgid "Unauthorized to edit user %s" +msgstr "没有权限编缉用户%s" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "群组名称已存在" +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "未找到用户" -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "标签 \"%s\" 长度小于最小长度 %s" +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "用户信息已更新" -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:245 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "标签 \"%s\" 长度大于最大长度 %i" +msgid "Unauthorized to create user %s" +msgstr "没有权限创建用户%s" -#: ckan/logic/validators.py:427 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "标签 \"%s\" 仅能包含字母和以下符号:-_" +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "验证码错误。请重试。" -#: ckan/logic/validators.py:435 +#: ckan/controllers/user.py:265 #, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "标签 \"%s\" 不能大写" +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "用户\"%s\"已经注册了但你仍旧已\"%s\"的身份登录着" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "用户名必须为字符串" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "没有权限编辑用户信息" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "登录名不可用" +#: ckan/controllers/user.py:320 +#, python-format +msgid "User %s not authorized to edit %s" +msgstr "用户 %s没有编辑权限%s" -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "请输入两遍密码" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "密码不正确" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "密码必须为字符串" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "旧密码" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "密码长度至少为4位" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "不正确的密码" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" -msgstr "你输入的密码不匹配" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "登录失败。用户名或密码错误。" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "你的编辑无效因为它看上去像是垃圾广告。请移除描述中的超链接。" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "没有权限申请重置密码" -#: ckan/logic/validators.py:619 +#: ckan/controllers/user.py:490 #, python-format -msgid "Name must be at least %s characters long" -msgstr "名称长度至少为 %s 字符" - -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "词汇表名称已被占用" +msgid "\"%s\" matched several users" +msgstr "\"%s\" 找到多个匹配的用户" -#: ckan/logic/validators.py:633 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "无法将键值从 %s 改为 %s。这个键值是只读的。" +msgid "No such user: %s" +msgstr "没有此用户:%s" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "标签词汇未找到。" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "请检查邮箱中的重置码。" -#: ckan/logic/validators.py:655 +#: ckan/controllers/user.py:503 #, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "标签 %s 不属于词汇表 %s" +msgid "Could not send reset link: %s" +msgstr "无法发送重置链接:%s" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "没有标签名称" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "没有权限重置密码" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "标签 %s 已经包含于词汇表 %s" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "无效的重置码。请重试。" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "请提供有效链接" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "您的密码已经被重设." -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "角色不存在。" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "您的密码必需有4个以上字符." -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "没有关联组织的数据集不能设定为私有。" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." +msgstr "你输入的密码错误。" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "非列表" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "您必须提供密码" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "非字符串" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "没有关注项目" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "作为父结点,它将会在层次结构中创造环" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0} 未找到" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "\"filter_fields\" 和 \"filter_values\" 长度应该相同" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "所有事物" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr " \"filter_fields\" 与\"filter_values\"需被同时填写" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "缺失值" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr " \"filter_fields\" 与\"filter_values\"需被同时填写" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "不允许重定向至其它站点。" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} 向数据集 {dataset} 添加了标签 {tag}" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: 创建对象 %s" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor} 更新了群组 {group}" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API:创建组件关系:%s %s %s" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor}更新了机构{organization}" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API:创建成员对象 %s" +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor}变更了数据集{dataset}" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "尝试创建一个机构作为群组" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor} 变更了数据集{dataset} 中额外的数据{extra} " -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "你必须给定一个组件ID或名称 (参数”package“)。" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} 更新了数据集{dataset}的资源{resource}" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "你必须给定一个评分(参数\"rating\")。" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} 更新了他们的个人资料" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "评分必须为整数。" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor} 删除了群组{group}" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "评分必须在%i和%i之间" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} 删除了机构{organization}" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} 删除了数据集{dataset}" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "关注用户前请登录" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor}删除了额外的{extra} 数据集 {dataset}" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "你不能关注自己" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor}从数据集{dataset}删除了资源{resource}" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "你已经关注了 {0}" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor} 建立了群组{group}" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -msgstr "关注数据集前请登录。" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor} 建立了机构 {organization}" -#: ckan/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr "用户{username}不存在" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} 建立了数据集{dataset}" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "关注群组前请登录。" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor} 增加了额外{extra}的数据到数据集{dataset}" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor}增加了资源{resource} 到数据集{dataset}" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API:删除组件 %s" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} 已登录" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API:删除 %s" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} 从数据集{dataset}删除了标签{tag} " -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API:删除成员:%s" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor} 开始追随{dataset}" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "数据中无此ID" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor} 开始追随{user}" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "无法找到词汇表 \"%s\"" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor}开始关注{group}" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "找不到标签 \"%s\"" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "浏览" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -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/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "你并没关注 {0}" +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "一月" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "资源未找到。" +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "二月" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "如果使用「查询」参数则不必详细说明" +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "三月" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr "必须为 : 对" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "四月" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "在 resource_search 中无法辨识「{field}」域" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "五月" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "包未找到。" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "六月" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: 更新对象 %s" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "七月" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: 更新包关系: %s %s %s" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "八月" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "任务状态未找到。" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "九月" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "组织未找到。" +#: ckan/lib/formatters.py:55 +msgid "October" +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/lib/formatters.py:59 +msgid "November" +msgstr "十一月" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "用户 %s没有编辑这些群组的权限" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "十二月" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "用户%s没有权限向这个机构添加新的数据集" +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "刚才" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins} 分钟前" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "本资源中没发现组件,无法授权." +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours} 小时前" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "用户 %s 未被授权在数据集 %s 上创建资源" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days} 天前" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "用户%s没有权限编辑这些组件" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months}月前" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "用户 %s没有权限创立群组" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "{years}年前" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "用户 %s 无权限创建机构" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" -msgstr "用户{user} 没有权限通过 API 创建新用户" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "没有权限创建新用户" +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes}字节" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "未找到群组." +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "需要有效的API Key建立一個組件" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "需要有效的API Key建立一個群組" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "用户 %s没有权限增加成员" +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "用户 %s 没有权限编辑群组%s" +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "用户 %s没有权限删除资源 %s" +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "" +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "用户 %s 无权限删除关联性%s" +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "用户 %s没有权限删除群组" +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "用户 %s没有权限删除群组%s" +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "用户 %s 无权限删除机构" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/delete.py:107 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "用户 %s 无权限删除机构%s" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "用户 %s没有权限删除任务状态" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "未授权的" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "在gravatar.com更新你的头像" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "用户%s没有权限读取这些组件" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "未知的" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "用户%s没有权限读取组件%s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "未命名资源" -#: ckan/logic/auth/get.py:149 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "用户 %s没有权限读取资源 %s" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "创建新数据集." -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "用户 %s 未被授权读取组 %s" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "编辑过的资源." -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "你必须登入才能使用控制台." +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "编辑过的设置." -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "用户 %s没有权限编辑组件%s" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} 浏览" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "用户 %s没有权限编辑资源 %s" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number}最新浏览" -#: ckan/logic/auth/update.py:100 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "用户 %s没有权限变更组件%s状态" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "用户 %s 无权限编辑机构%s" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "没有收件人电子信箱地址!" -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "用户 %s没有权限变更群组%s的状态" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "组织" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "用户 %s没有编辑这些群组%s权限的授权" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "群组" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "编辑用户前必须先登录" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "缺失值" -#: ckan/logic/auth/update.py:197 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to edit user %s" -msgstr "用户 %s没有编辑用户%s的劝限" +msgid "The input field %(name)s was not expected." +msgstr "预料之外的输入项 %(name)s" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "用户 {0} 未被授权 更新用户 {1}" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "请输入整数" -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "用户%s没有授权变更修改状态" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "用户 %s没有权限边更任务状态表" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "组件资源无效" + +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "额外内容" -#: ckan/logic/auth/update.py:239 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "用户 %s没有权限更新翻译字词表格" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "标签 \"%s“ 不存在" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "需要有效的API Key编辑一個組件" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "不合法的 JSON 文件" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "需要有效的API Key编辑一個群組" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "未指定许可证" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "机构不存在" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "你不能向这个机构添加数据集" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "无效整数" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "必须为自然数" -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "必须为正整数" -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "日期格式错误" -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "在 log_message 中不允许超链接" -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "数据集id已经存在" -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "其他(开放)" - -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "其他(公共领域)" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "资源" -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "其他(归因)" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "群组名称或 ID 不存在" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "活动类型" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "姓名必须为字符串" -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "其他(非商业)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "这个名称不可使用" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "其他(非开放)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "长度不得少于 %s 个字符" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 #, python-format -msgid "depends on %s" -msgstr "取决于%s" +msgid "Name must be a maximum of %i characters long" +msgstr "名称最大长度为 %i 字符" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "URL已被占用" + +#: ckan/logic/validators.py:366 #, python-format -msgid "is a dependency of %s" -msgstr "是%s的附属" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "名称 \"%s\" 的长度小于最小长度 %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:370 #, python-format -msgid "derives from %s" -msgstr "来自于%s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "名称 \"%s\" 长度大于最大长度 %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "has derivation %s" -msgstr "拥有来源%s" +msgid "Version must be a maximum of %i characters long" +msgstr "版本号最大长度为 %i 字符" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:394 #, python-format -msgid "links to %s" -msgstr "链接到%s" +msgid "Duplicate key \"%s\"" +msgstr "重复键值 \"%s\"" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "群组名称已存在" + +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "链接自%s" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "标签 \"%s\" 长度小于最小长度 %s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "是%s的子项目" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "标签 \"%s\" 长度大于最大长度 %i" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "是%s的父项目" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "标签 \"%s\" 仅能包含字母和以下符号:-_" -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "拥有同级别项目%s" +msgid "Tag \"%s\" must not be uppercase" +msgstr "标签 \"%s\" 不能大写" -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "读取中..." +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "用户名必须为字符串" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "这个资源中沒有API资料可供读取" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "登录名不可用" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "读取API资讯失败" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "请输入两遍密码" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "沒有匹配的资料" +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "密码必须为字符串" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "开始输入..." +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "密码长度至少为4位" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "输入的內容太短,必须至少输入一个字元" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "你输入的密码不匹配" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "此表格有未保存的修改" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "你的编辑无效因为它看上去像是垃圾广告。请移除描述中的超链接。" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "请确认行动" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "名称长度至少为 %s 字符" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "确定要进行这个操作吗?" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "词汇表名称已被占用" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "确认" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "无法将键值从 %s 改为 %s。这个键值是只读的。" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "取消" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "标签词汇未找到。" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "追随" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "标签 %s 不属于词汇表 %s" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "取消追随" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "没有标签名称" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "上传" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "标签 %s 已经包含于词汇表 %s" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "链接" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "请提供有效链接" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "移除" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "角色不存在。" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "图片" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "没有关联组织的数据集不能设定为私有。" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "网址" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "非列表" -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "文件" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "非字符串" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "从你的电脑上传文件" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "作为父结点,它将会在层次结构中创造环" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "链接到你指明的URL(或者API)" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" 和 \"filter_values\" 长度应该相同" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "资源重排序" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr " \"filter_fields\" 与\"filter_values\"需被同时填写" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "保存排序" +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr " \"filter_fields\" 与\"filter_values\"需被同时填写" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "保存中..." +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "上传文件" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "发生错误" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: 创建对象 %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "上传资源" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API:创建组件关系:%s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "无法上传文件" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API:创建成员对象 %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "无法验证上传" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "尝试创建一个机构作为群组" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "无法取得上传文档的数据" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "你必须给定一个组件ID或名称 (参数”package“)。" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "你正在上传文件。你是否确定要放弃上传而浏览别处?" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "你必须给定一个评分(参数\"rating\")。" + +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "评分必须为整数。" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "评分必须在%i和%i之间" + +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" msgstr "" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "编辑" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "显示更多" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "关注用户前请登录" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "隐藏" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "你不能关注自己" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "错误%(error_code)s" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "你已经关注了 {0}" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "关于{0}" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "关注数据集前请登录。" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr "用户{username}不存在" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "关注群组前请登录。" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" msgstr "" -"Powered by CKAN" - -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "系统管理员设置" - -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "浏览个人资料" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:92 #, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "控制台(%(num)d 新项目)" +msgid "REST API: Delete Package: %s" +msgstr "REST API:删除组件 %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "仪表盘" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API:删除 %s" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "编辑设置" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API:删除成员:%s" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "设置" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "数据中无此ID" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "登出" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "无法找到词汇表 \"%s\"" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "登陆" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "找不到标签 \"%s\"" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "登记" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "取消关注前请登录" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "数据集" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "你并没关注 {0}" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "搜索数据集" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "资源未找到。" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "搜索" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "如果使用「查询」参数则不必详细说明" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr "必须为 : 对" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "读取少" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "在 resource_search 中无法辨识「{field}」域" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "读取多" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "包未找到。" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "没有在此活动流中的活动" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: 更新对象 %s" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "管理" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: 更新包关系: %s %s %s" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "系统管理员" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "任务状态未找到。" -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "配置" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "组织未找到。" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -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/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "你确认要重设系统配置吗?" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "用户 %s没有编辑这些群组的权限" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "重设" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "用户%s没有权限向这个机构添加新的数据集" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "更新配置" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN 配置选项" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "本资源中没发现组件,无法授权." -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:76 #, 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 "确认重设" +msgid "User %s not authorized to create resources on dataset %s" +msgstr "用户 %s 未被授权在数据集 %s 上创建资源" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "管理 CKAN" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "用户%s没有权限编辑这些组件" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:119 #, 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" -"

该链接可以引导您使用系统管理员特性 系统管理员引导

" +msgid "User %s not authorized to create groups" +msgstr "用户 %s没有权限创立群组" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "" +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "用户 %s 无权限创建机构" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "用户{user} 没有权限通过 API 创建新用户" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN 数据 API" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "没有权限创建新用户" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "通过 API 来访问与查询数据" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "未找到群组." -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "需要有效的API Key建立一個組件" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "终端" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "需要有效的API Key建立一個群組" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "用户 %s没有权限增加成员" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "创建" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "用户 %s 没有权限编辑群组%s" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "更新 / 插入" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "用户 %s没有权限删除资源 %s" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "查询" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "查询 (通过 SQL)" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "用户 %s 无权限删除关联性%s" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "查询中" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "用户 %s没有权限删除群组" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "查询实例(头5条结果)" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "用户 %s没有权限删除群组%s" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "查询实例(结果中含 'jones')" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "用户 %s 无权限删除机构" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "查询示例(通过 SQL 语句)" +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "用户 %s 无权限删除机构%s" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "示例:Javascript" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "用户 %s没有权限删除任务状态" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "使用 Jquery 向 数据 API 发起简单的 ajax (JSONP) 请求" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "未授权的" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "示例:Python" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "用户%s没有权限读取这些组件" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "此资源在此刻无法被浏览." +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "用户%s没有权限读取组件%s" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "点击此处看更多信息." +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "用户 %s没有权限读取资源 %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "下载资源" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "用户 %s 未被授权读取组 %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "你的浏览器不支持内置页框." +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "你必须登入才能使用控制台." -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "不支持预览" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "用户 %s没有权限编辑组件%s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "更多详情..." +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "用户 %s没有权限编辑资源 %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:100 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "沒有处理程序定义的资料类型:%(type)s" +msgid "User %s not authorized to change state of package %s" +msgstr "用户 %s没有权限变更组件%s状态" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "标准" +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "用户 %s 无权限编辑机构%s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "标准输入" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "用户 %s没有权限变更群组%s的状态" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "中等" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "用户 %s没有编辑这些群组%s权限的授权" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "中等宽读输入" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "编辑用户前必须先登录" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "完整" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "用户 %s没有编辑用户%s的劝限" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "完整宽度输入" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "用户 {0} 未被授权 更新用户 {1}" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "大型" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "用户%s没有授权变更修改状态" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "大型输入" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "用户 %s没有权限边更任务状态表" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "前置" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "用户 %s没有权限更新翻译字词表格" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "前置输入" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "需要有效的API Key编辑一個組件" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "自定义字段(空)" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "需要有效的API Key编辑一個群組" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "自定义字段" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "未指定许可证" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown标记" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "文字区块" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "选择" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "活动流" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: 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/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "增加群组" +#: ckan/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "群组表单" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: 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/model/license.py:301 +msgid "Other (Open)" +msgstr "其他(开放)" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "确定要删除群组:{name}吗?" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +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 "确定要删除成员:{name}吗?" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "管理" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "编辑群组" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: 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/model/license.py:349 +msgid "Other (Non-Commercial)" +msgstr "其他(非商业)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "追从者" +#: ckan/model/license.py:357 +msgid "Other (Not Open)" +msgstr "其他(非开放)" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "历史" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "取决于%s" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "增加群组" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "是%s的附属" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "搜索群组..." +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "来自于%s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "按名称升序" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "拥有来源%s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "按名称降序" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "链接到%s" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "此网站上目前沒有任何群组" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "链接自%s" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "建立一个群組如何?" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "是%s的子项目" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "回到所有成员" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "是%s的父项目" -#: 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/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "拥有同级别项目%s" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "增加成员" +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "这个资源中沒有API资料可供读取" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "现有的用户" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "读取API资讯失败" -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "如果你想添加一个现有的用户,请在下方搜索其用户名。" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "开始输入..." -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "或" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "沒有匹配的资料" -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "新用户" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "如果你想邀请一个新用户,请输入他的邮件地址。" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "此表格有未保存的修改" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "角色" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "请确认行动" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "你确定要删除此成员吗?" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "确定要进行这个操作吗?" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "删除" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "确认" -#: ckan/templates/group/member_new.html:61 -msgid "Save" -msgstr "保存" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "什么是角色?" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "取消追随" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

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

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

" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +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/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "链接" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "更新群组" +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "链接到你指明的URL(或者API)" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "创建群组" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "上传" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "相关度" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "移除" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "最后修改时间" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "从你的电脑上传文件" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "热门" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "网址" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "搜索数据集..." +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "文件" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "群组{group}中的数据集" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "保存排序" -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "最新修改历史" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "保存中..." -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "名称" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "上传文件" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "我的群组" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "发生错误" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "我的群组" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "无法上传文件" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "描述" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "无法验证上传" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "关于我的群组的一些信息..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "上传资源" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "你确定要删除此群组吗?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "无法取得上传文档的数据" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "保存群组" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "你正在上传文件。你是否确定要放弃上传而浏览别处?" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num} 数据集" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "增加筛选条件" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0数据集" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "浏览{name}" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "编辑" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "从这个群组中移除数据集" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "显示更多" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "什么是群组?" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "隐藏" -#: ckan/templates/group/snippets/helper.html:8 +#: 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 "" -" 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. " +"Powered by CKAN" msgstr "" -"你可以使用 CKAN 提供的群组功能来创建和管理数据集的集合。这可以用来整理同一个项目或者团队的数据集,或者仅是方便其他人搜索到你发布的数据集。" +"Powered by CKAN" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "比较" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "系统管理员设置" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "已删除" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "浏览个人资料" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "读取更多" +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "控制台(%(num)d 新项目)" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "版本" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "仪表盘" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "时间戳" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "编辑设置" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "作者" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "设置" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "日志信息" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "登出" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "欢迎" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +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/

" +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "登记" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "数据集" + +#: ckan/templates/header.html:116 +msgid "Search Datasets" +msgstr "搜索数据集" + +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "搜索" + +#: ckan/templates/page.html:6 +msgid "Skip to content" 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/activity_streams/activity_stream_items.html:9 +msgid "Load less" +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或网站的简单介绍资讯。目前沒有文案,但很快就会有" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "读取多" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "这是一个特殊的区段" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "没有在此活动流中的活动" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "比如 环境" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "管理" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "检索数据" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "系统管理员" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "热门标签" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "配置" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0} 统计" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "垃圾桶" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "数据集" +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "你确认要重设系统配置吗?" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "数据集" +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "重设" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "组织" +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "更新配置" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "群组" +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN 配置选项" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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 "" -"在这里你可以使用Markdown 格式" +"

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/macros/form.html:265 -msgid "This field is required" -msgstr "必须填写" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "确认重设" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "客户化" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "管理 CKAN" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -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实例具有完全控制权。请谨慎操作!

\n" +"

该链接可以引导您使用系统管理员特性 系统管理员引导

" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "必填项" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "图片网址" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "此资源在此刻无法被浏览." -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "清空上传" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "点击此处看更多信息." -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "机构表格" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "下载资源" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "编辑数据集" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "不支持预览" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "增加数据集" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "更多详情..." -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "找到匹配「{query}」的结果" +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "沒有处理程序定义的资料类型:%(type)s" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "未找到匹配「{query}」的结果" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "标准" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "设为公开" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "标准输入" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "设为私有" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "中等" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "草稿" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "中等宽读输入" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "私有的" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "完整" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "该组织没有关联的数据集" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "完整宽度输入" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "你确定要删除机构- {name}?" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +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/development/snippets/form.html:8 +msgid "Large Input" +msgstr "大型输入" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "增加组织" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "前置" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "搜索组织..." +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "前置输入" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "此网站上目前沒有任何机构" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "自定义字段(空)" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "用户名" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "自定义字段" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "Email 地址" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown标记" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "更新成员" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "文字区块" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

管理者:可以新增/编辑和删除数据集,以及管理组织成员。< /p>

编辑:" -" 可以新增和编辑资料集,但无法管理组织成员。

一般成员: " -"可以浏览组织的私有的数据集,但无法新增数据集。

" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "选择" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "创建一个组织" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "活动流" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -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/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "创建组织" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "增加群组" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "增加数据集" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "群组表单" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" +#: ckan/templates/group/confirm_delete.html:3 +#: ckan/templates/group/confirm_delete.html:15 +#: ckan/templates/group/confirm_delete_member.html:3 +#: ckan/templates/group/confirm_delete_member.html:16 +#: ckan/templates/organization/confirm_delete.html:3 +#: ckan/templates/organization/confirm_delete.html:15 +#: ckan/templates/organization/confirm_delete_member.html:3 +#: ckan/templates/organization/confirm_delete_member.html:16 +#: ckan/templates/package/confirm_delete.html:3 +#: ckan/templates/package/confirm_delete.html:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "确认删除" -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "组织是什么?" +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "确定要删除群组:{name}吗?" -#: 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/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/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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "管理" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "编辑群组" + +#: ckan/templates/group/edit_base.html:23 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/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "历史" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "增加群组" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "搜索群组..." + +#: ckan/templates/group/index.html: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:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "增加成员" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "我的组织" +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "现有的用户" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "我的组织" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "如果你想添加一个现有的用户,请在下方搜索其用户名。" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "关于我的组织的一些资讯" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "或" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "你是否确定要删除这个组织?这将会同时删除与组织关联的所有公开以及私有的数据集。" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "新用户" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "保存组织" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "如果你想邀请一个新用户,请输入他的邮件地址。" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "查看{organization_name}" +#: ckan/templates/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "角色" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "创建数据集" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "你确定要删除此成员吗?" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "什么是数据集?" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "删除" -#: ckan/templates/package/base_form_page.html:25 +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "什么是角色?" + +#: ckan/templates/group/member_new.html:80 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. " +"

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

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

" msgstr "" -"一个 CKAN 数据集是指数据资源的集合,并包含其相应的简介和相关信息。它拥有一个固定的 URL 地址。当用户搜索数据时,他们得到的结果均以数据集呈现。" - -#: ckan/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "你确定要删除数据集:{name}吗?" +"

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

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

" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "你确定要删除资源:{name}吗?" +#: 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/package/edit_base.html:16 -msgid "View dataset" -msgstr "浏览数据集" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "更新群组" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "编辑元数据" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +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/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "搜索数据集..." -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "预览" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "群组{group}中的数据集" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "更新" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "最新修改历史" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "将该群组与此数据集关联" +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "名称" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "添加至群组" +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "我的群组" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "没有与此数据集关联的群组" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "我的群组" -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "更新数据集" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "关于我的群组的一些信息..." -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "添加数据至该数据集" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "你确定要删除此群组吗?" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "添加新资源" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +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/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "浏览{name}" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "新资源" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +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/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "什么是群组?" -#: ckan/templates/package/new_view.html:19 +#: ckan/templates/group/snippets/helper.html:8 msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " +" 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/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "新增" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "比较" -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "着是次数据集在%(timestamp)s时发布的较旧的版本。可能会与目前版本有所不同" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "已删除" -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "上传至数据仓库" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "读取更多" + +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "版本" + +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "时间戳" + +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "作者" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "上传错误:" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "日志信息" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "错误:" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "欢迎" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" +#: 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/package/resource_data.html:48 -msgid "Status" -msgstr "状态" - -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "最后更新" - -#: ckan/templates/package/resource_data.html:56 -msgid "Never" -msgstr "从未" - -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "上传日志" - -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "详情" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "欢迎來到CKAN" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -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或网站的简单介绍资讯。目前沒有文案,但很快就会有" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "所有资源" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "这是一个特殊的区段" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "浏览资源" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "比如 环境" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "编辑资源" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "检索数据" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "数据仓库" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "热门标签" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "视图" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} 统计" -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API终端" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "数据集" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "前往资源" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "数据集" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "下栽" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "组织" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "网址" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "群组" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "来自数据集摘要" +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" -#: ckan/templates/package/resource_read.html:71 +#: ckan/templates/macros/form.html:126 #, python-format -msgid "Source: %(dataset)s" -msgstr "来源: %(dataset)s" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "该资源暂时没有视图" +msgid "" +"You can use Markdown formatting here" +msgstr "" +"在这里你可以使用Markdown 格式" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "没有看到期望的视图?" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "必须填写" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "这里列出了一些您未找到期望视图的原因:" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "客户化" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "该资源没有已创建的视图" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "此表格包含无效输入:" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "该站点管理员并没有开启相应的视图插件" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "必填项" -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "其他信息" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "图片网址" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "域" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "清空上传" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "价值" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "机构表格" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "未知" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "编辑数据集" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "创建的" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "增加数据集" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "格式" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "找到匹配「{query}」的结果" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "授权" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "未找到匹配「{query}」的结果" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "新视图" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "设为公开" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "该资源没有视图" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "设为私有" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "添加新资源" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "草稿" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "" -"

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

" +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "私有的" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "应用程式界面" +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "该组织没有关联的数据集" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API文献" +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "你确定要删除机构- {name}?" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "以 {format} 格式完整备份" +#: 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/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/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +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 "您也可以使用%(api_link)s (看 %(api_doc_link)s)注册." +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "搜索组织..." -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "所有视图" +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "此网站上目前沒有任何机构" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "查看视图" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "用户名" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "视图预览" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email 地址" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "其他信息" +#: ckan/templates/organization/member_new.html:61 +msgid "Update Member" +msgstr "更新成员" -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "源" +#: ckan/templates/organization/member_new.html:81 +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/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/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "版本" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "创建一个组织" -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "状态" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "更新组织" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "最近更新" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +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/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add Dataset" +msgstr "增加数据集" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" 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/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "组织是什么?" -#: ckan/templates/package/snippets/cannot_create_package.html:19 +#: ckan/templates/organization/snippets/help.html:7 msgid "" -"Ask a system administrator to create an organization before you can " -"continue." +"

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/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "数据 API" +#: 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/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -msgstr "标题" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "我的组织" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "例如:一个描述性的标题" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "我的组织" -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "例如:我的数据" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "关于我的组织的一些资讯" -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "例如:关于数据的有用信息" +#: ckan/templates/organization/snippets/organization_form.html:60 +msgid "" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "你是否确定要删除这个组织?这将会同时删除与组织关联的所有公开以及私有的数据集。" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "例如:经济,健康,政府" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "保存组织" -#: ckan/templates/package/snippets/package_basic_fields.html:41 +#: 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:22 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 "" -" License definitions and additional information can be found at opendefinition.org " +" 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 "" -"授权协议的定义和其他信息可以参见 opendefinition.org" +"一个 CKAN 数据集是指数据资源的集合,并包含其相应的简介和相关信息。它拥有一个固定的 URL 地址。当用户搜索数据时,他们得到的结果均以数据集呈现。" -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "组织" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "你确定要删除数据集:{name}吗?" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "没有组织" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "你确定要删除资源:{name}吗?" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -msgstr "可见性" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "浏览数据集" -#: ckan/templates/package/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "公开" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "编辑元数据" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -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/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/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +msgid "Preview" +msgstr "预览" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "你确定要删除此数据集吗?" +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "更新" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "下一步:添加数据" +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +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/group_list.html:14 +msgid "Add to group" +msgstr "添加至群组" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +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 "Joe Bloggs" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" +msgstr "更新数据集" -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "作者邮箱" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +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/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "添加新资源" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -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/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "更新资源" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "新资源" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" -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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" +#: 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/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "例如:2011年1月的黄金价格" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "新增" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "关于数据的有用信息" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "着是次数据集在%(timestamp)s时发布的较旧的版本。可能会与目前版本有所不同" -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "例如:CSV, XML, 或者 JSON" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "所有资源" -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "该项将自动填充,您可以留空" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "浏览资源" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "例如:2012-06-05" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "编辑资源" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "文件大小" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "视图" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "例如:1024" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API终端" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME 类型" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "前往资源" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "例如:application/json" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "下栽" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "你确定要删除此资源吗?" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "网址" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "上一步" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +msgstr "来自数据集摘要" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "保存并添加另一个" +#: ckan/templates/package/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "来源: %(dataset)s" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "完成" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "该资源暂时没有视图" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "什么是资源?" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +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/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "这里列出了一些您未找到期望视图的原因:" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "浏览" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" +msgstr "该资源没有已创建的视图" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "更多信息" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "该站点管理员并没有开启相应的视图插件" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" +#: ckan/templates/package/resource_read.html:122 +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/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "该资源暂时不可使用" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "其他信息" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "域" + +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "价值" + +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "未知" + +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "宽度" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "创建的" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "高度" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "格式" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "代码" +#: ckan/templates/package/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "授权" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "资源预览" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "新视图" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "数据与资源" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "该资源没有视图" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "该数据集没有数据" +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "添加新资源" -#: ckan/templates/package/snippets/revisions_table.html:24 +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 #, python-format -msgid "Read dataset as of %s" -msgstr "以%s形式查看数据集" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "创建数据集" +msgid "" +"

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

" +msgstr "" +"

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

" -#: 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/search.html:52 +msgid "API" +msgstr "应用程式界面" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "比如 我的视图" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API文献" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "比如 我的视图的相关信息" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "以 {format} 格式完整备份" -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -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 "您也可以使用%(api_link)s (参见 %(api_doc_link)s)来访问这个注册表或者下载%(dump_link)s" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -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 "您也可以使用%(api_link)s (看 %(api_doc_link)s)注册." -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "筛选" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "所有视图" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "什么是视图?" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View 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/package/view_edit_base.html:37 +msgid "View preview" +msgstr "视图预览" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "差异" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "其他信息" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "版本差异" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "源" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -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/revision/diff.html:54 -msgid "No Differences" -msgstr "没有差异" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "版本" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "版本历史" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "状态" -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "版本" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "最近更新" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -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/revision/read.html:64 -msgid "Changes" -msgstr "变更" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -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/revision/snippets/revisions_list.html:7 -msgid "Entity" -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/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "新的活动项目" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "标题" -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "嵌入数据查看器" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "例如:一个描述性的标题" -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "将下列代码复制到你的网页来嵌入查看器" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "例如:我的数据" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "设定宽和高的像素:" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "例如:关于数据的有用信息" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "宽:" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "例如:经济,健康,政府" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "高:" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"授权协议的定义和其他信息可以参见 opendefinition.org" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "数据推送器 (Datapusher) 状态:{status}。" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "组织" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "Trackback URL" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "没有组织" -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "显示更多{facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "可见性" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "仅显示热门{facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "公开" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "没有匹配该搜索的{facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "动态" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -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/snippets/language_selector.html:4 -msgid "Language" -msgstr "语言" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "你确定要删除此数据集吗?" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "Go" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "下一步:添加数据" -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "没有指定授权" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "该数据集满足开放知识定义的要求" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -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 "Joe Bloggs" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "该数据集没有简介" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "作者邮箱" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -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/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "排序" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "维护者邮箱" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -msgstr "过滤结果" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "更新资源" -#: ckan/templates/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

请重新搜索.

" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" 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/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "例如:2011年1月的黄金价格" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "未找到匹配「{query}」的数据集" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +msgstr "关于数据的有用信息" -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "找到{number}个数据集" +#: ckan/templates/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "例如:CSV, XML, 或者 JSON" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "数据集未找到" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +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/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "例如:2012-06-05" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "未找到匹配「{query}」的群组" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +msgstr "文件大小" -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "找到{number}个群组" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "例如:1024" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "未找到群组" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME 类型" -#: 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/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "例如:application/json" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "\"{query}\"该查询未发现任何组织" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "你确定要删除此资源吗?" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "找到{number}个组织" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "上一步" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "未找到组织" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +msgstr "保存并添加另一个" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "社会" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "完成" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "订阅" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +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:82 -msgid "Email" -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/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "浏览" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "编辑" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "更多信息" -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "搜索标签" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "News feed" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "该资源暂时不可使用" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "我的数据集" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "我的组织" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "我的群组" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "宽度" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "我关注的项目的动态" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "高度" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "你还未创建任何数据集" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "代码" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "现在就创建一个数据集?" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "资源预览" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "你还不是任何群组的成员" +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "数据与资源" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "你还不是任何组织的成员" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +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/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "以%s形式查看数据集" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "账户信息" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +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/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/user/edit_user_form.html:7 -msgid "Change details" -msgstr "变更详情" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "比如 我的视图" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -msgstr "全名" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "比如 我的视图的相关信息" -#: ckan/templates/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "例如:Joe Bloggs" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "移除筛选" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "例如:joe@example.com" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "什么是视图?" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -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/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "订阅提醒邮件" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "差异" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -msgstr "更改密码" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "版本差异" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "差异" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "密码" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "没有差异" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "确认密码" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "版本历史" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "你确定要删除此用户吗?" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "版本" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "你确定想要重新生成API密钥吗?" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "未删除" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "记住API密钥" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "变更" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "更改个人信息" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "数据集标签" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "所有用户" +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +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/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "新的活动项目" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "需要一个账户?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "嵌入数据查看器" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "仅需要几分钟您就能注册一个账户" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "将下列代码复制到你的网页来嵌入查看器" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "创建用户" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "设定宽和高的像素:" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "忘记密码?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "宽:" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "没问题,使用密码恢复功能重置密码。" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "高:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "忘记密码?" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "数据推送器 (Datapusher) 状态:{status}。" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "登出" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "你已经登出。" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "显示更多{facet_type}" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "你已经以{user}的身份登陆了。" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "仅显示热门{facet_type}" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "登出" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "没有匹配该搜索的{facet_type}" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "记住我" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "首页" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "你已经登陆了" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "语言" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Go" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "现在登出" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "没有指定授权" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "注册" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "该数据集满足开放知识定义的要求" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "注册一个账户" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "没有关于次机构的描述" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "为什么注册?" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "该数据集没有简介" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "提交" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "用户名" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "排序" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "全名" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "过滤结果" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "创建用户" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

请重新搜索.

" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "重置您的密码" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -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/user/perform_reset.html:24 -msgid "Update Password" -msgstr "更改密码" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "未找到匹配「{query}」的数据集" -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "它是如何工作的?" +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "找到{number}个数据集" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "数据集未找到" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -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/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "您尚未提交个人信息。" +#: 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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "该用户没有任何记录。" +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "未找到群组" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -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/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "这意味着只有您可以看到该项" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "\"{query}\"该查询未发现任何组织" -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "注册时长" +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "找到{number}个组织" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API 密钥" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "未找到组织" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "重置你的密码" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "社会" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "密码重置" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "订阅" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -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:82 +msgid "Email" +msgstr "邮箱" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "将您的用户名输入文本框,我们将给您发包含链接的送电子邮件以输入新密码。" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "编辑" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "搜索列表" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "搜索标签" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "你没有关注任何内容" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "News feed" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "没有粉丝" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "我的数据集" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "搜索用户" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "我的组织" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "完成" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "我的群组" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "挂起中" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "我关注的项目的动态" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "提交中" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "你还未创建任何数据集" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -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:16 +msgid "Create one now?" +msgstr "现在就创建一个数据集?" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -msgstr "" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "你还不是任何群组的成员" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "数据不合法(比如: 数值越界或数值插入字符字段)" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "你还不是任何组织的成员" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "未发现资源 \"{0}\"" +#: 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 "用户" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "用户{0}未被授权修改资源{1}" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "账户信息" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -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 用户了解你是谁以及你是做什么的。" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -msgstr "测试配置" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "变更详情" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "全名" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "例如:Joe Bloggs" -#: 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 "自定义文字" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "例如:joe@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "自定义文字" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "关于你自己的一些信息" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "国家代码" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "订阅提醒邮件" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "自定义资源文字" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "更改密码" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" msgstr "" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "此群组沒有说明" - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "CKAN的数据预览工具有很多实用功能" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "密码" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "图片url" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +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 (如果为空将使用资源路径)" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "你确定要删除此用户吗?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "你确定想要重新生成API密钥吗?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "表格" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "记住API密钥" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "图" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "更改个人信息" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "所有用户" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -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 "登陆" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "需要一个账户?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "例如:0" +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "仅需要几分钟您就能注册一个账户" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "行数" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "创建用户" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "例如:100" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "忘记密码?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "图片类型" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "没问题,使用密码恢复功能重置密码。" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "忘记密码?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "登出" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "字段类型" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "你已经登出。" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "纬度字段" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "你已经以{user}的身份登陆了。" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "经度字段" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "登出" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "GeoJSON字段" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "记住我" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "你已经登陆了" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "数据集总数" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "现在登出" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "日期" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "注册" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "所有数据集" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "注册一个账户" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "为什么注册?" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "新数据集" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "用户名" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "最高分数据集" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "全名" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "平均评分" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "创建用户" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "评分数目" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "重置您的密码" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "暂无评分" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "密码重置" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "编辑数做多的数据集" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "更改密码" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "编辑数" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "它是如何工作的?" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "最大群组" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "用户尚未创建数据集。" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "数据集数目" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "您尚未提交个人信息。" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "没有群组" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "该用户没有任何记录。" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" msgstr "" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "标签名" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "这意味着只有您可以看到该项" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "数据集数目" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "注册时长" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API 密钥" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "统计目录" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "重置你的密码" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "数据集总数" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "密码重置" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "文本" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "请求重置" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "将您的用户名输入文本框,我们将给您发包含链接的送电子邮件以输入新密码。" + +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" msgstr "" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "网站" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "搜索列表" -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "页面url" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +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/user/snippets/followers.html:9 +msgid "No followers" +msgstr "没有粉丝" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "搜索用户" diff --git a/ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo b/ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo index b4db2f3ea19..abf8ba18ab6 100644 Binary files a/ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo and b/ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/zh_TW/LC_MESSAGES/ckan.po b/ckan/i18n/zh_TW/LC_MESSAGES/ckan.po index 6619bdfce27..24611d1df47 100644 --- a/ckan/i18n/zh_TW/LC_MESSAGES/ckan.po +++ b/ckan/i18n/zh_TW/LC_MESSAGES/ckan.po @@ -1,4477 +1,4573 @@ # Translations template for ckan. -# Copyright (C) 2016 ORGANIZATION +# Copyright (C) 2017 ORGANIZATION # This file is distributed under the same license as the ckan project. -# FIRST AUTHOR , 2016. +# FIRST AUTHOR , 2017. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.6.0b0\n" +"Project-Id-Version: ckan 2.7.0b0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2016-10-18 10:37+0100\n" +"POT-Creation-Date: 2017-06-21 15:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Sol Lee , 2016\n" +"Last-Translator: Adrià Mercader , 2017\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.3.4\n" +"Generated-By: Babel 2.4.0\n" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/authz.py:179 -#, python-format -msgid "Authorization function not found: %s" -msgstr "授權功能未找到:%s" +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "完成" -#: ckan/authz.py:191 ckan/templates/header.html:14 -msgid "Admin" -msgstr "管理者" +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "等待中" -#: ckan/authz.py:195 -msgid "Editor" -msgstr "編輯" +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "上傳中" -#: ckan/authz.py:199 -msgid "Member" -msgstr "成員" +#: ckan/controllers/package.py:659 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "錯誤" -#: ckan/controllers/admin.py:34 -msgid "Need to be system administrator to administer" -msgstr "需要系統管理員來管理" +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "尚未上傳" -#: ckan/controllers/admin.py:50 -msgid "Site Title" -msgstr "網站標題" +#: ckan/controllers/package.py:591 ckan/controllers/package.py:1054 +#: ckan/controllers/package.py:1074 ckan/controllers/package.py:1141 +#: ckan/controllers/package.py:1324 ckan/controllers/package.py:1402 +#: ckan/controllers/package.py:1433 ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1592 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:73 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "資料不存在" -#: ckan/controllers/admin.py:51 -msgid "Style" -msgstr "樣式" +#: ckan/controllers/api.py:64 ckan/controllers/group.py:165 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:143 +#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 +#: ckan/controllers/user.py:57 ckan/controllers/user.py:82 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:594 ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "沒有權限瀏覽此頁面" -#: ckan/controllers/admin.py:52 -msgid "Site Tag Line" -msgstr "網站簡述" +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "上傳至 DataStore" -#: ckan/controllers/admin.py:53 -msgid "Site Tag Logo" -msgstr "網站 LOGO" +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "上傳錯誤:" -#: ckan/controllers/admin.py:54 ckan/templates/group/about.html:3 -#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 -#: 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 "關於" +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "錯誤:" -#: ckan/controllers/admin.py:54 -msgid "About page text" -msgstr "關於頁面文字" +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "錯誤追蹤:" -#: ckan/controllers/admin.py:55 -msgid "Intro Text" -msgstr "簡介文字" +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "狀態" -#: ckan/controllers/admin.py:55 -msgid "Text on home page" -msgstr "首頁的文字" +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "最後更新" -#: ckan/controllers/admin.py:56 -msgid "Custom CSS" -msgstr "客製化CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "從未" -#: ckan/controllers/admin.py:56 -msgid "Customisable css inserted into the page header" -msgstr "在頁首可自行定義的CSS" +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "上傳紀錄" -#: ckan/controllers/admin.py:57 -msgid "Homepage" -msgstr "首頁" +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +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" +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "紀錄尾端" -#: ckan/controllers/admin.py:182 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/controller.py:46 #, python-format -msgid "Problem purging revision %s: %s" -msgstr "程式淨化版本%s: %s" +msgid "format: must be one of %s" +msgstr "" -#: ckan/controllers/admin.py:184 -msgid "Purge complete" -msgstr "淨化完成" +#: ckanext/datastore/controller.py:58 +msgid "DataStore resource not found" +msgstr "資料儲存之資源不存在" -#: ckan/controllers/admin.py:186 -msgid "Action not implemented." -msgstr "動作未執行" +#: ckanext/datastore/backend/postgres.py:1052 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "無效的資料(例如:填入超出範圍的數值,或將數值填入文字欄位中)。" -#: ckan/controllers/api.py:62 ckan/controllers/group.py:166 -#: ckan/controllers/home.py:28 ckan/controllers/package.py:144 -#: ckan/controllers/revision.py:33 ckan/controllers/tag.py:27 -#: ckan/controllers/user.py:58 ckan/controllers/user.py:85 -#: ckan/controllers/user.py:116 ckan/controllers/user.py:594 -#: ckanext/datapusher/plugin.py:68 -msgid "Not authorized to see this page" -msgstr "沒有權限瀏覽此頁面" +#: ckanext/datastore/logic/action.py:262 ckanext/datastore/logic/action.py:290 +#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:459 +#: ckanext/datastore/logic/action.py:534 ckanext/datastore/logic/action.py:559 +msgid "Resource \"{0}\" was not found." +msgstr "資源 \"{0}\" 不存在。" -#: ckan/controllers/api.py:122 ckan/controllers/api.py:219 -msgid "Access denied" -msgstr "拒絕存取" +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "使用者{0}沒有權限更新資源{1}" -#: ckan/controllers/api.py:128 ckan/controllers/api.py:228 -#: ckan/logic/action/create.py:896 ckan/logic/converters.py:121 -#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 -#: ckan/logic/validators.py:148 ckan/logic/validators.py:169 -#: ckan/logic/validators.py:190 ckan/logic/validators.py:199 -#: ckan/logic/validators.py:213 ckan/logic/validators.py:230 -#: ckan/logic/validators.py:243 ckan/logic/validators.py:267 -#: ckan/logic/validators.py:705 -msgid "Not found" -msgstr "找不到資料" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:19 +msgid "CKAN Data API" +msgstr "CKAN資料API" -#: ckan/controllers/api.py:134 -msgid "Bad request" -msgstr "錯誤請求" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:23 +msgid "Access resource data via a web API with powerful query support" +msgstr "透過一擁有強大查詢功能支援的網路API來存取資源之資料" -#: ckan/controllers/api.py:168 -#, python-format -msgid "Action name not known: %s" -msgstr "未知的指令名稱:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"進一步的資訊位於 CKAN 資料 API 與 DataStore 文件

" -#: ckan/controllers/api.py:189 ckan/controllers/api.py:360 -#: ckan/controllers/api.py:423 -#, python-format -msgid "JSON Error: %s" -msgstr "錯誤的JSON:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:33 +msgid "Endpoints" +msgstr "終端點" -#: ckan/controllers/api.py:195 -#, python-format -msgid "Bad request data: %s" -msgstr "錯誤請求的資料:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:37 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "可使用下列之CKAN action API所提供的功能來存取資料API。" -#: ckan/controllers/api.py:298 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "無法列出此類型的物件:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:42 +msgid "Create" +msgstr "建立" -#: ckan/controllers/api.py:327 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "無法讀取此類型的物件:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:46 +msgid "Update / Insert" +msgstr "更新 / 插入" -#: ckan/controllers/api.py:365 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "無法建立新的此類型物件:%s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:50 +msgid "Query" +msgstr "查詢" -#: ckan/controllers/api.py:398 -msgid "Unable to add package to search index" -msgstr "無法在搜尋索引中加入組件" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:54 +msgid "Query (via SQL)" +msgstr "查詢 (透過SQL)" -#: ckan/controllers/api.py:428 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "無法更新此類型的物件:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:66 +msgid "Querying" +msgstr "查詢" -#: ckan/controllers/api.py:452 -msgid "Unable to update search index" -msgstr "無法更新搜尋索引" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:70 +msgid "Query example (first 5 results)" +msgstr "查詢之範例 (前5個結果)" -#: ckan/controllers/api.py:475 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "無法刪除此類型的物件:%s %s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:75 +msgid "Query example (results containing 'jones')" +msgstr "查詢之範例 (包含字串 'jones' 的結果)" -#: ckan/controllers/api.py:498 -msgid "No revision specified" -msgstr "不得修改規定" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:80 +msgid "Query example (via SQL statement)" +msgstr "查詢之範例 (透過SQL指令敘述)" -#: ckan/controllers/api.py:502 -#, python-format -msgid "There is no revision with id: %s" -msgstr "此id沒有更動:%s" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:91 +msgid "Example: Javascript" +msgstr "範例:Javascript" -#: ckan/controllers/api.py:512 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "遺漏搜索關鍵字 ('since_id=UUID' or 'since_time=TIMESTAMP')" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:95 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "使用jQuery對資料API發出一個簡單的ajax(JSONP)請求。" -#: ckan/controllers/api.py:524 -#, python-format -msgid "Could not read parameters: %r" -msgstr "無法讀取參數:%r" +#: ckanext/datastore/templates/ajax_snippets/api_info.html:116 +msgid "Example: Python" +msgstr "範例:Python" -#: ckan/controllers/api.py:585 -#, python-format -msgid "Bad search option: %s" -msgstr "錯誤的搜尋選項:%s" +#: ckanext/datastore/templates/datastore/dictionary.html:16 +msgid "Field {num}." +msgstr "" -#: ckan/controllers/api.py:588 -#, python-format -msgid "Unknown register: %s" -msgstr "未知的註冊:%s" +#: ckanext/datastore/templates/datastore/dictionary.html:18 +#: ckanext/datastore/templates/package/resource_read.html:20 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" -#: ckan/controllers/api.py:597 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "畸形的 qjson 值: %r" +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:32 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates/datastore/dictionary.html:21 +#: ckanext/datastore/templates/package/resource_read.html:21 +msgid "Description" +msgstr "說明" -#: ckan/controllers/api.py:607 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "請求的參數必須是一個JSON編碼的形式。" +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates/datastore/dictionary.html:26 +msgid "Save" +msgstr "儲存" -#: ckan/controllers/feed.py:227 ckan/controllers/group.py:138 -#: ckan/controllers/group.py:225 ckan/controllers/group.py:401 -#: ckan/controllers/group.py:509 ckan/controllers/group.py:542 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:583 -#: ckan/controllers/group.py:637 ckan/controllers/group.py:654 -#: ckan/controllers/group.py:706 ckan/controllers/group.py:738 -#: ckan/controllers/group.py:771 ckan/controllers/group.py:828 -#: ckan/controllers/group.py:925 ckan/controllers/package.py:1251 -#: ckan/controllers/package.py:1266 ckan/logic/action/create.py:1384 -msgid "Group not found" -msgstr "群組不存在" +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" -#: ckan/controllers/feed.py:238 ckan/logic/action/create.py:1384 -msgid "Organization not found" -msgstr "組織不存在" +#: ckanext/datastore/templates/package/resource_read.html:18 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" -#: ckan/controllers/group.py:140 ckan/controllers/group.py:586 -msgid "Incorrect group type" -msgstr "錯誤的群組類型" +#: ckanext/datastore/templates/package/resource_read.html:19 +msgid "Type" +msgstr "" -#: ckan/controllers/group.py:306 ckan/controllers/home.py:69 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:803 -#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "組織" +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:8 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "讀取中..." -#: ckan/controllers/group.py:307 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:804 -#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 -#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 -#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 -#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 -#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 -#: ckan/templates/header.html:105 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:20 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "群組" +#: ckanext/datastore/templates/package/snippets/data_api_button.html:10 +msgid "Data API" +msgstr "資料API" -#: ckan/controllers/group.py:308 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:805 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "標籤" +#: ckanext/datatablesview/plugin.py:46 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "表格" -#: ckan/controllers/group.py:309 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:806 -msgid "Formats" -msgstr "格式" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" -#: ckan/controllers/group.py:310 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:807 -msgid "Licenses" -msgstr "授權" +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" -#: ckan/controllers/group.py:448 -msgid "Not authorized to perform bulk update" -msgstr "未被授權批次更新" +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" -#: ckan/controllers/group.py:466 -msgid "Unauthorized to create a group" -msgstr "沒有權限建立群組" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "每頁顯示資料集數量" -#: ckan/controllers/group.py:518 ckan/controllers/package.py:333 -#: ckan/controllers/package.py:780 ckan/controllers/package.py:1396 -#: ckan/controllers/package.py:1430 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "使用者 %r 無權修改 %s" +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "測試設定" -#: ckan/controllers/group.py:544 ckan/controllers/group.py:574 -#: ckan/controllers/package.py:935 ckan/controllers/package.py:983 -#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 -#: ckan/controllers/user.py:548 -msgid "Integrity Error" -msgstr "完整性錯誤" +#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 +#: ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "關聯" -#: ckan/controllers/group.py:600 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "使用者 %r 無權修改 %s 的權限" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:97 +#: 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/controllers/group.py:620 ckan/controllers/group.py:635 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "沒有刪除%s群組的權限" +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 +#: ckan/templates/organization/bulk_process.html:98 +#: 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/controllers/group.py:626 -msgid "Organization has been deleted." -msgstr "此組織已被刪除" +#: ckan/templates/group/read.html:18 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:51 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "最後修改" -#: ckan/controllers/group.py:628 -msgid "Group has been deleted." -msgstr "此群組已被刪除" +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "客製化欄位(遞增排序)" -#: ckan/controllers/group.py:630 -#, python-format -msgid "%s has been deleted." -msgstr "%s 已被刪除。" +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "客製化欄位(遞減排序)" -#: ckan/controllers/group.py:704 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "沒有在群組%s中新增成員的權限" +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 +#: ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "熱門的" -#: ckan/controllers/group.py:723 ckan/controllers/group.py:736 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "沒有刪除群組%s中成員的權限" +#: 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 "客製化文本" -#: ckan/controllers/group.py:730 -msgid "Group member has been deleted." -msgstr "群組成員已被刪除" +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "客製化文本" -#: ckan/controllers/group.py:754 ckan/controllers/package.py:421 -msgid "Select two revisions before doing the comparison." -msgstr "挑選兩種版本,然後進行比對。" +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "國家/地區代碼" -#: ckan/controllers/group.py:778 -msgid "CKAN Group Revision History" -msgstr "CKAN群組版本歷史紀錄" +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "客製化的資料描述" -#: ckan/controllers/group.py:782 -msgid "Recent changes to CKAN Group: " -msgstr "CKAN群組最近的更新:" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "此為未被翻譯的字串" -#: ckan/controllers/group.py:803 ckan/controllers/package.py:472 -msgid "Log message: " -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/controllers/group.py:853 ckan/controllers/package.py:1179 -#: ckan/controllers/user.py:715 -msgid "You are now following {0}" -msgstr "你正在關注{0}" +#: 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/controllers/group.py:873 ckan/controllers/package.py:1198 -#: ckan/controllers/user.py:735 -msgid "You are no longer following {0}" -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 "0資料集" -#: ckan/controllers/group.py:893 ckan/controllers/user.py:580 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "沒有檢視跟隨者%s的權限" +#: 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/controllers/home.py:36 -msgid "This site is currently off-line. Database is not initialised." -msgstr "本網站目前無法運作。資料庫沒有初始化。" +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:23 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "追蹤者" -#: ckan/controllers/home.py:81 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "請 更新你的個人資料 並輸入你的電子郵件地址。" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "資料" -#: ckan/controllers/home.py:83 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "%s 使用你的電子郵件地址,如果你需要重設密碼。" +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckanext/imageview/plugin.py:31 +msgid "Image" +msgstr "圖片" -#: ckan/controllers/package.py:290 -msgid "Invalid search query: {error_message}" -msgstr "無效的搜尋:{error_message}" +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "圖片 URL" -#: ckan/controllers/package.py:307 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "參數\"{parameter_name}\"並不是整數" +#: 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)" -#: ckan/controllers/package.py:331 ckan/controllers/package.py:339 -#: ckan/controllers/package.py:377 ckan/controllers/package.py:441 -#: ckan/controllers/package.py:766 ckan/controllers/package.py:814 -#: ckan/controllers/package.py:832 ckan/controllers/package.py:933 -#: ckan/controllers/package.py:981 ckan/controllers/package.py:1033 -#: ckan/controllers/package.py:1075 ckan/controllers/package.py:1223 -#: ckan/controllers/package.py:1239 ckan/controllers/package.py:1303 -#: ckan/controllers/package.py:1402 ckan/controllers/package.py:1437 -#: ckan/controllers/package.py:1544 -msgid "Dataset not found" -msgstr "資料集不存在" +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "資料瀏覽器" -#: ckan/controllers/package.py:365 ckan/controllers/package.py:367 -#: ckan/controllers/package.py:369 -#, python-format -msgid "Invalid revision format: %r" -msgstr "無效的版本格式:%r" +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +msgid "Graph" +msgstr "圖表" -#: ckan/controllers/package.py:402 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "無法以 {format} 格式瀏覽 {package_type} 類型的資料集(找不到模板檔案:{file})。" +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +msgid "Map" +msgstr "地圖" -#: ckan/controllers/package.py:439 ckan/controllers/package.py:830 -#: ckan/controllers/package.py:931 ckan/controllers/package.py:979 -#: ckan/controllers/package.py:1225 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "沒有權限讀取組件%s" +#: ckanext/reclineview/theme/public/recline_view.js:28 +msgid "error loading view" +msgstr "讀取資料檢視發生錯誤" -#: ckan/controllers/package.py:448 -msgid "CKAN Dataset Revision History" -msgstr "CKAN資料集版本歷史紀錄" +#: ckanext/reclineview/theme/public/recline_view.js:75 +msgid "Could not load view" +msgstr "" -#: ckan/controllers/package.py:451 -msgid "Recent changes to CKAN Dataset: " -msgstr "CKAN資料集最近的更新:" +#: ckanext/reclineview/theme/public/recline_view.js:77 +msgid "DataStore returned an error" +msgstr "" -#: ckan/controllers/package.py:507 -msgid "Unauthorized to create a package" -msgstr "沒有權限建立組件" +#: ckanext/reclineview/theme/public/recline_view.js:79 +msgid "DataProxy returned an error" +msgstr "" -#: ckan/controllers/package.py:577 -msgid "Unauthorized to edit this resource" -msgstr "沒有編輯該資源的權限" +#: ckanext/reclineview/theme/public/recline_view.js:193 +msgid "Grid" +msgstr "" -#: ckan/controllers/package.py:600 ckan/controllers/package.py:1062 -#: ckan/controllers/package.py:1082 ckan/controllers/package.py:1149 -#: ckan/controllers/package.py:1333 ckan/controllers/package.py:1411 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1550 -#: ckan/controllers/package.py:1601 ckanext/datapusher/plugin.py:59 -#: ckanext/resourceproxy/controller.py:33 -msgid "Resource not found" -msgstr "資料不存在" +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +msgid "Filters" +msgstr "篩選條件" -#: ckan/controllers/package.py:654 -msgid "Unauthorized to update dataset" -msgstr "沒有更新資料集的權限" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "資料列偏移量" -#: ckan/controllers/package.py:656 ckan/controllers/package.py:693 -#: ckan/controllers/package.py:722 -msgid "The dataset {id} could not be found." -msgstr "找不到 {id} 資料集." +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "例如:0" -#: ckan/controllers/package.py:660 -msgid "You must add at least one data resource" -msgstr "你必須至少新增一個資源" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "顯示資料列數量" -#: ckan/controllers/package.py:668 ckanext/datapusher/helpers.py:24 -msgid "Error" -msgstr "錯誤" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "例如:100" -#: ckan/controllers/package.py:691 -msgid "Unauthorized to create a resource" -msgstr "沒有建立資源的權限" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "圖表類型" -#: ckan/controllers/package.py:727 -msgid "Unauthorized to create a resource for this package" -msgstr "沒有為此資料集建立資源的權限" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "群組(軸 1)" -#: ckan/controllers/package.py:941 -msgid "Unable to add package to search index." -msgstr "無法在搜尋索引中添加組件" +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "數列(軸 2)" -#: ckan/controllers/package.py:989 -msgid "Unable to update search index." -msgstr "無法更新搜尋索引" +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "欄位類型" -#: ckan/controllers/package.py:1026 -msgid "Dataset has been deleted." -msgstr "資料集已被刪除" +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "緯度欄位" -#: ckan/controllers/package.py:1031 ckan/controllers/package.py:1049 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "沒有刪除%s組件的權限" +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "經度欄位" -#: ckan/controllers/package.py:1054 -msgid "Resource has been deleted." -msgstr "此資源已被刪除" +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON 欄位" -#: ckan/controllers/package.py:1060 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "沒有刪除資源%s的權限" +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "自動縮放至圖徵 (features)" -#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1563 -msgid "Resource view not found" -msgstr "資料檢視不存在" +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "將附近的圖徵 (features) 標記為叢集" -#: ckan/controllers/package.py:1158 -msgid "Resource data not found" -msgstr "找不到資料" +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "資料集總數" -#: ckan/controllers/package.py:1167 -msgid "No download is available" -msgstr "下載不存在" +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "日期" -#: ckan/controllers/package.py:1305 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "沒有讀取資料集%s的權限" +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "所有資料集" -#: ckan/controllers/package.py:1413 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "沒有權限讀取資料%s" +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "資料集平均每週更新的次數" -#: ckan/controllers/package.py:1477 -msgid "Unauthorized to edit resource" -msgstr "沒有編輯資料的權限" +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "所有資料集的更新版本" -#: ckan/controllers/package.py:1495 -msgid "View not found" -msgstr "資料檢視不存在" +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "新資料集" -#: ckan/controllers/package.py:1501 -msgid "View Type Not found" -msgstr "資料檢視類型不存在" +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "評分最高的資料集" -#: ckan/controllers/package.py:1557 -msgid "Bad resource view data" -msgstr "資料檢視描述不正確" +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "平均評分" -#: ckan/controllers/package.py:1566 -msgid "Resource view not supplied" -msgstr "沒有可用的資料檢視" +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "參與評分的人數" -#: ckan/controllers/package.py:1595 -msgid "No preview has been defined." -msgstr "已設定為無預覽" +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "無人參與評分" -#: ckan/controllers/revision.py:44 -msgid "CKAN Repository Revision History" -msgstr "CKAN 資料庫版本歷史紀錄" +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "最多編輯次數的資料集" -#: ckan/controllers/revision.py:46 -msgid "Recent changes to the CKAN repository." -msgstr "CKAN資料庫的最近更新。" +#: ckan/logic/converters.py:146 ckan/logic/validators.py:149 +#: ckan/logic/validators.py:191 ckan/templates/package/read_base.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "資料集" -#: ckan/controllers/revision.py:110 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "受影響的資料集 : %s.\n" +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "編輯次數" -#: ckan/controllers/revision.py:190 -msgid "Revision updated" -msgstr "版本更新" +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "沒有編輯過的資料集" -#: ckan/controllers/tag.py:60 -msgid "Other" -msgstr "其他" +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "擁有最多資料集的的群組" -#: ckan/controllers/tag.py:74 -msgid "Tag not found" -msgstr "標籤不存在" +#: ckan/logic/converters.py:171 ckan/logic/validators.py:244 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "群組" -#: ckan/controllers/user.py:83 ckan/controllers/user.py:232 -#: ckan/controllers/user.py:247 ckan/controllers/user.py:314 -#: ckan/controllers/user.py:377 ckan/controllers/user.py:524 -#: ckan/controllers/user.py:546 ckan/logic/auth/update.py:178 -msgid "User not found" -msgstr "使用者不存在" +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "資料集數目" -#: ckan/controllers/user.py:161 -msgid "Unauthorized to register as a user." -msgstr "無權登錄為用戶." +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "沒有群組" -#: ckan/controllers/user.py:179 -msgid "Unauthorized to create a user" -msgstr "沒有權限建立使用者" +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "最熱門的標籤" -#: ckan/controllers/user.py:210 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "沒有刪除使用者 id \"{user_id}\" 的權限。" +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "標籤名稱" -#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 -msgid "No user specified" -msgstr "沒有使用者的詳細說明" +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "資料集數量" -#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 -#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "沒有權限修改使用者%s" +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "建立最多資料集的使用者" -#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 -msgid "Profile updated" -msgstr "個人資料更新" +#: ckan/logic/converters.py:121 ckan/logic/validators.py:214 +#: ckan/logic/validators.py:231 ckan/logic/validators.py:706 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "使用者" -#: ckan/controllers/user.py:245 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "沒有權限建立使用者%s" +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "統計目錄" -#: ckan/controllers/user.py:251 -msgid "Bad Captcha. Please try again." -msgstr "驗證碼錯誤,請再試一次。" +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "所有資料集總數" -#: ckan/controllers/user.py:265 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "使用者 \"%s\" 已經註冊,但你仍以 \"%s\" 登入中" +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "文字檔案" -#: ckan/controllers/user.py:293 -msgid "Unauthorized to edit a user." -msgstr "無權修改使用者." +#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 +msgid "Website" +msgstr "網站" -#: ckan/controllers/user.py:320 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "使用者%s無權修改%s" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "網頁 URL" -#: ckan/controllers/user.py:385 -msgid "Password entered was incorrect" -msgstr "輸入密碼錯誤" +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "例如: http://example.com(若留白則使用資料的 URL)" -#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 -msgid "Old Password" -msgstr "舊密碼" +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:56 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "你的瀏覽器不支援此頁框" -#: ckan/controllers/user.py:386 -msgid "incorrect password" -msgstr "錯誤的密碼" +#: ckan/authz.py:182 +#, python-format +msgid "Authorization function not found: %s" +msgstr "授權功能未找到:%s" -#: ckan/controllers/user.py:427 -msgid "Login failed. Bad username or password." -msgstr "登入失敗,使用者名稱或密碼錯誤。" +#: ckan/authz.py:194 ckan/templates/header.html:14 +msgid "Admin" +msgstr "管理者" -#: ckan/controllers/user.py:461 -msgid "Unauthorized to request reset password." -msgstr "無權要求重設密碼." +#: ckan/authz.py:198 +msgid "Editor" +msgstr "編輯" -#: ckan/controllers/user.py:490 -#, python-format -msgid "\"%s\" matched several users" -msgstr "\"%s\" 找到多個使用者" +#: ckan/authz.py:202 +msgid "Member" +msgstr "成員" -#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 -#, python-format -msgid "No such user: %s" -msgstr "沒有這個使用者: %s" +#: ckan/controllers/admin.py:34 +msgid "Need to be system administrator to administer" +msgstr "需要系統管理員來管理" -#: ckan/controllers/user.py:499 -msgid "Please check your inbox for a reset code." -msgstr "請至你的收件夾查看重設的密碼。" +#: ckan/controllers/admin.py:50 +msgid "Site Title" +msgstr "網站標題" -#: ckan/controllers/user.py:503 -#, python-format -msgid "Could not send reset link: %s" -msgstr "無法寄送重設的連結: %s" +#: ckan/controllers/admin.py:51 +msgid "Style" +msgstr "樣式" -#: ckan/controllers/user.py:516 -msgid "Unauthorized to reset password." -msgstr "無權重設密碼." +#: ckan/controllers/admin.py:52 +msgid "Site Tag Line" +msgstr "網站簡述" -#: ckan/controllers/user.py:528 -msgid "Invalid reset key. Please try again." -msgstr "無效的重設金鑰,請再試一次。" +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "網站 LOGO" -#: ckan/controllers/user.py:541 -msgid "Your password has been reset." -msgstr "你的密碼已經重設。" +#: ckan/controllers/admin.py:55 ckan/templates/group/about.html:3 +#: ckan/templates/group/read_base.html:19 ckan/templates/header.html:106 +#: 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/user.py:562 -msgid "Your password must be 4 characters or longer." -msgstr "你的密碼必須在四個字元以上。" +#: ckan/controllers/admin.py:55 +msgid "About page text" +msgstr "關於頁面文字" -#: ckan/controllers/user.py:565 -msgid "The passwords you entered do not match." -msgstr "你輸入的密碼不正確" +#: ckan/controllers/admin.py:56 +msgid "Intro Text" +msgstr "簡介文字" -#: ckan/controllers/user.py:568 -msgid "You must provide a password" -msgstr "你必須提供一組密碼" +#: ckan/controllers/admin.py:56 +msgid "Text on home page" +msgstr "首頁的文字" -#: ckan/controllers/user.py:636 -msgid "Follow item not found" -msgstr "跟隨的物件不存在" +#: ckan/controllers/admin.py:57 +msgid "Custom CSS" +msgstr "客製化CSS" -#: ckan/controllers/user.py:640 -msgid "{0} not found" -msgstr "{0}不存在" +#: ckan/controllers/admin.py:57 +msgid "Customisable css inserted into the page header" +msgstr "在頁首可自行定義的CSS" -#: ckan/controllers/user.py:654 -msgid "Everything" -msgstr "所有事物" +#: ckan/controllers/admin.py:58 +msgid "Homepage" +msgstr "首頁" -#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 -msgid "Missing Value" -msgstr "遺漏的值" +#: ckan/controllers/admin.py:161 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "無法淨化組件 %s相關的修訂版本%s 包含未刪除的組件 %s" -#: ckan/controllers/util.py:23 -msgid "Redirecting to external site is not allowed." -msgstr "禁止重新導向至外部網站。" +#: ckan/controllers/admin.py:183 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "程式淨化版本%s: %s" -#: ckan/lib/activity_streams.py:60 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor}在{dataset}資料集中新增了{tag}標籤" +#: ckan/controllers/admin.py:185 +msgid "Purge complete" +msgstr "淨化完成" -#: ckan/lib/activity_streams.py:63 -msgid "{actor} updated the group {group}" -msgstr "{actor}更新了{group}群組" +#: ckan/controllers/admin.py:187 +msgid "Action not implemented." +msgstr "動作未執行" -#: ckan/lib/activity_streams.py:66 -msgid "{actor} updated the organization {organization}" -msgstr "{actor}更新了{organization}組織" +#: ckan/controllers/api.py:124 ckan/controllers/api.py:221 +msgid "Access denied" +msgstr "拒絕存取" -#: ckan/lib/activity_streams.py:69 -msgid "{actor} updated the dataset {dataset}" -msgstr "{actor}更新了{dataset}" +#: ckan/controllers/api.py:130 ckan/controllers/api.py:230 +#: ckan/logic/action/create.py:908 ckan/logic/converters.py:121 +#: ckan/logic/converters.py:146 ckan/logic/converters.py:171 +#: ckan/logic/validators.py:149 ckan/logic/validators.py:170 +#: ckan/logic/validators.py:191 ckan/logic/validators.py:200 +#: ckan/logic/validators.py:214 ckan/logic/validators.py:231 +#: ckan/logic/validators.py:244 ckan/logic/validators.py:268 +#: ckan/logic/validators.py:706 +msgid "Not found" +msgstr "找不到資料" -#: ckan/lib/activity_streams.py:72 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor}變更了{dataset}資料集中的{extra}擴充物件" +#: ckan/controllers/api.py:136 +msgid "Bad request" +msgstr "錯誤請求" -#: ckan/lib/activity_streams.py:75 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor}更新了{dataset}資料集中的{resource}資源" +#: ckan/controllers/api.py:170 +#, python-format +msgid "Action name not known: %s" +msgstr "未知的指令名稱:%s" -#: ckan/lib/activity_streams.py:78 -msgid "{actor} updated their profile" -msgstr "{actor} 更新了基本資料" +#: ckan/controllers/api.py:191 ckan/controllers/api.py:362 +#: ckan/controllers/api.py:425 +#, python-format +msgid "JSON Error: %s" +msgstr "錯誤的JSON:%s" -#: ckan/lib/activity_streams.py:81 -msgid "{actor} deleted the group {group}" -msgstr "{actor}刪除了{group}群組" +#: ckan/controllers/api.py:197 +#, python-format +msgid "Bad request data: %s" +msgstr "錯誤請求的資料:%s" -#: ckan/lib/activity_streams.py:84 -msgid "{actor} deleted the organization {organization}" -msgstr "{actor}刪除了{organization}組織" +#: ckan/controllers/api.py:300 +#, python-format +msgid "Cannot list entity of this type: %s" +msgstr "無法列出此類型的物件:%s" -#: ckan/lib/activity_streams.py:87 -msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor}刪除了{dataset}資料集" +#: ckan/controllers/api.py:329 +#, python-format +msgid "Cannot read entity of this type: %s" +msgstr "無法讀取此類型的物件:%s" -#: ckan/lib/activity_streams.py:90 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor}刪除了{dataset}資料集中的{extra}擴充物件" +#: ckan/controllers/api.py:367 +#, python-format +msgid "Cannot create new entity of this type: %s %s" +msgstr "無法建立新的此類型物件:%s %s" -#: ckan/lib/activity_streams.py:93 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor}刪除了{dataset}資料集中的{resource}資源" +#: ckan/controllers/api.py:400 +msgid "Unable to add package to search index" +msgstr "無法在搜尋索引中加入組件" -#: ckan/lib/activity_streams.py:97 -msgid "{actor} created the group {group}" -msgstr "{actor}建立了{group}群組" +#: ckan/controllers/api.py:430 +#, python-format +msgid "Cannot update entity of this type: %s" +msgstr "無法更新此類型的物件:%s" -#: ckan/lib/activity_streams.py:100 -msgid "{actor} created the organization {organization}" -msgstr "{actor}建立了{organization}組織" +#: ckan/controllers/api.py:454 +msgid "Unable to update search index" +msgstr "無法更新搜尋索引" -#: ckan/lib/activity_streams.py:103 -msgid "{actor} created the dataset {dataset}" -msgstr "{actor}建立了{dataset}資料集" +#: ckan/controllers/api.py:477 +#, python-format +msgid "Cannot delete entity of this type: %s %s" +msgstr "無法刪除此類型的物件:%s %s" -#: ckan/lib/activity_streams.py:106 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor}在{dataset}資料集中新增了{extra}擴充物件" +#: ckan/controllers/api.py:500 +msgid "No revision specified" +msgstr "不得修改規定" -#: ckan/lib/activity_streams.py:109 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor}在{dataset}資料集中新增了{resource}資源" +#: ckan/controllers/api.py:504 +#, python-format +msgid "There is no revision with id: %s" +msgstr "此id沒有更動:%s" -#: ckan/lib/activity_streams.py:112 -msgid "{actor} signed up" -msgstr "{actor} 已登錄" +#: ckan/controllers/api.py:514 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "遺漏搜索關鍵字 ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/lib/activity_streams.py:115 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor}移除了{dataset}資料集中的{tag}標籤" +#: ckan/controllers/api.py:526 +#, python-format +msgid "Could not read parameters: %r" +msgstr "無法讀取參數:%r" -#: ckan/lib/activity_streams.py:118 -msgid "{actor} started following {dataset}" -msgstr "{actor}開始關注{dataset}資料集" +#: ckan/controllers/api.py:587 +#, python-format +msgid "Bad search option: %s" +msgstr "錯誤的搜尋選項:%s" -#: ckan/lib/activity_streams.py:121 -msgid "{actor} started following {user}" -msgstr "{actor}開始關注{user}使用者" +#: ckan/controllers/api.py:590 +#, python-format +msgid "Unknown register: %s" +msgstr "未知的註冊:%s" -#: ckan/lib/activity_streams.py:124 -msgid "{actor} started following {group}" -msgstr "{actor}開始關注{group}群組" +#: ckan/controllers/api.py:599 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "畸形的 qjson 值: %r" -#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "瀏覽" +#: ckan/controllers/api.py:609 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "請求的參數必須是一個JSON編碼的形式。" -#: 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/controllers/feed.py:233 ckan/controllers/group.py:137 +#: ckan/controllers/group.py:225 ckan/controllers/group.py:393 +#: ckan/controllers/group.py:503 ckan/controllers/group.py:536 +#: ckan/controllers/group.py:566 ckan/controllers/group.py:577 +#: ckan/controllers/group.py:631 ckan/controllers/group.py:649 +#: ckan/controllers/group.py:707 ckan/controllers/group.py:739 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:829 +#: ckan/controllers/group.py:926 ckan/controllers/package.py:1243 +#: ckan/controllers/package.py:1258 ckan/logic/action/create.py:1396 +msgid "Group not found" +msgstr "群組不存在" -#: ckan/lib/formatters.py:19 -msgid "January" -msgstr "一月" +#: ckan/controllers/feed.py:244 ckan/logic/action/create.py:1396 +msgid "Organization not found" +msgstr "組織不存在" -#: ckan/lib/formatters.py:23 -msgid "February" -msgstr "二月" +#: ckan/controllers/group.py:139 ckan/controllers/group.py:580 +msgid "Incorrect group type" +msgstr "錯誤的群組類型" -#: ckan/lib/formatters.py:27 -msgid "March" -msgstr "三月" +#: ckan/controllers/group.py:305 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:833 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 +#: ckan/templates/package/base.html:14 +msgid "Organizations" +msgstr "組織" -#: ckan/lib/formatters.py:31 -msgid "April" -msgstr "四月" +#: ckan/controllers/group.py:306 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:834 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:10 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:105 +#: ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 +#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 +msgid "Groups" +msgstr "群組" -#: ckan/lib/formatters.py:35 -msgid "May" -msgstr "五月" +#: ckan/controllers/group.py:307 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:835 +#: ckan/logic/__init__.py:109 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 +#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 +#: ckan/templates/tag/index.html:12 +msgid "Tags" +msgstr "標籤" -#: ckan/lib/formatters.py:39 -msgid "June" -msgstr "六月" +#: ckan/controllers/group.py:308 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:836 +msgid "Formats" +msgstr "格式" -#: ckan/lib/formatters.py:43 -msgid "July" -msgstr "七月" +#: ckan/controllers/group.py:309 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:837 +msgid "Licenses" +msgstr "授權" -#: ckan/lib/formatters.py:47 -msgid "August" -msgstr "八月" +#: ckan/controllers/group.py:395 ckan/controllers/group.py:512 +#: ckan/controllers/package.py:326 ckan/controllers/package.py:767 +#: ckan/controllers/package.py:1387 ckan/controllers/package.py:1421 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "使用者 %r 無權修改 %s" -#: ckan/lib/formatters.py:51 -msgid "September" -msgstr "九月" +#: ckan/controllers/group.py:442 +msgid "Not authorized to perform bulk update" +msgstr "未被授權批次更新" -#: ckan/lib/formatters.py:55 -msgid "October" -msgstr "十月" +#: ckan/controllers/group.py:460 +msgid "Unauthorized to create a group" +msgstr "沒有權限建立群組" -#: ckan/lib/formatters.py:59 -msgid "November" -msgstr "十一月" +#: ckan/controllers/group.py:538 ckan/controllers/group.py:568 +#: ckan/controllers/package.py:922 ckan/controllers/package.py:970 +#: ckan/controllers/user.py:249 ckan/controllers/user.py:379 +#: ckan/controllers/user.py:548 +msgid "Integrity Error" +msgstr "完整性錯誤" -#: ckan/lib/formatters.py:63 -msgid "December" -msgstr "十二月" +#: ckan/controllers/group.py:594 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "使用者 %r 無權修改 %s 的權限" -#: ckan/lib/formatters.py:116 -msgid "Just now" -msgstr "立刻" +#: ckan/controllers/group.py:614 ckan/controllers/group.py:629 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "沒有刪除%s群組的權限" -#: ckan/lib/formatters.py:118 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "{mins}分鐘之前" +#: ckan/controllers/group.py:620 +msgid "Organization has been deleted." +msgstr "此組織已被刪除" -#: ckan/lib/formatters.py:121 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "{hours}小時之前" +#: ckan/controllers/group.py:622 +msgid "Group has been deleted." +msgstr "此群組已被刪除" -#: ckan/lib/formatters.py:127 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "{days}天之前" +#: ckan/controllers/group.py:624 +#, python-format +msgid "%s has been deleted." +msgstr "%s 已被刪除。" -#: ckan/lib/formatters.py:130 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "{months} 個月前" +#: ckan/controllers/group.py:653 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" -#: ckan/lib/formatters.py:132 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "超過 {years} 年之前" +#: ckan/controllers/group.py:705 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "沒有在群組%s中新增成員的權限" -#: ckan/lib/formatters.py:148 -msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +#: ckan/controllers/group.py:724 ckan/controllers/group.py:737 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "沒有刪除群組%s中成員的權限" -#: ckan/lib/formatters.py:153 -msgid "{month} {day}, {year}" -msgstr "{month} {day}, {year}" +#: ckan/controllers/group.py:731 +msgid "Group member has been deleted." +msgstr "群組成員已被刪除" -#: ckan/lib/formatters.py:169 -msgid "{bytes} bytes" -msgstr "{bytes} bytes" +#: ckan/controllers/group.py:755 ckan/controllers/package.py:417 +msgid "Select two revisions before doing the comparison." +msgstr "挑選兩種版本,然後進行比對。" -#: ckan/lib/formatters.py:171 -msgid "{kibibytes} KiB" -msgstr "{kibibytes} KiB" +#: ckan/controllers/group.py:779 +msgid "CKAN Group Revision History" +msgstr "CKAN群組版本歷史紀錄" -#: ckan/lib/formatters.py:173 -msgid "{mebibytes} MiB" -msgstr "{mebibytes} MiB" +#: ckan/controllers/group.py:783 +msgid "Recent changes to CKAN Group: " +msgstr "CKAN群組最近的更新:" -#: ckan/lib/formatters.py:175 -msgid "{gibibytes} GiB" -msgstr "{gibibytes} GiB" +#: ckan/controllers/group.py:804 ckan/controllers/package.py:468 +msgid "Log message: " +msgstr "記錄檔訊息:" -#: ckan/lib/formatters.py:177 -msgid "{tebibytes} TiB" -msgstr "{tebibytes} TiB" +#: ckan/controllers/group.py:854 ckan/controllers/package.py:1171 +#: ckan/controllers/user.py:715 +msgid "You are now following {0}" +msgstr "你正在關注{0}" -#: ckan/lib/formatters.py:189 -msgid "{n}" -msgstr "{n}" +#: ckan/controllers/group.py:874 ckan/controllers/package.py:1190 +#: ckan/controllers/user.py:735 +msgid "You are no longer following {0}" +msgstr "你已取消關注{0}" -#: ckan/lib/formatters.py:191 -msgid "{k}k" -msgstr "{k}k" +#: ckan/controllers/group.py:894 ckan/controllers/user.py:580 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "沒有檢視跟隨者%s的權限" -#: ckan/lib/formatters.py:193 -msgid "{m}M" -msgstr "{m}M" +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "本網站目前無法運作。資料庫沒有初始化。" -#: ckan/lib/formatters.py:195 -msgid "{g}G" -msgstr "{g}G" +#: ckan/controllers/home.py:73 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "請 更新你的個人資料 並輸入你的電子郵件地址。" -#: ckan/lib/formatters.py:197 -msgid "{t}T" -msgstr "{t}T" +#: ckan/controllers/home.py:75 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s 使用你的電子郵件地址,如果你需要重設密碼。" -#: ckan/lib/formatters.py:199 -msgid "{p}P" -msgstr "{p}P" +#: ckan/controllers/package.py:288 +msgid "Invalid search query: {error_message}" +msgstr "無效的搜尋:{error_message}" -#: ckan/lib/formatters.py:201 -msgid "{e}E" -msgstr "{e}E" +#: ckan/controllers/package.py:304 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "參數\"{parameter_name}\"並不是整數" -#: ckan/lib/formatters.py:203 -msgid "{z}Z" -msgstr "{z}Z" +#: ckan/controllers/package.py:324 ckan/controllers/package.py:332 +#: ckan/controllers/package.py:370 ckan/controllers/package.py:437 +#: ckan/controllers/package.py:753 ckan/controllers/package.py:801 +#: ckan/controllers/package.py:819 ckan/controllers/package.py:920 +#: ckan/controllers/package.py:968 ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1067 ckan/controllers/package.py:1215 +#: ckan/controllers/package.py:1231 ckan/controllers/package.py:1294 +#: ckan/controllers/package.py:1393 ckan/controllers/package.py:1428 +#: ckan/controllers/package.py:1535 +msgid "Dataset not found" +msgstr "資料集不存在" -#: ckan/lib/formatters.py:205 -msgid "{y}Y" -msgstr "{y}Y" +#: ckan/controllers/package.py:358 ckan/controllers/package.py:360 +#: ckan/controllers/package.py:362 +#, python-format +msgid "Invalid revision format: %r" +msgstr "無效的版本格式:%r" -#: ckan/lib/helpers.py:1018 -msgid "Update your avatar at gravatar.com" -msgstr "在gravatar.com更新你的顯示圖片" +#: ckan/controllers/package.py:396 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" -#: ckan/lib/helpers.py:1266 ckan/lib/helpers.py:1279 -msgid "Unknown" -msgstr "未知的" +#: ckan/controllers/package.py:435 ckan/controllers/package.py:817 +#: ckan/controllers/package.py:918 ckan/controllers/package.py:966 +#: ckan/controllers/package.py:1217 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "沒有權限讀取組件%s" -#: ckan/lib/helpers.py:1330 -msgid "Unnamed resource" -msgstr "佚名的資源" +#: ckan/controllers/package.py:444 +msgid "CKAN Dataset Revision History" +msgstr "CKAN資料集版本歷史紀錄" -#: ckan/lib/helpers.py:1370 -msgid "Created new dataset." -msgstr "建立新的資料集" +#: ckan/controllers/package.py:447 +msgid "Recent changes to CKAN Dataset: " +msgstr "CKAN資料集最近的更新:" -#: ckan/lib/helpers.py:1372 -msgid "Edited resources." -msgstr "編輯資料" +#: ckan/controllers/package.py:503 +msgid "Unauthorized to create a package" +msgstr "沒有權限建立組件" -#: ckan/lib/helpers.py:1374 -msgid "Edited settings." -msgstr "編輯設定" +#: ckan/controllers/package.py:573 +msgid "Unauthorized to edit this resource" +msgstr "沒有編輯該資源的權限" -#: ckan/lib/helpers.py:1616 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "瀏覽次數:{number}" +#: ckan/controllers/package.py:644 +msgid "Unauthorized to update dataset" +msgstr "沒有更新資料集的權限" -#: ckan/lib/helpers.py:1618 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "目前瀏覽數:{number}" +#: ckan/controllers/package.py:646 ckan/controllers/package.py:683 +#: ckan/controllers/package.py:709 +msgid "The dataset {id} could not be found." +msgstr "找不到 {id} 資料集." -#: ckan/lib/mailer.py:39 -#, python-format -msgid "%s <%s>" -msgstr "%s <%s>" +#: ckan/controllers/package.py:650 +msgid "You must add at least one data resource" +msgstr "你必須至少新增一個資源" -#: ckan/lib/mailer.py:109 -msgid "No recipient email address available!" -msgstr "沒有收件人的電子郵件地址!" +#: ckan/controllers/package.py:681 +msgid "Unauthorized to create a resource" +msgstr "沒有建立資源的權限" -#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 -msgid "organization" -msgstr "組織" +#: ckan/controllers/package.py:714 +msgid "Unauthorized to create a resource for this package" +msgstr "沒有為此資料集建立資源的權限" -#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 -msgid "group" -msgstr "群組" +#: ckan/controllers/package.py:928 +msgid "Unable to add package to search index." +msgstr "無法在搜尋索引中添加組件" -#: ckan/lib/navl/dictization_functions.py:14 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:20 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:26 -#: ckan/lib/navl/dictization_functions.py:29 -#: ckan/lib/navl/dictization_functions.py:32 -#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 -#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 -#: ckan/logic/action/get.py:2045 ckan/logic/validators.py:606 -msgid "Missing value" -msgstr "值(value)遺失" +#: ckan/controllers/package.py:976 +msgid "Unable to update search index." +msgstr "無法更新搜尋索引" -#: ckan/lib/navl/validators.py:66 +#: ckan/controllers/package.py:1013 +msgid "Dataset has been deleted." +msgstr "資料集已被刪除" + +#: ckan/controllers/package.py:1018 ckan/controllers/package.py:1036 #, python-format -msgid "The input field %(name)s was not expected." -msgstr "輸入的字串 %(name)s 不是被預期的" +msgid "Unauthorized to delete package %s" +msgstr "沒有刪除%s組件的權限" -#: ckan/lib/navl/validators.py:118 -msgid "Please enter an integer value" -msgstr "請輸入一個整數" +#: ckan/controllers/package.py:1041 +msgid "Resource has been deleted." +msgstr "此資源已被刪除" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "資料" +#: ckan/controllers/package.py:1052 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "沒有刪除資源%s的權限" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:60 -msgid "Package resource(s) invalid" -msgstr "組件資料無效" +#: ckan/controllers/package.py:1111 ckan/controllers/package.py:1554 +msgid "Resource view not found" +msgstr "資料檢視不存在" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 -msgid "Extras" -msgstr "擴充物件" +#: ckan/controllers/package.py:1150 +msgid "Resource data not found" +msgstr "找不到資料" -#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "標籤字串 \"%s\" 不存在" +#: ckan/controllers/package.py:1159 +msgid "No download is available" +msgstr "下載不存在" -#: ckan/logic/converters.py:121 ckan/logic/validators.py:213 -#: ckan/logic/validators.py:230 ckan/logic/validators.py:705 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "使用者" +#: ckan/controllers/package.py:1296 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "沒有讀取資料集%s的權限" -#: ckan/logic/converters.py:146 ckan/logic/validators.py:148 -#: ckan/logic/validators.py:190 ckan/templates/package/read_base.html:19 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -msgid "Dataset" -msgstr "資料集" +#: ckan/controllers/package.py:1404 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "沒有權限讀取資料%s" -#: ckan/logic/converters.py:171 ckan/logic/validators.py:243 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -msgid "Group" -msgstr "群組" +#: ckan/controllers/package.py:1468 +msgid "Unauthorized to edit resource" +msgstr "沒有編輯資料的權限" -#: ckan/logic/converters.py:180 -msgid "Could not parse as valid JSON" -msgstr "錯誤的JSON格式" +#: ckan/controllers/package.py:1486 +msgid "View not found" +msgstr "資料檢視不存在" -#: ckan/logic/validators.py:32 ckan/logic/validators.py:41 -msgid "An organization must be provided" -msgstr "必須提供一個組織" +#: ckan/controllers/package.py:1492 +msgid "View Type Not found" +msgstr "資料檢視類型不存在" -#: ckan/logic/validators.py:46 -msgid "Organization does not exist" -msgstr "組織不存在" +#: ckan/controllers/package.py:1548 +msgid "Bad resource view data" +msgstr "資料檢視描述不正確" -#: ckan/logic/validators.py:51 -msgid "You cannot add a dataset to this organization" -msgstr "你無法在這個組織中建立資料集" +#: ckan/controllers/package.py:1557 +msgid "Resource view not supplied" +msgstr "沒有可用的資料檢視" -#: ckan/logic/validators.py:91 -msgid "Invalid integer" -msgstr "無效的整數" +#: ckan/controllers/package.py:1586 +msgid "No preview has been defined." +msgstr "已設定為無預覽" -#: ckan/logic/validators.py:96 -msgid "Must be a natural number" -msgstr "必須是整數" +#: ckan/controllers/revision.py:44 +msgid "CKAN Repository Revision History" +msgstr "CKAN 資料庫版本歷史紀錄" -#: ckan/logic/validators.py:102 -msgid "Must be a postive integer" -msgstr "必須是正整數" +#: ckan/controllers/revision.py:46 +msgid "Recent changes to the CKAN repository." +msgstr "CKAN資料庫的最近更新。" -#: ckan/logic/validators.py:129 -msgid "Date format incorrect" -msgstr "日期格式不正確" +#: ckan/controllers/revision.py:110 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "受影響的資料集 : %s.\n" -#: ckan/logic/validators.py:138 -msgid "No links are allowed in the log_message." -msgstr "log_message中沒有被允許的連結。" +#: ckan/controllers/revision.py:190 +msgid "Revision updated" +msgstr "版本更新" -#: ckan/logic/validators.py:158 -msgid "Dataset id already exists" -msgstr "資料集 id 已經被使用" +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "其他" -#: ckan/logic/validators.py:199 -msgid "Resource" -msgstr "資料" +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "標籤不存在" -#: ckan/logic/validators.py:253 -msgid "That group name or ID does not exist." -msgstr "此群組名稱或ID不存在。" +#: ckan/controllers/user.py:161 +msgid "Unauthorized to register as a user." +msgstr "無權登錄為用戶." -#: ckan/logic/validators.py:267 -msgid "Activity type" -msgstr "指令類型" +#: ckan/controllers/user.py:179 +msgid "Unauthorized to create a user" +msgstr "沒有權限建立使用者" -#: ckan/logic/validators.py:330 -msgid "Names must be strings" -msgstr "名子必須是字串" +#: ckan/controllers/user.py:210 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "沒有刪除使用者 id \"{user_id}\" 的權限。" -#: ckan/logic/validators.py:334 -msgid "That name cannot be used" -msgstr "此名稱無法使用" +#: ckan/controllers/user.py:224 ckan/controllers/user.py:287 +msgid "No user specified" +msgstr "沒有使用者的詳細說明" -#: ckan/logic/validators.py:337 +#: ckan/controllers/user.py:230 ckan/controllers/user.py:312 +#: ckan/controllers/user.py:375 ckan/controllers/user.py:544 #, python-format -msgid "Must be at least %s characters long" -msgstr "長度必須至少要 %s 個字元" +msgid "Unauthorized to edit user %s" +msgstr "沒有權限修改使用者%s" + +#: ckan/controllers/user.py:232 ckan/controllers/user.py:247 +#: ckan/controllers/user.py:314 ckan/controllers/user.py:377 +#: ckan/controllers/user.py:524 ckan/controllers/user.py:546 +#: ckan/logic/auth/update.py:179 +msgid "User not found" +msgstr "使用者不存在" + +#: ckan/controllers/user.py:234 ckan/controllers/user.py:367 +msgid "Profile updated" +msgstr "個人資料更新" -#: ckan/logic/validators.py:339 ckan/logic/validators.py:622 +#: ckan/controllers/user.py:245 #, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "名稱字串長度的最大值是 %i " +msgid "Unauthorized to create user %s" +msgstr "沒有權限建立使用者%s" + +#: ckan/controllers/user.py:251 +msgid "Bad Captcha. Please try again." +msgstr "驗證碼錯誤,請再試一次。" -#: ckan/logic/validators.py:342 +#: ckan/controllers/user.py:265 +#, python-format msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "必須是小寫英文字母 (ascii編碼)、數字、符號 '-' 及 '_'" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "使用者 \"%s\" 已經註冊,但你仍以 \"%s\" 登入中" -#: ckan/logic/validators.py:360 -msgid "That URL is already in use." -msgstr "此網址已經被使用" +#: ckan/controllers/user.py:293 +msgid "Unauthorized to edit a user." +msgstr "無權修改使用者." -#: ckan/logic/validators.py:365 +#: ckan/controllers/user.py:320 #, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "名稱 \"%s\" 字串長度小於最小值 %s" +msgid "User %s not authorized to edit %s" +msgstr "使用者%s無權修改%s" -#: ckan/logic/validators.py:369 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "名稱 \"%s\" 字串長度大於最大值 %s" +#: ckan/controllers/user.py:385 +msgid "Password entered was incorrect" +msgstr "輸入密碼錯誤" -#: ckan/logic/validators.py:375 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "版本名稱長度最大值為 %i" +#: ckan/controllers/user.py:386 ckan/templates/user/edit_user_form.html:29 +msgid "Old Password" +msgstr "舊密碼" -#: ckan/logic/validators.py:393 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "重複的Key \"%s\"" +#: ckan/controllers/user.py:386 +msgid "incorrect password" +msgstr "錯誤的密碼" -#: ckan/logic/validators.py:409 -msgid "Group name already exists in database" -msgstr "群組名稱已經被使用" +#: ckan/controllers/user.py:427 +msgid "Login failed. Bad username or password." +msgstr "登入失敗,使用者名稱或密碼錯誤。" -#: ckan/logic/validators.py:415 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "標籤 \"%s\" 的長度小於最小值%s" +#: ckan/controllers/user.py:461 +msgid "Unauthorized to request reset password." +msgstr "無權要求重設密碼." -#: ckan/logic/validators.py:419 +#: ckan/controllers/user.py:490 #, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "標籤 \"%s\" 字串長度大於最大值 %i" +msgid "\"%s\" matched several users" +msgstr "\"%s\" 找到多個使用者" -#: ckan/logic/validators.py:427 +#: ckan/controllers/user.py:492 ckan/controllers/user.py:494 #, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "標籤 \"%s\" 必須是英文字母、數字、符號'-'及'_'" +msgid "No such user: %s" +msgstr "沒有這個使用者: %s" -#: ckan/logic/validators.py:435 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "標籤 \"%s\" 不能有大寫字母" +#: ckan/controllers/user.py:499 +msgid "Please check your inbox for a reset code." +msgstr "請至你的收件夾查看重設的密碼。" -#: ckan/logic/validators.py:544 -msgid "User names must be strings" -msgstr "使用者名稱必須是字串" +#: ckan/controllers/user.py:503 +#, python-format +msgid "Could not send reset link: %s" +msgstr "無法寄送重設的連結: %s" -#: ckan/logic/validators.py:560 -msgid "That login name is not available." -msgstr "此登入名稱無法使用" +#: ckan/controllers/user.py:516 +msgid "Unauthorized to reset password." +msgstr "無權重設密碼." -#: ckan/logic/validators.py:569 -msgid "Please enter both passwords" -msgstr "請輸入兩組密碼" +#: ckan/controllers/user.py:528 +msgid "Invalid reset key. Please try again." +msgstr "無效的重設金鑰,請再試一次。" -#: ckan/logic/validators.py:577 -msgid "Passwords must be strings" -msgstr "密碼必須是字串" +#: ckan/controllers/user.py:541 +msgid "Your password has been reset." +msgstr "你的密碼已經重設。" -#: ckan/logic/validators.py:581 -msgid "Your password must be 4 characters or longer" -msgstr "你的密碼必須大於四個字元" +#: ckan/controllers/user.py:562 +msgid "Your password must be 4 characters or longer." +msgstr "你的密碼必須在四個字元以上。" -#: ckan/logic/validators.py:589 -msgid "The passwords you entered do not match" +#: ckan/controllers/user.py:565 +msgid "The passwords you entered do not match." msgstr "你輸入的密碼不正確" -#: ckan/logic/validators.py:610 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "不允許編輯,因為你編輯的內容被判定為疑似廣告內容。請避免在說明中使用連結。" - -#: ckan/logic/validators.py:619 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "使用者名稱長度必須至少要%s個字元" +#: ckan/controllers/user.py:568 +msgid "You must provide a password" +msgstr "你必須提供一組密碼" -#: ckan/logic/validators.py:627 -msgid "That vocabulary name is already in use." -msgstr "該詞彙表的名稱已經被使用。" +#: ckan/controllers/user.py:636 +msgid "Follow item not found" +msgstr "跟隨的物件不存在" -#: ckan/logic/validators.py:633 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "無法將Key的值從 %s 變更為 %s。 這個Key是唯讀的" +#: ckan/controllers/user.py:640 +msgid "{0} not found" +msgstr "{0}不存在" -#: ckan/logic/validators.py:642 -msgid "Tag vocabulary was not found." -msgstr "標籤詞彙不存在" +#: ckan/controllers/user.py:654 +msgid "Everything" +msgstr "所有事物" -#: ckan/logic/validators.py:655 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "標籤%s不屬於詞彙表%s" +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "遺漏的值" -#: ckan/logic/validators.py:661 -msgid "No tag name" -msgstr "無標籤名稱" +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "禁止重新導向至外部網站。" -#: ckan/logic/validators.py:674 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "標籤%s已經包含於詞彙表%s" +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor}在{dataset}資料集中新增了{tag}標籤" -#: ckan/logic/validators.py:697 -msgid "Please provide a valid URL" -msgstr "請提供一個有效的網址" +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "{actor}更新了{group}群組" -#: ckan/logic/validators.py:711 -msgid "role does not exist." -msgstr "角色不存在" +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "{actor}更新了{organization}組織" -#: ckan/logic/validators.py:740 -msgid "Datasets with no organization can't be private." -msgstr "非組織的資料集不能私有." +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor}更新了{dataset}" -#: ckan/logic/validators.py:746 -msgid "Not a list" -msgstr "不是列表" +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "{actor}變更了{dataset}資料集中的{extra}擴充物件" -#: ckan/logic/validators.py:749 -msgid "Not a string" -msgstr "不是字串" +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor}更新了{dataset}資料集中的{resource}資源" -#: ckan/logic/validators.py:781 -msgid "This parent would create a loop in the hierarchy" -msgstr "此父項目可能會於階層中形成迴圈" +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "{actor} 更新了基本資料" -#: ckan/logic/validators.py:791 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "「篩選條件」與「篩選值」需具備相同數量" +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "{actor}刪除了{group}群組" -#: ckan/logic/validators.py:802 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "當「篩選值」存在時必須提供「篩選條件」" +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor}刪除了{organization}組織" -#: ckan/logic/validators.py:805 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "當「篩選條件」存在時必須提供「篩選值」" +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor}刪除了{dataset}資料集" -#: ckan/logic/validators.py:819 -msgid "There is a schema field with the same name" -msgstr "已有一個 schema 欄位具有相同名稱" +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "{actor}刪除了{dataset}資料集中的{extra}擴充物件" -#: ckan/logic/action/create.py:180 ckan/logic/action/create.py:653 -#, python-format -msgid "REST API: Create object %s" -msgstr "REST API: 建立元件 %s" +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor}刪除了{dataset}資料集中的{resource}資源" -#: ckan/logic/action/create.py:532 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "REST API: 建立組件關連 : %s %s %s" +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "{actor}建立了{group}群組" -#: ckan/logic/action/create.py:573 -#, python-format -msgid "REST API: Create member object %s" -msgstr "REST API: 建立成員元件 %s" +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "{actor}建立了{organization}組織" -#: ckan/logic/action/create.py:792 -msgid "Trying to create an organization as a group" -msgstr "嘗試建立一個組織,就像群組一樣" +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor}建立了{dataset}資料集" -#: ckan/logic/action/create.py:881 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "你必須提供一個組件ID或名稱(參數\"組件\")。" +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "{actor}在{dataset}資料集中新增了{extra}擴充物件" -#: ckan/logic/action/create.py:884 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "你必須留下評分(參數\"評分\")。" +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor}在{dataset}資料集中新增了{resource}資源" -#: ckan/logic/action/create.py:889 -msgid "Rating must be an integer value." -msgstr "評分必須是一個整數。" +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "{actor} 已登錄" -#: ckan/logic/action/create.py:893 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "評分必須介於%i 及 %i 之間。" +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor}移除了{dataset}資料集中的{tag}標籤" -#: ckan/logic/action/create.py:1052 -msgid "Error sending the invite email, the user was not created: {0}" -msgstr "寄送邀請電子郵件時發生錯誤,使用者:{0} 未被建立" +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "{actor}開始關注{dataset}資料集" -#: ckan/logic/action/create.py:1265 ckan/logic/action/create.py:1272 -msgid "You must be logged in to follow users" -msgstr "你必須登入才能關注使用者" +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "{actor}開始關注{user}使用者" -#: ckan/logic/action/create.py:1285 -msgid "You cannot follow yourself" -msgstr "你無法追蹤自己" +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "{actor}開始關注{group}群組" -#: ckan/logic/action/create.py:1293 ckan/logic/action/create.py:1350 -#: ckan/logic/action/create.py:1489 -msgid "You are already following {0}" -msgstr "你正在關注{0}" +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:18 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:37 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "瀏覽" -#: ckan/logic/action/create.py:1324 ckan/logic/action/create.py:1332 -msgid "You must be logged in to follow a dataset." -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/logic/action/create.py:1390 -msgid "User {username} does not exist." -msgstr " 使用者 {username} 不存在." +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "一月" -#: ckan/logic/action/create.py:1465 ckan/logic/action/create.py:1473 -msgid "You must be logged in to follow a group." -msgstr "你必須登入才能關注群組" +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "二月" -#: ckan/logic/action/delete.py:45 -msgid " Delete User: {0}" -msgstr "刪除使用者:{0}" +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "三月" -#: ckan/logic/action/delete.py:86 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "REST API: 刪除組件: %s" +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "四月" -#: ckan/logic/action/delete.py:270 ckan/logic/action/delete.py:352 -#, python-format -msgid "REST API: Delete %s" -msgstr "REST API: 刪除 %s" +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "五月" -#: ckan/logic/action/delete.py:312 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "REST API: 刪除成員: %s" +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "六月" -#: ckan/logic/action/delete.py:538 ckan/logic/action/delete.py:564 -#: ckan/logic/action/get.py:2444 ckan/logic/action/update.py:932 -msgid "id not in data" -msgstr "在資料中找不到ID" +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "七月" -#: ckan/logic/action/delete.py:542 ckan/logic/action/get.py:2447 -#: ckan/logic/action/update.py:936 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "詞彙表\"%s\" 不存在" +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "八月" -#: ckan/logic/action/delete.py:572 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "標籤 \"%s\" 不存在" +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "九月" -#: ckan/logic/action/delete.py:598 ckan/logic/action/delete.py:602 -msgid "You must be logged in to unfollow something." -msgstr "你必須登入才能取消關注" +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "十月" -#: ckan/logic/action/delete.py:613 -msgid "You are not following {0}." -msgstr "你並沒有關注{0}" +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "十一月" -#: ckan/logic/action/get.py:1058 ckan/logic/action/update.py:71 -#: ckan/logic/action/update.py:85 -msgid "Resource was not found." -msgstr "資料不存在" +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "十二月" -#: ckan/logic/action/get.py:2049 -msgid "Do not specify if using \"query\" parameter" -msgstr "若使用\"query\"參數則不要詳細說明" +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "立刻" -#: ckan/logic/action/get.py:2058 -msgid "Must be : pair(s)" -msgstr ":必須是一對" +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "{mins}分鐘之前" -#: ckan/logic/action/get.py:2090 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "在 resource_search 裡無法辨識欄位 \"{field}\"。" +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "{hours}小時之前" -#: ckan/logic/action/update.py:240 ckan/logic/action/update.py:1034 -msgid "Package was not found." -msgstr "組件不存在" +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "{days}天之前" -#: ckan/logic/action/update.py:283 ckan/logic/action/update.py:500 -#: ckan/logic/action/update.py:1052 -#, python-format -msgid "REST API: Update object %s" -msgstr "REST API: 更新元件 %s" +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "{months} 個月前" -#: ckan/logic/action/update.py:380 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "REST API: 更新組件關連: %s %s %s" +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "超過 {years} 年之前" -#: ckan/logic/action/update.py:740 -msgid "TaskStatus was not found." -msgstr "任務狀態不存在" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/logic/action/update.py:1038 -msgid "Organization was not found." -msgstr "組織不存在" +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "{month} {day}, {year}" -#: 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/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" -#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "使用者 %s 沒有權限編輯群組" +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" -#: ckan/logic/auth/create.py:38 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "使用者 %s 沒授權增加資料集到這個組織" +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" -#: ckan/logic/auth/create.py:61 -msgid "No dataset id provided, cannot check auth." -msgstr "此資料集的 id 不存在,無法確認權限。" +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" -#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 -#: ckan/logic/auth/get.py:143 ckan/logic/auth/update.py:63 -msgid "No package found for this resource, cannot check auth." -msgstr "此資料的組件不存在," +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" -#: ckan/logic/auth/create.py:76 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "使用者 %s 沒有於資料集 %s 中建立資料的權限" +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "{n}" -#: ckan/logic/auth/create.py:108 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "使用者 %s 沒有權限編輯組件" +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "{k}k" -#: ckan/logic/auth/create.py:119 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "使用者 %s 沒有權限建立群組" +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "{m}M" -#: ckan/logic/auth/create.py:129 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "使用者%s沒有權限建立組織" +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "{g}G" -#: ckan/logic/auth/create.py:145 -msgid "User {user} not authorized to create users via the API" -msgstr "使用者 {user} 沒有權限透過 API 建立使用者" +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "{t}T" -#: ckan/logic/auth/create.py:148 -msgid "Not authorized to create users" -msgstr "沒有權限建立使用者" +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "{p}P" -#: ckan/logic/auth/create.py:191 -msgid "Group was not found." -msgstr "群組不存在" +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "{e}E" -#: ckan/logic/auth/create.py:211 -msgid "Valid API key needed to create a package" -msgstr "有效的API Key必須建立一個組件" +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "{z}Z" -#: ckan/logic/auth/create.py:219 -msgid "Valid API key needed to create a group" -msgstr "有效的API Key必須建立一個群組" +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "{y}Y" -#: ckan/logic/auth/create.py:239 -#, python-format -msgid "User %s not authorized to add members" -msgstr "使用者%s沒有權限新增成員" +#: ckan/lib/helpers.py:1048 +msgid "Update your avatar at gravatar.com" +msgstr "在gravatar.com更新你的顯示圖片" -#: ckan/logic/auth/create.py:263 ckan/logic/auth/update.py:115 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "使用者 %s 沒有權限編輯群組 %s" +#: ckan/lib/helpers.py:1297 ckan/lib/helpers.py:1310 +msgid "Unknown" +msgstr "未知的" -#: ckan/logic/auth/delete.py:40 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "使用者%s沒有權限刪除資源%s" +#: ckan/lib/helpers.py:1361 +msgid "Unnamed resource" +msgstr "佚名的資源" -#: ckan/logic/auth/delete.py:56 -msgid "Resource view not found, cannot check auth." -msgstr "此資料檢視不存在,無法確認權限。" +#: ckan/lib/helpers.py:1401 +msgid "Created new dataset." +msgstr "建立新的資料集" -#: ckan/logic/auth/delete.py:73 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "使用者 %s 沒有權限刪除關連性 %s" +#: ckan/lib/helpers.py:1403 +msgid "Edited resources." +msgstr "編輯資料" -#: ckan/logic/auth/delete.py:82 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "使用者%s沒有權限刪除群組" +#: ckan/lib/helpers.py:1405 +msgid "Edited settings." +msgstr "編輯設定" -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "使用者 %s 沒有權限刪除群組 %s" +#: ckan/lib/helpers.py:1648 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "瀏覽次數:{number}" -#: ckan/logic/auth/delete.py:103 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "使用者%s沒有權限刪除組織" +#: ckan/lib/helpers.py:1650 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "目前瀏覽數:{number}" -#: ckan/logic/auth/delete.py:107 +#: ckan/lib/mailer.py:39 #, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "使用者%s沒有權限刪除組織%s" +msgid "%s <%s>" +msgstr "%s <%s>" -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "使用者 %s 沒有權限刪除任務狀態" +#: ckan/lib/mailer.py:109 +msgid "No recipient email address available!" +msgstr "沒有收件人的電子郵件地址!" -#: ckan/logic/auth/get.py:12 ckan/logic/auth/get.py:291 -msgid "Not authorized" -msgstr "沒有權限" +#: ckan/lib/mailer.py:127 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "組織" -#: ckan/logic/auth/get.py:108 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "使用者 %s 沒有權限讀取這些組件" +#: ckan/lib/mailer.py:128 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "群組" -#: ckan/logic/auth/get.py:130 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "使用者 %s 沒有權限讀取組件 %s" +#: ckan/lib/navl/dictization_functions.py:14 +#: ckan/lib/navl/dictization_functions.py:17 +#: ckan/lib/navl/dictization_functions.py:20 +#: ckan/lib/navl/dictization_functions.py:23 +#: ckan/lib/navl/dictization_functions.py:26 +#: ckan/lib/navl/dictization_functions.py:29 +#: ckan/lib/navl/dictization_functions.py:32 +#: ckan/lib/navl/dictization_functions.py:35 ckan/lib/navl/validators.py:25 +#: ckan/lib/navl/validators.py:32 ckan/lib/navl/validators.py:52 +#: ckan/logic/action/get.py:2083 ckan/logic/action/update.py:257 +#: ckan/logic/validators.py:607 +msgid "Missing value" +msgstr "值(value)遺失" -#: ckan/logic/auth/get.py:149 +#: ckan/lib/navl/validators.py:66 #, python-format -msgid "User %s not authorized to read resource %s" -msgstr "使用者 %s 沒有權限讀取資料 %s" +msgid "The input field %(name)s was not expected." +msgstr "輸入的字串 %(name)s 不是被預期的" -#: ckan/logic/auth/get.py:176 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "使用者 %s 沒有權限讀取群組 %s" +#: ckan/lib/navl/validators.py:118 +msgid "Please enter an integer value" +msgstr "請輸入一個整數" -#: ckan/logic/auth/get.py:258 -msgid "You must be logged in to access your dashboard." -msgstr "你必須登入才能使用控制台" +#: ckan/lib/navl/validators.py:124 +msgid "Must be a Unicode string value" +msgstr "" -#: ckan/logic/auth/update.py:39 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "使用者 %s 沒有權限編輯組件 %s" +#: ckan/logic/__init__.py:98 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "組件資料無效" -#: ckan/logic/auth/update.py:71 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "使用者%s沒有權限編輯資源%s" +#: ckan/logic/__init__.py:105 ckan/logic/__init__.py:107 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "擴充物件" -#: ckan/logic/auth/update.py:100 +#: ckan/logic/converters.py:74 ckan/logic/converters.py:89 #, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "使用者 %s 沒有權限更改組件的狀態 %s" +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "標籤字串 \"%s\" 不存在" -#: ckan/logic/auth/update.py:128 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "使用者%s沒有權限編輯組織%s" +#: ckan/logic/converters.py:180 +msgid "Could not parse as valid JSON" +msgstr "錯誤的JSON格式" -#: ckan/logic/auth/update.py:145 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "使用者 %s 沒有權限改變群組的狀態 %s" +#: ckan/logic/validators.py:33 ckan/logic/validators.py:42 +msgid "An organization must be provided" +msgstr "必須提供一個組織" -#: ckan/logic/auth/update.py:162 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "使用者 %s 沒有權限編輯群組的許可 %s" +#: ckan/logic/validators.py:47 +msgid "Organization does not exist" +msgstr "組織不存在" -#: ckan/logic/auth/update.py:189 -msgid "Have to be logged in to edit user" -msgstr "需經登入以編輯用戶" +#: ckan/logic/validators.py:52 +msgid "You cannot add a dataset to this organization" +msgstr "你無法在這個組織中建立資料集" -#: ckan/logic/auth/update.py:197 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "使用者 %s 沒有權限編輯使用者 %s" +#: ckan/logic/validators.py:92 +msgid "Invalid integer" +msgstr "無效的整數" -#: ckan/logic/auth/update.py:208 -msgid "User {0} not authorized to update user {1}" -msgstr "使用者 {0} 沒有權限更新使用者 {1}" +#: ckan/logic/validators.py:97 +msgid "Must be a natural number" +msgstr "必須是整數" -#: ckan/logic/auth/update.py:216 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "使用者 %s 沒有權限更改版本狀態" +#: ckan/logic/validators.py:103 +msgid "Must be a postive integer" +msgstr "必須是正整數" -#: ckan/logic/auth/update.py:225 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "使用者 %s 沒有權限更新任務狀態表格" +#: ckan/logic/validators.py:130 +msgid "Date format incorrect" +msgstr "日期格式不正確" -#: ckan/logic/auth/update.py:239 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "使用者 %s 沒有權限更新翻譯字詞表格" +#: ckan/logic/validators.py:139 +msgid "No links are allowed in the log_message." +msgstr "log_message中沒有被允許的連結。" -#: ckan/logic/auth/update.py:261 -msgid "Valid API key needed to edit a package" -msgstr "有效的API Key必須編輯一個組件" +#: ckan/logic/validators.py:159 +msgid "Dataset id already exists" +msgstr "資料集 id 已經被使用" -#: ckan/logic/auth/update.py:271 -msgid "Valid API key needed to edit a group" -msgstr "有效的API Key必須編輯一個群組" +#: ckan/logic/validators.py:200 +msgid "Resource" +msgstr "資料" -#: ckan/model/license.py:222 -msgid "License not specified" -msgstr "授權類型未指定" +#: ckan/logic/validators.py:254 +msgid "That group name or ID does not exist." +msgstr "此群組名稱或ID不存在。" -#: ckan/model/license.py:232 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "開放資料共用公共領域貢獻和授權條款 (PDDL)" +#: ckan/logic/validators.py:268 +msgid "Activity type" +msgstr "指令類型" -#: ckan/model/license.py:242 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "Open Data Commons Open Database License (ODbL)" +#: ckan/logic/validators.py:331 +msgid "Names must be strings" +msgstr "名子必須是字串" -#: ckan/model/license.py:252 -msgid "Open Data Commons Attribution License" -msgstr "Open Data Commons Attribution License" - -#: ckan/model/license.py:263 -msgid "Creative Commons CCZero" -msgstr "Creative Commons CCZero" - -#: ckan/model/license.py:272 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: ckan/model/license.py:282 -msgid "Creative Commons Attribution Share-Alike" -msgstr "Creative Commons Attribution Share-Alike" - -#: ckan/model/license.py:291 -msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" - -#: ckan/model/license.py:301 -msgid "Other (Open)" -msgstr "其他(開放)" - -#: ckan/model/license.py:311 -msgid "Other (Public Domain)" -msgstr "其他(公共領域)" - -#: ckan/model/license.py:321 -msgid "Other (Attribution)" -msgstr "其他(歸因)" +#: ckan/logic/validators.py:335 +msgid "That name cannot be used" +msgstr "此名稱無法使用" -#: ckan/model/license.py:333 -msgid "UK Open Government Licence (OGL)" -msgstr "UK Open Government Licence (OGL)" +#: ckan/logic/validators.py:338 +#, python-format +msgid "Must be at least %s characters long" +msgstr "長度必須至少要 %s 個字元" -#: ckan/model/license.py:341 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "Creative Commons Non-Commercial (Any)" +#: ckan/logic/validators.py:340 ckan/logic/validators.py:623 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "名稱字串長度的最大值是 %i " -#: ckan/model/license.py:349 -msgid "Other (Non-Commercial)" -msgstr "其他(非商業)" +#: ckan/logic/validators.py:343 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "必須是小寫英文字母 (ascii編碼)、數字、符號 '-' 及 '_'" -#: ckan/model/license.py:357 -msgid "Other (Not Open)" -msgstr "其他(非開放)" +#: ckan/logic/validators.py:361 +msgid "That URL is already in use." +msgstr "此網址已經被使用" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:366 #, python-format -msgid "depends on %s" -msgstr "根據 %s" +msgid "Name \"%s\" length is less than minimum %s" +msgstr "名稱 \"%s\" 字串長度小於最小值 %s" -#: ckan/model/package_relationship.py:54 +#: ckan/logic/validators.py:370 #, python-format -msgid "is a dependency of %s" -msgstr "是取決於%s" +msgid "Name \"%s\" length is more than maximum %s" +msgstr "名稱 \"%s\" 字串長度大於最大值 %s" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:376 #, python-format -msgid "derives from %s" -msgstr "來自於%s" +msgid "Version must be a maximum of %i characters long" +msgstr "版本名稱長度最大值為 %i" -#: ckan/model/package_relationship.py:55 +#: ckan/logic/validators.py:394 #, python-format -msgid "has derivation %s" -msgstr "擁有來源%s" +msgid "Duplicate key \"%s\"" +msgstr "重複的Key \"%s\"" -#: ckan/model/package_relationship.py:56 -#, python-format -msgid "links to %s" -msgstr "連結至%s" +#: ckan/logic/validators.py:410 +msgid "Group name already exists in database" +msgstr "群組名稱已經被使用" -#: ckan/model/package_relationship.py:56 +#: ckan/logic/validators.py:416 #, python-format -msgid "is linked from %s" -msgstr "從%s連結而來" +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "標籤 \"%s\" 的長度小於最小值%s" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:420 #, python-format -msgid "is a child of %s" -msgstr "是%s的子項目" +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "標籤 \"%s\" 字串長度大於最大值 %i" -#: ckan/model/package_relationship.py:57 +#: ckan/logic/validators.py:428 #, python-format -msgid "is a parent of %s" -msgstr "是%s的父項目" +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "標籤 \"%s\" 必須是英文字母、數字、符號'-'及'_'" -#: ckan/model/package_relationship.py:61 +#: ckan/logic/validators.py:436 #, python-format -msgid "has sibling %s" -msgstr "擁有同層級項目%s" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:14 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "讀取中..." +msgid "Tag \"%s\" must not be uppercase" +msgstr "標籤 \"%s\" 不能有大寫字母" -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "這個資源中沒有API資料可供讀取" +#: ckan/logic/validators.py:545 +msgid "User names must be strings" +msgstr "使用者名稱必須是字串" -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "讀取API資訊失敗" +#: ckan/logic/validators.py:561 +msgid "That login name is not available." +msgstr "此登入名稱無法使用" -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "沒有匹配的資料" +#: ckan/logic/validators.py:570 +msgid "Please enter both passwords" +msgstr "請輸入兩組密碼" -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "開始輸入.." +#: ckan/logic/validators.py:578 +msgid "Passwords must be strings" +msgstr "密碼必須是字串" -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "輸入的內容太短,必須至少輸入一個字元" +#: ckan/logic/validators.py:582 +msgid "Your password must be 4 characters or longer" +msgstr "你的密碼必須大於四個字元" -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "此表格有未保存的修改" +#: ckan/logic/validators.py:590 +msgid "The passwords you entered do not match" +msgstr "你輸入的密碼不正確" -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "請確認活動" +#: ckan/logic/validators.py:611 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "不允許編輯,因為你編輯的內容被判定為疑似廣告內容。請避免在說明中使用連結。" -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "確定要展示此活動嗎?" +#: ckan/logic/validators.py:620 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "使用者名稱長度必須至少要%s個字元" -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "確認" +#: ckan/logic/validators.py:628 +msgid "That vocabulary name is already in use." +msgstr "該詞彙表的名稱已經被使用。" -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:14 -msgid "Cancel" -msgstr "取消" +#: ckan/logic/validators.py:634 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "無法將Key的值從 %s 變更為 %s。 這個Key是唯讀的" -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "跟隨" +#: ckan/logic/validators.py:643 +msgid "Tag vocabulary was not found." +msgstr "標籤詞彙不存在" -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "取消追蹤" +#: ckan/logic/validators.py:656 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "標籤%s不屬於詞彙表%s" -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Upload" -msgstr "上傳" +#: ckan/logic/validators.py:662 +msgid "No tag name" +msgstr "無標籤名稱" -#: ckan/public/base/javascript/modules/image-upload.js:17 -msgid "Link" -msgstr "連結" +#: ckan/logic/validators.py:675 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "標籤%s已經包含於詞彙表%s" -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:68 -msgid "Remove" -msgstr "移除" +#: ckan/logic/validators.py:698 +msgid "Please provide a valid URL" +msgstr "請提供一個有效的網址" -#: ckan/public/base/javascript/modules/image-upload.js:19 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:23 -#: ckanext/imageview/plugin.py:28 -msgid "Image" -msgstr "圖片" +#: ckan/logic/validators.py:712 +msgid "role does not exist." +msgstr "角色不存在" -#: ckan/public/base/javascript/modules/image-upload.js:20 -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "URL" -msgstr "網址" +#: ckan/logic/validators.py:741 +msgid "Datasets with no organization can't be private." +msgstr "非組織的資料集不能私有." -#: ckan/public/base/javascript/modules/image-upload.js:21 -msgid "File" -msgstr "檔案" +#: ckan/logic/validators.py:747 +msgid "Not a list" +msgstr "不是列表" -#: ckan/public/base/javascript/modules/image-upload.js:22 -msgid "Upload a file on your computer" -msgstr "從你的電腦上傳檔案" +#: ckan/logic/validators.py:750 +msgid "Not a string" +msgstr "不是字串" -#: ckan/public/base/javascript/modules/image-upload.js:23 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "連結至網際網路上的 URL (你也可以連結至 API)" +#: ckan/logic/validators.py:782 +msgid "This parent would create a loop in the hierarchy" +msgstr "此父項目可能會於階層中形成迴圈" -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "重新排序資料" +#: ckan/logic/validators.py:792 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "「篩選條件」與「篩選值」需具備相同數量" -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "儲存排序" +#: ckan/logic/validators.py:803 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "當「篩選值」存在時必須提供「篩選條件」" -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "儲存中..." +#: ckan/logic/validators.py:806 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "當「篩選條件」存在時必須提供「篩選值」" -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "上傳檔案" +#: ckan/logic/validators.py:820 +msgid "There is a schema field with the same name" +msgstr "已有一個 schema 欄位具有相同名稱" -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "發生錯誤" +#: ckan/logic/validators.py:846 +msgid "Email {email} is not a valid format" +msgstr "" -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "資源已上傳" +#: ckan/logic/action/create.py:183 ckan/logic/action/create.py:665 +#, python-format +msgid "REST API: Create object %s" +msgstr "REST API: 建立元件 %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "無法上傳檔案" +#: ckan/logic/action/create.py:544 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "REST API: 建立組件關連 : %s %s %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "無法驗證上傳" +#: ckan/logic/action/create.py:585 +#, python-format +msgid "REST API: Create member object %s" +msgstr "REST API: 建立成員元件 %s" -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "無法取得上傳檔案的資料" +#: ckan/logic/action/create.py:804 +msgid "Trying to create an organization as a group" +msgstr "嘗試建立一個組織,就像群組一樣" -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "你現在正在上傳一個檔案,確定要離開當前頁面及停止上傳檔案嗎?" +#: ckan/logic/action/create.py:893 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "你必須提供一個組件ID或名稱(參數\"組件\")。" -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "重新排序資料檢視" +#: ckan/logic/action/create.py:896 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "你必須留下評分(參數\"評分\")。" -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -msgid "Edit" -msgstr "編輯" +#: ckan/logic/action/create.py:901 +msgid "Rating must be an integer value." +msgstr "評分必須是一個整數。" -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "顯示更多" +#: ckan/logic/action/create.py:905 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "評分必須介於%i 及 %i 之間。" -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "隱藏" +#: ckan/logic/action/create.py:1064 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "寄送邀請電子郵件時發生錯誤,使用者:{0} 未被建立" -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "錯誤 %(error_code)s" +#: ckan/logic/action/create.py:1277 ckan/logic/action/create.py:1284 +msgid "You must be logged in to follow users" +msgstr "你必須登入才能關注使用者" -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "關於{0}" +#: ckan/logic/action/create.py:1297 +msgid "You cannot follow yourself" +msgstr "你無法追蹤自己" -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "CKAN API" +#: ckan/logic/action/create.py:1305 ckan/logic/action/create.py:1362 +#: ckan/logic/action/create.py:1501 +msgid "You are already following {0}" +msgstr "你正在關注{0}" -#: ckan/templates/footer.html:16 -msgid "CKAN Association" -msgstr "CKAN 協會" +#: ckan/logic/action/create.py:1336 ckan/logic/action/create.py:1344 +msgid "You must be logged in to follow a dataset." +msgstr "你必須登入才能關注資料集" -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" -"Powered by CKAN" +#: ckan/logic/action/create.py:1402 +msgid "User {username} does not exist." +msgstr " 使用者 {username} 不存在." -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "系統管理員設置" +#: ckan/logic/action/create.py:1477 ckan/logic/action/create.py:1485 +msgid "You must be logged in to follow a group." +msgstr "你必須登入才能關注群組" -#: ckan/templates/header.html:19 -msgid "View profile" -msgstr "瀏覽個人資料" +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "刪除使用者:{0}" -#: ckan/templates/header.html:26 +#: ckan/logic/action/delete.py:92 #, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "控制台(%(num)d 個新物件)" +msgid "REST API: Delete Package: %s" +msgstr "REST API: 刪除組件: %s" -#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "儀表板" +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:358 +#, python-format +msgid "REST API: Delete %s" +msgstr "REST API: 刪除 %s" -#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "編輯設定" +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "REST API: 刪除成員: %s" -#: ckan/templates/header.html:37 -msgid "Settings" -msgstr "設定" +#: ckan/logic/action/delete.py:544 ckan/logic/action/delete.py:570 +#: ckan/logic/action/get.py:2482 ckan/logic/action/update.py:953 +msgid "id not in data" +msgstr "在資料中找不到ID" -#: ckan/templates/header.html:43 ckan/templates/header.html:45 -msgid "Log out" -msgstr "登出" +#: ckan/logic/action/delete.py:548 ckan/logic/action/get.py:2485 +#: ckan/logic/action/update.py:957 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "詞彙表\"%s\" 不存在" -#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "登入" +#: ckan/logic/action/delete.py:578 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "標籤 \"%s\" 不存在" -#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "註冊" +#: ckan/logic/action/delete.py:604 ckan/logic/action/delete.py:608 +msgid "You must be logged in to unfollow something." +msgstr "你必須登入才能取消關注" -#: ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "資料集" +#: ckan/logic/action/delete.py:619 +msgid "You are not following {0}." +msgstr "你並沒有關注{0}" -#: ckan/templates/header.html:116 -msgid "Search Datasets" -msgstr "搜尋資料集" +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:75 +#: ckan/logic/action/update.py:89 +msgid "Resource was not found." +msgstr "資料不存在" -#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/user/snippets/user_search.html:6 -msgid "Search" -msgstr "搜尋" +#: ckan/logic/action/get.py:2087 +msgid "Do not specify if using \"query\" parameter" +msgstr "若使用\"query\"參數則不要詳細說明" -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "跳至內容" +#: ckan/logic/action/get.py:2096 +msgid "Must be : pair(s)" +msgstr ":必須是一對" -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "讀取較少" +#: ckan/logic/action/get.py:2128 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "在 resource_search 裡無法辨識欄位 \"{field}\"。" -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "讀取更多" +#: ckan/logic/action/update.py:261 ckan/logic/action/update.py:1055 +msgid "Package was not found." +msgstr "組件不存在" -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "任何活動都在此活動串之中" +#: ckan/logic/action/update.py:304 ckan/logic/action/update.py:521 +#: ckan/logic/action/update.py:1073 +#, python-format +msgid "REST API: Update object %s" +msgstr "REST API: 更新元件 %s" -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "管理" +#: ckan/logic/action/update.py:401 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "REST API: 更新組件關連: %s %s %s" -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "系統管理員" +#: ckan/logic/action/update.py:761 +msgid "TaskStatus was not found." +msgstr "任務狀態不存在" -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "設置" +#: ckan/logic/action/update.py:1059 +msgid "Organization was not found." +msgstr "組織不存在" -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -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/templates/admin/config.html:16 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "確定要重設設置嗎?" +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "使用者 %s 沒有權限編輯群組" -#: ckan/templates/admin/config.html:17 -msgid "Reset" -msgstr "重設" +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "使用者 %s 沒授權增加資料集到這個組織" -#: ckan/templates/admin/config.html:18 -msgid "Update Config" -msgstr "更新設定檔" +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "此資料集的 id 不存在,無法確認權限。" -#: ckan/templates/admin/config.html:27 -msgid "CKAN config options" -msgstr "CKAN 設置選項" +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "此資料的組件不存在," -#: ckan/templates/admin/config.html:34 +#: ckan/logic/auth/create.py:76 #, 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>標籤的每個頁面。 " -"若您需要更完整的客製化範例,建議您閱讀此文件

" -"

首頁:您可以選擇顯示於首頁的模組佈局。

" +msgid "User %s not authorized to create resources on dataset %s" +msgstr "使用者 %s 沒有於資料集 %s 中建立資料的權限" -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "重設確認" +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "使用者 %s 沒有權限編輯組件" -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "CKAN 系統管理者" +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "使用者 %s 沒有權限建立群組" -#: ckan/templates/admin/index.html:20 +#: ckan/logic/auth/create.py:129 #, 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 系統管理者指南

" +msgid "User %s not authorized to create organizations" +msgstr "使用者%s沒有權限建立組織" -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "清空" +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "使用者 {user} 沒有權限透過 API 建立使用者" -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "

永久清除標記為刪除的資料集。

" +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "沒有權限建立使用者" -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "CKAN資料API" +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "群組不存在" -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "透過一擁有強大查詢功能支援的網路API來存取資源之資料" +#: ckan/logic/auth/create.py:209 +msgid "Valid API key needed to create a package" +msgstr "有效的API Key必須建立一個組件" -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" -"進一步的資訊位於 CKAN 資料 API 與 DataStore 文件

" +#: ckan/logic/auth/create.py:217 +msgid "Valid API key needed to create a group" +msgstr "有效的API Key必須建立一個群組" -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "終端點" +#: ckan/logic/auth/create.py:237 +#, python-format +msgid "User %s not authorized to add members" +msgstr "使用者%s沒有權限新增成員" -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "可使用下列之CKAN action API所提供的功能來存取資料API。" +#: ckan/logic/auth/create.py:261 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "使用者 %s 沒有權限編輯群組 %s" -#: ckan/templates/ajax_snippets/api_info.html:42 -msgid "Create" -msgstr "建立" +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "使用者%s沒有權限刪除資源%s" -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "更新 / 插入" +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "此資料檢視不存在,無法確認權限。" -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "查詢" +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "使用者 %s 沒有權限刪除關連性 %s" -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "查詢 (透過SQL)" +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "使用者%s沒有權限刪除群組" -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "查詢" +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "使用者 %s 沒有權限刪除群組 %s" -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "查詢之範例 (前5個結果)" +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "使用者%s沒有權限刪除組織" -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "查詢之範例 (包含字串 'jones' 的結果)" +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "使用者%s沒有權限刪除組織%s" -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "查詢之範例 (透過SQL指令敘述)" +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "使用者 %s 沒有權限刪除任務狀態" -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "範例:Javascript" +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:285 +msgid "Not authorized" +msgstr "沒有權限" -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "使用jQuery對資料API發出一個簡單的ajax(JSONP)請求。" +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "使用者 %s 沒有權限讀取這些組件" -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "範例:Python" +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "使用者 %s 沒有權限讀取組件 %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "此資源目前無法預覽" +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "使用者 %s 沒有權限讀取資料 %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "點擊此處獲得更多資訊" +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "使用者 %s 沒有權限讀取群組 %s" -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "下載資源" +#: ckan/logic/auth/get.py:252 +msgid "You must be logged in to access your dashboard." +msgstr "你必須登入才能使用控制台" -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "你的瀏覽器不支援此頁框" +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "使用者 %s 沒有權限編輯組件 %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "無法預覽" +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "使用者%s沒有權限編輯資源%s" -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "更多詳細資料..." +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "使用者 %s 沒有權限更改組件的狀態 %s" -#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#: ckan/logic/auth/update.py:128 #, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "沒有處理程序定義的資料類型:%(type)s" +msgid "User %s not authorized to edit organization %s" +msgstr "使用者%s沒有權限編輯組織%s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "標準" +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "使用者 %s 沒有權限改變群組的狀態 %s" -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "標準輸入" +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "使用者 %s 沒有權限編輯群組的許可 %s" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "中等" +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "需經登入以編輯用戶" -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "中等寬度輸入" +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "使用者 %s 沒有權限編輯使用者 %s" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "完整" +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "使用者 {0} 沒有權限更新使用者 {1}" -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "完整寬度輸入" +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "使用者 %s 沒有權限更改版本狀態" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "大型" +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "使用者 %s 沒有權限更新任務狀態表格" -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "大型輸入" +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "使用者 %s 沒有權限更新翻譯字詞表格" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "前置" +#: ckan/logic/auth/update.py:262 +msgid "Valid API key needed to edit a package" +msgstr "有效的API Key必須編輯一個組件" -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "前置輸入" +#: ckan/logic/auth/update.py:272 +msgid "Valid API key needed to edit a group" +msgstr "有效的API Key必須編輯一個群組" -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "客製化欄位(空)" +#: ckan/model/license.py:222 +msgid "License not specified" +msgstr "授權類型未指定" -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "客製化欄位" +#: ckan/model/license.py:232 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "開放資料共用公共領域貢獻和授權條款 (PDDL)" -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "Markdown標記" +#: ckan/model/license.py:242 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "文字區塊" +#: ckan/model/license.py:252 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "選取" +#: ckan/model/license.py:263 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:21 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "動態牆" +#: ckan/model/license.py:272 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" -#: 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/model/license.py:282 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "增加一個群組" +#: ckan/model/license.py:291 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "群組表單" +#: ckan/model/license.py:301 +msgid "Other (Open)" +msgstr "其他(開放)" -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:16 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -msgid "Confirm Delete" -msgstr "確認刪除" +#: ckan/model/license.py:311 +msgid "Other (Public Domain)" +msgstr "其他(公共領域)" -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "確定要刪除群組:{name}嗎?" +#: ckan/model/license.py:321 +msgid "Other (Attribution)" +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 "確定要刪除成員:{name}嗎?" +#: ckan/model/license.py:333 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" -#: 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:14 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "管理" +#: ckan/model/license.py:341 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "編輯群組" +#: ckan/model/license.py:349 +msgid "Other (Non-Commercial)" +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/model/license.py:357 +msgid "Other (Not Open)" +msgstr "其他(非開放)" -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "追蹤者" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "根據 %s" -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "歷史紀錄" +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "是取決於%s" -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "新增群組" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "來自於%s" -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "搜尋群組" +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "擁有來源%s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "根據名稱遞增排序" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "連結至%s" -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "根據名稱遞減排序" +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "從%s連結而來" -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "此網站上目前沒有任何群組" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "是%s的子項目" -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "建立一個群組如何?" +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "是%s的父項目" -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "回到所有成員" +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "擁有同層級項目%s" -#: 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/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "這個資源中沒有API資料可供讀取" -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "新增成員" +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "讀取API資訊失敗" -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "已存在的使用者" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "開始輸入.." -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "若您欲新增已存在之使用者,請在下面搜尋。" +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "沒有匹配的資料" -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "或" +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, 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/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "新使用者" +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "此表格有未保存的修改" -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "請在此輸入電子郵件位址,以邀請使用者加入" +#: ckan/public/base/javascript/modules/confirm-action.js:97 +msgid "Please Confirm Action" +msgstr "請確認活動" -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "角色" +#: ckan/public/base/javascript/modules/confirm-action.js:100 +msgid "Are you sure you want to perform this action?" +msgstr "確定要展示此活動嗎?" -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "確定要刪除這個成員嗎?" +#: ckan/public/base/javascript/modules/confirm-action.js:102 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:21 +msgid "Confirm" +msgstr "確認" -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:46 -msgid "Delete" -msgstr "刪除" +#: ckan/public/base/javascript/modules/confirm-action.js:103 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: 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/templates/group/member_new.html:61 -msgid "Save" -msgstr "儲存" +#: ckan/public/base/javascript/modules/follow.js:69 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "取消追蹤" -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "腳色是什麼?" +#: ckan/public/base/javascript/modules/follow.js:72 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "跟隨" -#: ckan/templates/group/member_new.html:81 -msgid "" -"

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

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

" -msgstr "" -"

管理者: 可以編輯群組資訊,以及管理群組成員。

" -"

一般成員:可以瀏覽群組的私有資料集,但無法新增資料集。

" +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +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/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "連結至網際網路上的 URL (你也可以連結至 API)" -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "更新群組" +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "上傳" -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "建立群組" +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:235 +#: ckan/templates/snippets/search_form.html:68 +msgid "Remove" +msgstr "移除" -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "關聯" +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "從你的電腦上傳檔案" -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "最後修改" +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:173 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "URL" +msgstr "網址" -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "熱門的" +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:204 +msgid "File" +msgstr "檔案" -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "搜尋資料集" +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "儲存排序" -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "群組{group}中的資料集" +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "儲存中..." -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "修改版本歷史" +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "上傳檔案" -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "名稱" +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "發生錯誤" -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "我的群組" +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "無法上傳檔案" -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "我的群組" +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "無法驗證上傳" -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -msgid "Description" -msgstr "說明" +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "資源已上傳" -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "關於我的群組的資訊..." +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "無法取得上傳檔案的資料" -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "確定要刪除這個群組嗎?" +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "你現在正在上傳一個檔案,確定要離開當前頁面及停止上傳檔案嗎?" -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "儲存群組" +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "新增篩選條件" -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "{num}個資料集" +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "0資料集" +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:22 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "編輯" -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "瀏覽 {name}" +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "顯示更多" -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "從此群組移除資料集" +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "隱藏" -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "什麼是群組?" +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "錯誤 %(error_code)s" -#: ckan/templates/group/snippets/helper.html:8 +#: 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 "" -" 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 群組建立並管理多個資料集。群組可以代表一個主題、專案或是小組,可以幫助使用者快速找尋資料集。 " +"Powered by CKAN" +msgstr "" +"Powered by CKAN" -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "比較" +#: ckan/templates/header.html:12 +msgid "Sysadmin settings" +msgstr "系統管理員設置" -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:112 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "刪除" +#: ckan/templates/header.html:19 +msgid "View profile" +msgstr "瀏覽個人資料" -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "讀取更多" +#: ckan/templates/header.html:26 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "控制台(%(num)d 個新物件)" -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "版本" +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "儀表板" -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "變更的時間" +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "編輯設定" -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "作者" +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "設定" -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "記錄訊息" +#: ckan/templates/header.html:43 ckan/templates/header.html:45 +msgid "Log out" +msgstr "登出" -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "歡迎" +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 +msgid "Log in" +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/header.html:58 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "註冊" -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "歡迎來到CKAN" +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:103 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 +#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 +#: ckan/templates/package/search.html:7 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 +#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "資料集" -#: ckan/templates/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/header.html:116 +msgid "Search Datasets" +msgstr "搜尋資料集" -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "這是一個特色區塊" +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "搜尋" -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "例如:環境" +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "跳至內容" -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "搜尋資料" +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "讀取較少" -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "熱門標籤" +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "讀取更多" -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "{0}項統計" +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "任何活動都在此活動串之中" -#: ckan/templates/home/snippets/stats.html:11 -msgid "dataset" -msgstr "資料集" +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "管理" -#: ckan/templates/home/snippets/stats.html:11 -msgid "datasets" -msgstr "個資料集" +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "系統管理員" -#: ckan/templates/home/snippets/stats.html:17 -msgid "organizations" -msgstr "組織" +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "設置" -#: ckan/templates/home/snippets/stats.html:23 -msgid "groups" -msgstr "群組" +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "垃圾桶" -#: ckan/templates/macros/form.html:126 +#: ckan/templates/admin/config.html:16 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "確定要重設設置嗎?" + +#: ckan/templates/admin/config.html:16 +msgid "Reset" +msgstr "重設" + +#: ckan/templates/admin/config.html:17 +msgid "Update Config" +msgstr "更新設定檔" + +#: ckan/templates/admin/config.html:26 +msgid "CKAN config options" +msgstr "CKAN 設置選項" + +#: ckan/templates/admin/config.html:33 #, python-format msgid "" -"You can use Markdown formatting here" +"

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 "" -"您可以在此使用 Markdown 格式" +"

網站標題: 這是 CKAN 網站標題的範例,將會出現在 CKAN 的許多地方

" +"

樣式: 您可以從現有的配色方案清單中選擇,做些簡單的變化,快速的讓客製化主題運作。

" +"

網站 LOGO:這是會出現在所有 CKAN 網站模板的 logo。

" +"

關於:此段文字將出現在此 CKAN 網站的「關於」頁面 。

簡介文字:此段文字將作為此 " +"CKAN 網站首頁的歡迎訊息。

客製化 " +"CSS:這是一個 CSS 區塊,將會出現在有<head>標籤的每個頁面。 " +"若您需要更完整的客製化範例,建議您閱讀此文件

" +"

首頁:您可以選擇顯示於首頁的模組佈局。

" -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "此欄位必填" +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "重設確認" -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "客製" +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "CKAN 系統管理者" -#: ckan/templates/macros/form.html:290 -msgid "The form contains invalid entries:" -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 網站的所有控制權。請小心操作!

關於系統管理功能,請見 CKAN 系統管理者指南

" -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "需要的欄位" +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "清空" -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "http://example.com/my-image.jpg" +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "

永久清除標記為刪除的資料集。

" -#: ckan/templates/macros/form.html:411 -msgid "Image URL" -msgstr "圖片 URL" +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "此資源目前無法預覽" -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "清除已上傳檔案" +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:115 +#: ckan/templates/package/snippets/resource_view.html:26 +msgid "Click here for more information." +msgstr "點擊此處獲得更多資訊" -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "組織表單" +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:33 +msgid "Download resource" +msgstr "下載資源" -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "編輯資料集" +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "無法預覽" -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "新增資料集" +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "更多詳細資料..." -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "根據 \"{query}\" 找到" +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "沒有處理程序定義的資料類型:%(type)s" -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "根據\"{query}\"找不到任何資料集" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "標準" -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "設為公開" +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "標準輸入" -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "設為非公開" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "中等" -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "草稿" +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "中等寬度輸入" -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:92 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "非公開" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "完整" -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "沒有任何資料集和這個組織有關聯" +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "完整寬度輸入" -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "你確定要刪除組織-{name}嗎?" +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +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/development/snippets/form.html:8 +msgid "Large Input" +msgstr "大型輸入" -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "新增組織" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "前置" -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "搜尋組織" +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "前置輸入" -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "此網站目前沒有任何組織" +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "客製化欄位(空)" -#: ckan/templates/organization/member_new.html:32 -#: ckan/templates/user/edit_user_form.html:8 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "使用者名稱" +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/group/snippets/group_form.html:35 +#: ckan/templates/group/snippets/group_form.html:48 +#: ckan/templates/organization/snippets/organization_form.html:35 +#: ckan/templates/organization/snippets/organization_form.html:48 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "客製化欄位" -#: ckan/templates/organization/member_new.html:50 -msgid "Email address" -msgstr "電子郵件地址" +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown標記" -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "更新成員" +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "文字區塊" -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

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

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

" -"

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

" -msgstr "" -"

管理者:可以新增/編輯和刪除資料集,以及管理組織成員。

編輯:" -" 可以新增和編輯資料集,但無法管理組織成員。

一般成員: " -"可以瀏覽組織的私有資料集,但無法新增資料集。

" +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "選取" -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "建立一個組織" +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "動態牆" -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -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/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "建立組織" +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "增加一個群組" -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "新增資料集" +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "群組表單" -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "組織 {group} 中的資料集" +#: 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/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "組織是什麼?" +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "確定要刪除群組:{name}嗎?" -#: 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/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/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/group/edit.html:7 ckan/templates/group/edit_base.html:4 +#: ckan/templates/group/edit_base.html:13 +#: 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:14 +#: ckan/templates/package/resource_read.html:31 +#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "管理" -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "我的組織" +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "編輯群組" -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "我的-組織" +#: ckan/templates/group/edit_base.html:23 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" +msgstr "成員" -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "一些關於我的組織的資訊..." +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "歷史紀錄" -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "你確定要刪除這個組織嗎?這樣會刪除屬於這個組織的所有公開和非公開之資料集。" +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "新增群組" -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "儲存組織" +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "搜尋群組" -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "查看 {organization_name}" +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "此網站上目前沒有任何群組" -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "建立資料集" +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "建立一個群組如何?" -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -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:64 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:65 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +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/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:20 +msgid "Existing User" +msgstr "已存在的使用者" -#: ckan/templates/package/confirm_delete.html:12 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "你確定要刪除資料集-{name}嗎?" +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:23 +msgid "If you wish to add an existing user, search for their username below." +msgstr "若您欲新增已存在之使用者,請在下面搜尋。" -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "你確定要刪除資源- {name}嗎?" +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:40 +msgid "or" +msgstr "或" -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "瀏覽資料集" +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:44 +msgid "New User" +msgstr "新使用者" -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "編輯中繼資料" +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:47 +msgid "If you wish to invite a new user, enter their email address." +msgstr "請在此輸入電子郵件位址,以邀請使用者加入" -#: ckan/templates/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/group/member_new.html:55 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:56 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "角色" -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "預覽" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "確定要刪除這個成員嗎?" -#: ckan/templates/package/edit_view.html:21 -msgid "Update" -msgstr "更新" +#: ckan/templates/group/member_new.html:58 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:60 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:59 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:60 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:65 +#: ckan/templates/revision/read.html:24 +#: ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "刪除" -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "將資料集加入此群組" +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:78 +msgid "What are roles?" +msgstr "腳色是什麼?" -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "加入群組" +#: ckan/templates/group/member_new.html:80 +msgid "" +"

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

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

" +msgstr "" +"

管理者: 可以編輯群組資訊,以及管理群組成員。

" +"

一般成員:可以瀏覽群組的私有資料集,但無法新增資料集。

" -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -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/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "更新資料集" +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "更新群組" -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "在資料集中新增資料" +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "建立群組" -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "新增資源" +#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "搜尋資料集" -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "加入資源" +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "群組{group}中的資料集" -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "新資源" +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +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/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "Name" +msgstr "名稱" -#: ckan/templates/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/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "我的群組" -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "新增" +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "我的群組" -#: ckan/templates/package/read_base.html:32 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "這是此資料集在%(timestamp)s時發佈的較舊的版本。可能會與目前版本有所不同" +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "關於我的群組的資訊..." -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "上傳至 DataStore" +#: ckan/templates/group/snippets/group_form.html:60 +msgid "Are you sure you want to delete this Group?" +msgstr "確定要刪除這個群組嗎?" -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "上傳錯誤:" +#: ckan/templates/group/snippets/group_form.html:63 +msgid "Save Group" +msgstr "儲存群組" -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "錯誤:" +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "瀏覽 {name}" -#: ckan/templates/package/resource_data.html:36 -msgid "Error traceback:" -msgstr "錯誤追蹤:" +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "從此群組移除資料集" -#: ckan/templates/package/resource_data.html:48 -msgid "Status" -msgstr "狀態" +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "什麼是群組?" -#: ckan/templates/package/resource_data.html:52 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -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/package/resource_data.html:56 -msgid "Never" -msgstr "從未" +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "比較" -#: ckan/templates/package/resource_data.html:62 -msgid "Upload Log" -msgstr "上傳紀錄" +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:112 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "刪除" -#: ckan/templates/package/resource_data.html:74 -msgid "Details" -msgstr "細節" +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "讀取更多" -#: ckan/templates/package/resource_data.html:81 -msgid "End of log" -msgstr "紀錄尾端" +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "版本" -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "全部資源" +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "變更的時間" -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "瀏覽資源" +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "作者" -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "編輯資源" +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "記錄訊息" -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "DataStore" +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "歡迎" -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -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/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "API終端" +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "歡迎來到CKAN" -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -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 或本網站的簡介。目前沒有文案,但很快就會有" -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "下載" +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "這是一個特色區塊" -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "網址:" +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "例如:環境" -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "根據資料集摘要" +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "搜尋資料" -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "來源:%(dataset)s" +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "熱門標籤" -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "此資料沒有可用的檢視。" +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0}項統計" -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "沒有看到您預期的檢視嗎?" +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "資料集" -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "這裡列出一些可能造成無法檢視的原因:" +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "個資料集" -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "沒有適用於此資料的檢視" +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "組織" -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "系統管理者可能並未啟用相關的檢視擴充套件" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "群組" + +#: ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" -#: ckan/templates/package/resource_read.html:125 +#: ckan/templates/macros/form.html:126 +#, python-format 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" +"You can use Markdown formatting here" msgstr "" -"若此檢視需要 DataStore 支援,則可能為 DataStore 擴充套件未啟用、資料並未上傳至 DataStore,或 DataStore " -"上傳作業尚未完成" +"您可以在此使用 Markdown 格式" -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "其他資訊" +#: ckan/templates/macros/form.html:265 +msgid "This field is required" +msgstr "此欄位必填" -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "欄位" +#: ckan/templates/macros/form.html:265 +msgid "Custom" +msgstr "客製" -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "值" +#: ckan/templates/macros/form.html:290 +msgid "The form contains invalid entries:" +msgstr "此表格包含無效條目:" -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "未知的" +#: ckan/templates/macros/form.html:395 +msgid "Required field" +msgstr "需要的欄位" -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:70 -msgid "Created" -msgstr "建立" +#: ckan/templates/macros/form.html:410 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "格式" +#: ckan/templates/macros/form.html:411 +msgid "Image URL" +msgstr "圖片 URL" -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "授權" +#: ckan/templates/macros/form.html:424 +msgid "Clear Upload" +msgstr "清除已上傳檔案" -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "新增檢視" +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "組織表單" -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "此資料沒有檢視" +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "編輯資料集" -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "加入新資源" +#: ckan/templates/organization/bulk_process.html:6 +msgid "Add dataset" +msgstr "新增資料集" -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

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

" -msgstr "

此資料集中沒有資料,新增一些如何?

" +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "根據 \"{query}\" 找到" -#: ckan/templates/package/search.html:52 -msgid "API" -msgstr "API (應用程式介面)" +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "根據\"{query}\"找不到任何資料集" -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "API 文件" +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "設為公開" -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "永久 {format} 刪除" +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +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 "您也可以使用%(api_link)s (see %(api_doc_link)s)或下載%(dump_link)s註冊。" +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "草稿" -#: ckan/templates/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/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:92 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "非公開" + +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "沒有任何資料集和這個組織有關聯" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "你確定要刪除組織-{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/package/view_edit_base.html:9 -msgid "All views" -msgstr "所有檢視" +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "新增組織" -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "瀏覽檢視" +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "搜尋組織" -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "預覽檢視" +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "此網站目前沒有任何組織" -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "額外的資訊" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "使用者名稱" -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "來源" +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +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/organization/member_new.html:61 +msgid "Update Member" +msgstr "更新成員" -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "版本" +#: ckan/templates/organization/member_new.html:81 +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/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:108 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "狀態" +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "最後更新" +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +#: ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "建立一個組織" -#: ckan/templates/package/snippets/cannot_create_package.html:10 -msgid "Before you can create a dataset you need to create an organization." -msgstr "在建立資料集之前必須先建立組織。" +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "更新組織" -#: ckan/templates/package/snippets/cannot_create_package.html:13 -msgid "Create a new organization" -msgstr "建立一個新的組織" +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create 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/organization/read.html:5 +#: ckan/templates/package/search.html:16 +#: ckan/templates/user/dashboard_datasets.html:7 +msgid "Add 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/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "組織 {group} 中的資料集" -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "資料API" +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "組織是什麼?" -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -msgid "Title" -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/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -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/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "例如:我的資料集" +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "我的組織" -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "例如:此資料一些有用的紀錄" +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "我的-組織" -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "例如:經濟、醫療衛生、政府" +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "一些關於我的組織的資訊..." -#: ckan/templates/package/snippets/package_basic_fields.html:41 +#: ckan/templates/organization/snippets/organization_form.html:60 msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" -"使用協定以及其他相關資訊請見opendefinition.org " - -#: ckan/templates/package/snippets/package_basic_fields.html:70 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "組織" +"Are you sure you want to delete this Organization? This will delete all the " +"public and private datasets belonging to this organization." +msgstr "你確定要刪除這個組織嗎?這樣會刪除屬於這個組織的所有公開和非公開之資料集。" -#: ckan/templates/package/snippets/package_basic_fields.html:74 -msgid "No organization" -msgstr "沒有此組織" +#: ckan/templates/organization/snippets/organization_form.html:63 +msgid "Save Organization" +msgstr "儲存組織" -#: ckan/templates/package/snippets/package_basic_fields.html:89 -msgid "Visibility" -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/snippets/package_basic_fields.html:92 -msgid "Public" -msgstr "公開" +#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "建立資料集" -#: ckan/templates/package/snippets/package_basic_fields.html:111 -msgid "Active" -msgstr "啟動" +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "資料集是什麼?" -#: ckan/templates/package/snippets/package_form.html:28 +#: ckan/templates/package/base_form_page.html:25 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." +" 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 "" -"您所選取的資料授權條款僅適用於您上傳至本資料集的所有資料(檔案)。當您送出此表單時,代表您已同意以 Open Database " -"License 釋出本資料集之後設資料。" +"CKAN 資料集是眾多資料(例如:檔案)的集合,通常伴隨著對該資料集的描述、其他資訊,以及一個固定網址。資料集亦是使用者進行搜尋時所回傳的結果單位。" -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "你確定要刪除這個資料集嗎?" +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "你確定要刪除資料集-{name}嗎?" -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "下一步:新增資料" +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "你確定要刪除資源- {name}嗎?" -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "http://example.com/dataset.json" +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "瀏覽資料集" -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "1.0" +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +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 "Joe Bloggs" +#: 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/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "作者的電子郵件" +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +#: ckan/templates/snippets/datapreview_embed_dialog.html:16 +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/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/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "沒有群組跟此資料集有關聯" -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "維運者的電子郵件" +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" +msgstr "更新資料集" -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "更新資源" +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "在資料集中新增資料" -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "Data" -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/snippets/resource_form.html:24 -msgid "http://example.com/external-data.csv" -msgstr "http://example.com/external-data.csv" +#: 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/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "例如: 2011年1月金價" +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "新資源" -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -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/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "例如:CSV, XML or JSON" +#: 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/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "通常狀況下將自動生成,可以保持空白。" +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Add" +msgstr "新增" -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "例如:2012-06-05" +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "這是此資料集在%(timestamp)s時發佈的較舊的版本。可能會與目前版本有所不同" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "檔案大小" +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "全部資源" -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "例如: 1024" +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "瀏覽資源" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "MIME格式" +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "編輯資源" -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "例如:application/json" +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "檢視" -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "你確定要刪除此資源嗎?" +#: ckan/templates/package/resource_read.html:39 +msgid "API Endpoint" +msgstr "API終端" -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "先前的" +#: ckan/templates/package/resource_read.html:41 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "前往存取資源" -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "儲存並新增其他項目" +#: ckan/templates/package/resource_read.html:43 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "下載" -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "結束" +#: ckan/templates/package/resource_read.html:56 +#: ckan/templates/package/resource_read.html:58 +msgid "URL:" +msgstr "網址:" -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "資源是什麼?" +#: ckan/templates/package/resource_read.html:66 +msgid "From the dataset abstract" +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/resource_read.html:68 +#, python-format +msgid "Source: %(dataset)s" +msgstr "來源:%(dataset)s" -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "探索" +#: ckan/templates/package/resource_read.html:109 +msgid "There are no views created for this resource yet." +msgstr "此資料沒有可用的檢視。" -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "更多資訊" +#: ckan/templates/package/resource_read.html:113 +msgid "Not seeing the views you were expecting?" +msgstr "沒有看到您預期的檢視嗎?" -#: ckan/templates/package/snippets/resource_view.html:11 -msgid "Embed" -msgstr "嵌入" +#: ckan/templates/package/resource_read.html:118 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "這裡列出一些可能造成無法檢視的原因:" -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "此資料檢視目前無法瀏覽" +#: ckan/templates/package/resource_read.html:120 +msgid "No view has been created that is suitable for this resource" +msgstr "沒有適用於此資料的檢視" -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "嵌入資料檢視" +#: ckan/templates/package/resource_read.html:121 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "系統管理者可能並未啟用相關的檢視擴充套件" -#: ckan/templates/package/snippets/resource_view.html:66 +#: ckan/templates/package/resource_read.html:122 msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "您可以將此程式碼複製並貼上至支援 HTML 的內容管理系統或部落格" +"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/snippets/resource_view.html:69 -msgid "Width" -msgstr "寬度" +#: ckan/templates/package/resource_read.html:144 +msgid "Additional Information" +msgstr "其他資訊" -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "高度" +#: ckan/templates/package/resource_read.html:148 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "欄位" -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "程式碼" +#: ckan/templates/package/resource_read.html:149 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "值" -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "資料預覽" +#: ckan/templates/package/resource_read.html:154 +msgid "Data last updated" +msgstr "" -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "資料與資源" +#: ckan/templates/package/resource_read.html:155 +#: ckan/templates/package/resource_read.html:159 +#: ckan/templates/package/resource_read.html:163 +#: ckan/templates/package/resource_read.html:167 +msgid "unknown" +msgstr "未知的" -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "此資料集沒有資料" +#: ckan/templates/package/resource_read.html:158 +msgid "Metadata last updated" +msgstr "" -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "閱讀資料集 %s" +#: ckan/templates/package/resource_read.html:162 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "建立" -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "建立資料集" +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/resource_form.html:37 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +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/resource_read.html:170 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "授權" -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "例如:我的檢視" +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "新增檢視" -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "例如:一些關於我的檢視的資訊" +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "此資料沒有檢視" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "加入新資源" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, 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/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "新增篩選條件" +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API 文件" -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "移除篩選條件" +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "永久 {format} 刪除" -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -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 "您也可以使用%(api_link)s (see %(api_doc_link)s)或下載%(dump_link)s註冊。" -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -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 "您也可以使用%(api_link)s (see %(api_doc_link)s)註冊。" -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "檢視是資料的呈現方式" +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "所有檢視" -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "差異" +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "瀏覽檢視" -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "版本差異" +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "預覽檢視" -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "差異" +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "額外的資訊" -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "沒有差異" +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "來源" -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "版本歷史紀錄" +#: ckan/templates/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/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" msgstr "版本" -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "保留" +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:108 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "狀態" -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "變更" +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "最後更新" -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -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/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "變更的物件" +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "建立一個新的組織" -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -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/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -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/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "複製此段文字到您的網頁嵌入此物件:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "標題" -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "選擇高度及寬度:" +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "例如:一個描述性的標題" -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "寬度:" +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "例如:我的資料集" -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "高度:" +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "例如:此資料一些有用的紀錄" -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "Datapusher 狀態:{status}。" +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "例如:經濟、醫療衛生、政府" -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "引用網址" +#: ckan/templates/package/snippets/package_basic_fields.html:41 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" +"使用協定以及其他相關資訊請見opendefinition.org " -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "顯示更多 {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:70 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "組織" -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "僅顯示熱門的 {facet_type}" +#: ckan/templates/package/snippets/package_basic_fields.html:74 +msgid "No organization" +msgstr "沒有此組織" -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "沒有 {facet_type} 符合這個搜尋結果" +#: ckan/templates/package/snippets/package_basic_fields.html:89 +msgid "Visibility" +msgstr "可見的" -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -msgid "Home" -msgstr "首頁" +#: ckan/templates/package/snippets/package_basic_fields.html:92 +msgid "Public" +msgstr "公開" -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "語言" +#: ckan/templates/package/snippets/package_basic_fields.html:111 +msgid "Active" +msgstr "啟動" -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:41 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -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/snippets/license.html:14 -msgid "No License Provided" -msgstr "沒有可使用的許可" +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "你確定要刪除這個資料集嗎?" -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "此資料集符合開放的定義" +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "下一步:新增資料" -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "此組織沒有任何說明" +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "此資料集沒有說明" +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "1.0" -#: ckan/templates/snippets/search_form.html:17 -msgid "Submit" -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 "Joe Bloggs" -#: ckan/templates/snippets/search_form.html:32 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "排序依照" +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "作者的電子郵件" -#: ckan/templates/snippets/search_form.html:73 -msgid "Filter Results" -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/snippets/search_form.html:80 -msgid "

Please try another search.

" -msgstr "

請嘗試其他的搜尋關鍵字

" +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "維運者的電子郵件" -#: ckan/templates/snippets/search_form.html:86 -msgid "" -"

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

" -msgstr "

搜尋時發生錯誤。 請再試一次。

" +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +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/package/snippets/resource_form.html:24 +msgid "Data" +msgstr "檔案" -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "找不到符合 \"{query}\" 的資料集" +#: ckan/templates/package/snippets/resource_form.html:24 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "找到{number}個資料集" +#: ckan/templates/package/snippets/resource_form.html:28 +msgid "eg. January 2011 Gold Prices" +msgstr "例如: 2011年1月金價" -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "找不到資料集" +#: ckan/templates/package/snippets/resource_form.html:32 +msgid "Some useful notes about the data" +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/package/snippets/resource_form.html:37 +msgid "eg. CSV, XML or JSON" +msgstr "例如:CSV, XML or JSON" -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "找不到符合 \"{query}\" 的群組" +#: ckan/templates/package/snippets/resource_form.html:40 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "通常狀況下將自動生成,可以保持空白。" -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "找到{number}個群組" +#: ckan/templates/package/snippets/resource_form.html:51 +msgid "eg. 2012-06-05" +msgstr "例如:2012-06-05" -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "找不到群組" +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "File Size" +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/package/snippets/resource_form.html:53 +msgid "eg. 1024" +msgstr "例如: 1024" -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "找不到符合 \"{query}\" 的組織" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "MIME Type" +msgstr "MIME格式" -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "找到{number}個組織" +#: ckan/templates/package/snippets/resource_form.html:55 +#: ckan/templates/package/snippets/resource_form.html:57 +msgid "eg. application/json" +msgstr "例如:application/json" -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "找不到組織" +#: ckan/templates/package/snippets/resource_form.html:65 +msgid "Are you sure you want to delete this resource?" +msgstr "你確定要刪除此資源嗎?" -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "社交" +#: ckan/templates/package/snippets/resource_form.html:71 +msgid "Previous" +msgstr "先前的" -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "訂閱" +#: ckan/templates/package/snippets/resource_form.html:74 +msgid "Save & add another" +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:82 -msgid "Email" -msgstr "電子郵件" +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Finish" +msgstr "結束" -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "RSS" +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "資源是什麼?" -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -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/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "搜尋標籤" +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "探索" -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "新聞消息來源" +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "更多資訊" -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "我的資料集" +#: ckan/templates/package/snippets/resource_view.html:11 +msgid "Embed" +msgstr "嵌入" -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "我的組織" +#: ckan/templates/package/snippets/resource_view.html:24 +msgid "This resource view is not available at the moment." +msgstr "此資料檢視目前無法瀏覽" -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "我的群組" +#: ckan/templates/package/snippets/resource_view.html:63 +msgid "Embed resource view" +msgstr "嵌入資料檢視" -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "來自我所追蹤項目的最新動態" +#: ckan/templates/package/snippets/resource_view.html:66 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "您可以將此程式碼複製並貼上至支援 HTML 的內容管理系統或部落格" -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "您尚未建立任何資料集" +#: ckan/templates/package/snippets/resource_view.html:69 +msgid "Width" +msgstr "寬度" -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "馬上建立一個?" +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Height" +msgstr "高度" -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "你不屬於任何群組之成員。" +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "Code" +msgstr "程式碼" -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "你不屬於任何組織之成員。" +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +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/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "資料與資源" -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "帳號資訊" +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +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/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "閱讀資料集 %s" -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "修改資料" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "建立資料集" -#: ckan/templates/user/edit_user_form.html:10 -msgid "Full name" -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/user/edit_user_form.html:10 -msgid "eg. Joe Bloggs" -msgstr "例如:Joe Bloggs" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "例如:我的檢視" -#: ckan/templates/user/edit_user_form.html:12 -msgid "eg. joe@example.com" -msgstr "例如:joe@example.com" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "例如:一些關於我的檢視的資訊" -#: ckan/templates/user/edit_user_form.html:14 -msgid "A little information about yourself" -msgstr "一些關於你自己的資訊" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "移除篩選條件" -#: ckan/templates/user/edit_user_form.html:17 -msgid "Subscribe to notification emails" -msgstr "訂閱通知郵件" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "檢視是什麼?" -#: ckan/templates/user/edit_user_form.html:26 -msgid "Change password" -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/revision/diff.html:6 +msgid "Differences" +msgstr "差異" -#: ckan/templates/user/edit_user_form.html:29 -msgid "Sysadmin Password" -msgstr "系統管理員密碼" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "版本差異" -#: ckan/templates/user/edit_user_form.html:37 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "密碼" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "差異" -#: ckan/templates/user/edit_user_form.html:39 -msgid "Confirm Password" -msgstr "確認密碼" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "沒有差異" -#: ckan/templates/user/edit_user_form.html:45 -msgid "Are you sure you want to delete this User?" -msgstr "確定要刪除這個成員嗎?" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "版本歷史紀錄" -#: ckan/templates/user/edit_user_form.html:51 -msgid "Are you sure you want to regenerate the API key?" -msgstr "您確定要重新產生 API 金鑰嗎?" +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "版本" -#: ckan/templates/user/edit_user_form.html:52 -msgid "Regenerate API Key" -msgstr "重新產生 API 金鑰" +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "保留" -#: ckan/templates/user/edit_user_form.html:56 -msgid "Update Profile" -msgstr "更新個人資料" +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "變更" -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "所有使用者" +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +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/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "變更的物件" -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "需要帳號嗎?" +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "新的活動物件" -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "那就馬上註冊吧,只需花費幾分鐘!" +#: ckan/templates/snippets/datapreview_embed_dialog.html:4 +msgid "Embed Data Viewer" +msgstr "嵌入資料預覽" -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "建立帳號" +#: ckan/templates/snippets/datapreview_embed_dialog.html:8 +msgid "Embed this view by copying this into your webpage:" +msgstr "複製此段文字到您的網頁嵌入此物件:" -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "忘記密碼?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:10 +msgid "Choose width and height in pixels:" +msgstr "選擇高度及寬度:" -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "不要擔心,使用我們的密碼重置功能。" +#: ckan/templates/snippets/datapreview_embed_dialog.html:11 +msgid "Width:" +msgstr "寬度:" -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "忘記密碼?" +#: ckan/templates/snippets/datapreview_embed_dialog.html:13 +msgid "Height:" +msgstr "高度:" -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "登出" +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher 狀態:{status}。" -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "您已經登出。" +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "引用網址" -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "您已經以{user}的身分登入。" +#: ckan/templates/snippets/facet_list.html:80 +msgid "Show More {facet_type}" +msgstr "顯示更多 {facet_type}" -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "登出" +#: ckan/templates/snippets/facet_list.html:83 +msgid "Show Only Popular {facet_type}" +msgstr "僅顯示熱門的 {facet_type}" -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "記住我" +#: ckan/templates/snippets/facet_list.html:87 +msgid "There are no {facet_type} that match this search" +msgstr "沒有 {facet_type} 符合這個搜尋結果" -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "您已經登入" +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "首頁" -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "您必須先登出才能用其他帳號登入。" +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "語言" -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "馬上登出" +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:41 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "前往" -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "註冊" +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "沒有可使用的許可" -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "註冊一個帳號" +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "此資料集符合開放的定義" -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "何不馬上註冊?" +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "此組織沒有任何說明" -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "建立資料集、群組以及其他有趣的事物" +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "此資料集沒有說明" -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "使用者名稱" +#: ckan/templates/snippets/search_form.html:17 +msgid "Submit" +msgstr "確定" -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "全名" +#: ckan/templates/snippets/search_form.html:32 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "排序依照" -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "建立帳號" +#: ckan/templates/snippets/search_form.html:73 +msgid "Filter Results" +msgstr "篩選結果" -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "重置密碼" +#: ckan/templates/snippets/search_form.html:80 +msgid "

Please try another search.

" +msgstr "

請嘗試其他的搜尋關鍵字

" -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "密碼重置" +#: ckan/templates/snippets/search_form.html:86 +msgid "" +"

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

" +msgstr "

搜尋時發生錯誤。 請再試一次。

" -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -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/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "這樣如何?" +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "找不到符合 \"{query}\" 的資料集" -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "簡單地輸入新密碼即可更新您的帳號" +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "找到{number}個資料集" -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "使用者尚未建立任何資料集。" +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "找不到資料集" -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -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/user/read_base.html:41 -msgid "This user has no biography." -msgstr "此使用者沒有自我介紹。" +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "找不到符合 \"{query}\" 的群組" -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "Open ID" +#: 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/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -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/user/read_base.html:87 -msgid "Member Since" -msgstr "會員註冊日" +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "找不到符合 \"{query}\" 的組織" -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "API Key" +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "找到{number}個組織" -#: ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "重設你的密碼" +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "找不到組織" -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "密碼重置" +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "社交" -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "請求重置" +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "訂閱" -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "輸入您的使用者名稱,我們將會寄給您新的密碼至您的電子信箱。" +#: ckan/templates/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:82 +msgid "Email" +msgstr "電子郵件" -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "活動從:" +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "搜尋清單..." +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "編輯" -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "您沒有訂閱任何內容" +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "搜尋標籤" -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "沒有跟隨者" +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "新聞消息來源" -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "搜尋使用者" +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "我的資料集" -#: ckanext/datapusher/helpers.py:21 -msgid "Complete" -msgstr "完成" +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "我的組織" -#: ckanext/datapusher/helpers.py:22 -msgid "Pending" -msgstr "等待中" +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "我的群組" -#: ckanext/datapusher/helpers.py:23 -msgid "Submitting" -msgstr "上傳中" +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "來自我所追蹤項目的最新動態" -#: ckanext/datapusher/helpers.py:29 -msgid "Not Uploaded Yet" -msgstr "尚未上傳" +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:14 +msgid "You haven't created any datasets." +msgstr "您尚未建立任何資料集" -#: ckanext/datastore/controller.py:33 -msgid "DataStore resource not found" -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:16 +msgid "Create one now?" +msgstr "馬上建立一個?" -#: ckanext/datastore/db.py:663 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "無效的資料(例如:填入超出範圍的數值,或將數值填入文字欄位中)。" +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "你不屬於任何群組之成員。" -#: ckanext/datastore/logic/action.py:221 ckanext/datastore/logic/action.py:261 -#: ckanext/datastore/logic/action.py:348 ckanext/datastore/logic/action.py:446 -#: ckanext/datastore/logic/action.py:528 ckanext/datastore/logic/action.py:554 -msgid "Resource \"{0}\" was not found." -msgstr "資源 \"{0}\" 不存在。" +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "你不屬於任何組織之成員。" -#: ckanext/datastore/logic/auth.py:18 -msgid "User {0} not authorized to update resource {1}" -msgstr "使用者{0}沒有權限更新資源{1}" +#: 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 "使用者" -#: ckanext/example_iconfigurer/templates/admin/config.html:11 -msgid "Datasets per page" -msgstr "每頁顯示資料集數量" +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "帳號資訊" -#: ckanext/example_iconfigurer/templates/admin/config.html:13 -msgid "Test conf" -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使用者了解你是誰以及你從事什麼。" -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "客製化欄位(遞增排序)" +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "修改資料" -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "客製化欄位(遞減排序)" +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +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 "客製化文本" +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "例如:Joe Bloggs" -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "客製化文本" +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "例如:joe@example.com" -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "國家/地區代碼" +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "一些關於你自己的資訊" -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "客製化的資料描述" +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "訂閱通知郵件" -#: ckanext/example_itranslation/templates/home/index.html:4 -msgid "This is an untranslated string" -msgstr "此為未被翻譯的字串" +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "變更密碼" -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "此群組沒有說明" +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "系統管理員密碼" -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "CKAN 的資料預覽工具提供許多強大功能" +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:20 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "密碼" -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "圖片 URL" +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +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(若留白則使用資料的 URL)" +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "確定要刪除這個成員嗎?" -#: ckanext/reclineview/plugin.py:101 -msgid "Data Explorer" -msgstr "資料瀏覽器" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "您確定要重新產生 API 金鑰嗎?" -#: ckanext/reclineview/plugin.py:128 -msgid "Table" -msgstr "表格" +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "重新產生 API 金鑰" -#: ckanext/reclineview/plugin.py:171 -msgid "Graph" -msgstr "圖表" +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "更新個人資料" -#: ckanext/reclineview/plugin.py:231 -msgid "Map" -msgstr "地圖" +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "所有使用者" -#: ckanext/reclineview/theme/public/recline_view.js:34 -msgid "error loading view" -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 "登入" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -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 "那就馬上註冊吧,只需花費幾分鐘!" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "例如:0" +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "建立帳號" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "顯示資料列數量" +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "忘記密碼?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "例如:100" +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "不要擔心,使用我們的密碼重置功能。" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "圖表類型" +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "忘記密碼?" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "群組(軸 1)" +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "登出" -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "數列(軸 2)" +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "您已經登出。" -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "欄位類型" +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "您已經以{user}的身分登入。" -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "緯度欄位" +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "登出" -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "經度欄位" +#: ckan/templates/user/logout_first.html:13 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "記住我" -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "GeoJSON 欄位" +#: ckan/templates/user/logout_first.html:22 +msgid "You're already logged in" +msgstr "您已經登入" -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "自動縮放至圖徵 (features)" +#: ckan/templates/user/logout_first.html:24 +msgid "You need to log out before you can log in with another account." +msgstr "您必須先登出才能用其他帳號登入。" -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "將附近的圖徵 (features) 標記為叢集" +#: ckan/templates/user/logout_first.html:25 +msgid "Log out now" +msgstr "馬上登出" -#: ckanext/stats/templates/ckanext/stats/index.html:10 -msgid "Total number of Datasets" -msgstr "資料集總數" +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "註冊" -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "日期" +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "註冊一個帳號" -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "所有資料集" +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "何不馬上註冊?" -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "資料集平均每週更新的次數" +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "建立資料集、群組以及其他有趣的事物" -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "所有資料集的更新版本" +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "使用者名稱" -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "新資料集" +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "全名" -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -msgid "Top Rated Datasets" -msgstr "評分最高的資料集" +#: ckan/templates/user/new_user_form.html:17 +msgid "Create Account" +msgstr "建立帳號" -#: ckanext/stats/templates/ckanext/stats/index.html:64 -msgid "Average rating" -msgstr "平均評分" +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "重置密碼" -#: ckanext/stats/templates/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "參與評分的人數" +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "密碼重置" -#: ckanext/stats/templates/ckanext/stats/index.html:79 -msgid "No ratings" -msgstr "無人參與評分" +#: ckan/templates/user/perform_reset.html:24 +msgid "Update Password" +msgstr "更新密碼" -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -msgid "Most Edited Datasets" -msgstr "最多編輯次數的資料集" +#: ckan/templates/user/perform_reset.html:38 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "這樣如何?" -#: ckanext/stats/templates/ckanext/stats/index.html:90 -msgid "Number of edits" -msgstr "編輯次數" +#: ckan/templates/user/perform_reset.html:40 +msgid "Simply enter a new password and we'll update your account" +msgstr "簡單地輸入新密碼即可更新您的帳號" -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "沒有編輯過的資料集" +#: ckan/templates/user/read.html:21 +msgid "User hasn't created any datasets." +msgstr "使用者尚未建立任何資料集。" -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -msgid "Largest Groups" -msgstr "擁有最多資料集的的群組" +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "您尚未提供自我介紹。" -#: ckanext/stats/templates/ckanext/stats/index.html:114 -msgid "Number of datasets" -msgstr "資料集數目" +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "此使用者沒有自我介紹。" -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "沒有群組" +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "Open ID" -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -msgid "Top Tags" -msgstr "最熱門的標籤" +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "這表示只有你自己有權限瀏覽" -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "標籤名稱" +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "會員註冊日" -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "資料集數量" +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "API Key" -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Creating Most Datasets" -msgstr "建立最多資料集的使用者" +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "重設你的密碼" -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "統計目錄" +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "密碼重置" -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "所有資料集總數" +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "請求重置" -#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 -msgid "Text" -msgstr "文字檔案" +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link " +"to enter a new password." +msgstr "輸入您的使用者名稱,我們將會寄給您新的密碼至您的電子信箱。" -#: ckanext/textview/theme/public/text_view.js:5 -#, python-format -msgid "An error occurred: %(text)s %(error)s" -msgstr "發生錯誤:%(text)s %(error)s" +#: ckan/templates/user/snippets/followee_dropdown.html:14 +#: ckan/templates/user/snippets/followee_dropdown.html:15 +msgid "Activity from:" +msgstr "活動從:" -#: ckanext/webpageview/plugin.py:21 ckanext/webpageview/plugin.py:26 -msgid "Website" -msgstr "網站" +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "搜尋清單..." -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "網頁 URL" +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "您沒有訂閱任何內容" -#: 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/user/snippets/followers.html:9 +msgid "No followers" +msgstr "沒有跟隨者" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "搜尋使用者" diff --git a/ckan/lib/activity_streams_session_extension.py b/ckan/lib/activity_streams_session_extension.py index 1a940d62cac..85cf677f948 100644 --- a/ckan/lib/activity_streams_session_extension.py +++ b/ckan/lib/activity_streams_session_extension.py @@ -102,7 +102,8 @@ def before_commit(self, session): # Object has no id; skipping continue - if activity_type == "new" and obj.id in activities: + if (activity_type in ('new', 'changed') and + obj.id in activities): # This object was already logged as a new package continue diff --git a/ckan/lib/alphabet_paginate.py b/ckan/lib/alphabet_paginate.py index 0fdf8d60cf8..99e570af055 100644 --- a/ckan/lib/alphabet_paginate.py +++ b/ckan/lib/alphabet_paginate.py @@ -21,7 +21,7 @@ from sqlalchemy import __version__ as sqav from sqlalchemy.orm.query import Query from webhelpers.html.builder import HTML -from routes import url_for +from ckan.lib.helpers import url_for class AlphaPage(object): diff --git a/ckan/lib/cli.py b/ckan/lib/cli.py index 14658a1fa33..7040c8afbdd 100644 --- a/ckan/lib/cli.py +++ b/ckan/lib/cli.py @@ -26,7 +26,6 @@ import ckan.model as model import ckan.include.rjsmin as rjsmin import ckan.include.rcssmin as rcssmin -import ckan.lib.fanstatic_resources as fanstatic_resources import ckan.plugins as p from ckan.common import config @@ -230,6 +229,7 @@ def load_config(config, load_site_user=True): import pylons registry.register(pylons.translator, MockTranslator()) + site_user = None if model.user_table.exists() and load_site_user: # If the DB has already been initialized, create and register # a pylons context object, and add the site user to it, so the @@ -249,6 +249,8 @@ def load_config(config, load_site_user=True): request_config.host = parsed.netloc + parsed.path request_config.protocol = parsed.scheme + return site_user + def paster_click_group(summary): '''Return a paster command click.Group for paster subcommands @@ -305,11 +307,7 @@ class CkanCommand(paste.script.command.Command): group_name = 'ckan' def _load_config(self, load_site_user=True): - load_config(self.options.config, load_site_user) - - def _setup_app(self): - cmd = paste.script.appinstall.SetupCommand('setup-app') - cmd.run([self.filename]) + self.site_user = load_config(self.options.config, load_site_user) class ManageDb(CkanCommand): @@ -1478,7 +1476,6 @@ class CreateTestDataCommand(CkanCommand): def command(self): self._load_config() - self._setup_app() from ckan import plugins from create_test_data import CreateTestData @@ -1795,8 +1792,9 @@ def command(self): saturation = None lightness = None + public = config.get(u'ckan.base_public_folder') path = os.path.dirname(__file__) - path = os.path.join(path, '..', 'public', 'base', 'less', 'custom.less') + path = os.path.join(path, '..', public, 'base', 'less', 'custom.less') if self.args: arg = self.args[0] @@ -1987,6 +1985,8 @@ def minify_file(self, path): :param path: The path to the .js or .css file to minify ''' + import ckan.lib.fanstatic_resources as fanstatic_resources + path_only, extension = os.path.splitext(path) if path_only.endswith('.min'): @@ -2022,6 +2022,7 @@ class LessCommand(CkanCommand): min_args = 0 def command(self): + self._load_config() self.less() custom_css = { @@ -2071,7 +2072,9 @@ def less(self): directory = output[0].strip() less_bin = os.path.join(directory, 'lessc') - root = os.path.join(os.path.dirname(__file__), '..', 'public', 'base') + public = config.get(u'ckan.base_public_folder') + + root = os.path.join(os.path.dirname(__file__), '..', public, 'base') root = os.path.abspath(root) custom_less = os.path.join(root, 'less', 'custom.less') for color in self.custom_css: @@ -2094,6 +2097,7 @@ def compile_less(self, root, less_bin, color): process = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) output = process.communicate() + print output class FrontEndBuildCommand(CkanCommand): @@ -2113,6 +2117,7 @@ def command(self): # Less css cmd = LessCommand('less') + cmd.options = self.options cmd.command() # js translation strings @@ -2124,7 +2129,8 @@ def command(self): # minification cmd = MinifyCommand('minify') cmd.options = self.options - root = os.path.join(os.path.dirname(__file__), '..', 'public', 'base') + public = config.get(u'ckan.base_public_folder') + root = os.path.join(os.path.dirname(__file__), '..', public, 'base') root = os.path.abspath(root) ckanext = os.path.join(os.path.dirname(__file__), '..', '..', 'ckanext') ckanext = os.path.abspath(ckanext) diff --git a/ckan/lib/create_test_data.py b/ckan/lib/create_test_data.py index 73ee6633053..fe86010fedf 100644 --- a/ckan/lib/create_test_data.py +++ b/ckan/lib/create_test_data.py @@ -502,14 +502,12 @@ def create_users(cls, user_dicts): @classmethod def _create_user_without_commit(cls, name='', **user_dict): - if model.User.by_name(name) or \ - (user_dict.get('open_id') and - model.User.by_openid(user_dict.get('openid'))): + if model.User.by_name(name): log.warning('Cannot create user "%s" as it already exists.' % name or user_dict['name']) return # User objects are not revisioned so no need to create a revision - user_ref = name or user_dict['openid'] + user_ref = name assert user_ref for k, v in user_dict.items(): if v: diff --git a/ckan/lib/fanstatic_resources.py b/ckan/lib/fanstatic_resources.py index 396bfd4f582..aa010be9495 100644 --- a/ckan/lib/fanstatic_resources.py +++ b/ckan/lib/fanstatic_resources.py @@ -4,6 +4,7 @@ import sys import logging import ConfigParser +from ckan.common import config from fanstatic import Library, Resource, Group, get_library_registry import fanstatic.core as core @@ -78,10 +79,10 @@ def create_resource(path, lib_name, count, inline=False): condition = IE_conditionals[path][0] if inline or condition: kw['renderer'] = fanstatic_extensions.CkanCustomRenderer( - condition=condition, - script=inline, - renderer=renderer, - other_browsers=other_browsers) + condition=condition, + script=inline, + renderer=renderer, + other_browsers=other_browsers) resource = Resource(library, path, **kw) # Add our customised ordering @@ -161,7 +162,8 @@ def create_resource(path, lib_name, count, inline=False): dep_resources = [dep] else: dep_resources = groups[dep] - diff = [res for res in dep_resources if res not in depends[resource]] + diff = [ + res for res in dep_resources if res not in depends[resource]] depends[resource].extend(diff) # process each .js/.css file found @@ -174,8 +176,8 @@ def create_resource(path, lib_name, count, inline=False): filepath = os.path.join(rel_path, f) filename_only, extension = os.path.splitext(f) if extension in ('.css', '.js') and ( - not filename_only.endswith('.min')): - resource_list.append(filepath) + not filename_only.endswith('.min')): + resource_list.append(filepath) # if groups are defined make sure the order supplied there is honored for group in groups: @@ -227,9 +229,13 @@ def create_resource(path, lib_name, count, inline=False): registry = get_library_registry() registry.add(library) -base_path = os.path.abspath(os.path.join(os.path.dirname(__file__), - '..', 'public', 'base')) +public = config.get('ckan.base_public_folder') + +base_path = os.path.abspath(os.path.join( + os.path.dirname(__file__), '..', public, 'base')) + +log.debug('Base path {0}'.format(base_path)) create_library('vendor', os.path.join(base_path, 'vendor'), depend_base=False) create_library('base', os.path.join(base_path, 'javascript'), diff --git a/ckan/lib/helpers.py b/ckan/lib/helpers.py index 4e464583ea0..a701ef5ae81 100644 --- a/ckan/lib/helpers.py +++ b/ckan/lib/helpers.py @@ -19,7 +19,7 @@ from urllib import urlencode from paste.deploy import converters -from webhelpers.html import escape, HTML, literal, tags, tools +from webhelpers.html import HTML, literal, tags, tools from webhelpers import paginate import webhelpers.text as whtext import webhelpers.date as date @@ -30,10 +30,11 @@ from flask import redirect as _flask_redirect from routes import redirect_to as _routes_redirect_to from routes import url_for as _routes_default_url_for +from flask import url_for as _flask_default_url_for +from werkzeug.routing import BuildError as FlaskRouteBuildError import i18n import ckan.exceptions -import ckan.lib.fanstatic_resources as fanstatic_resources import ckan.model as model import ckan.lib.formatters as formatters import ckan.lib.maintain as maintain @@ -45,6 +46,8 @@ import ckan from ckan.common import _, ungettext, c, request, session, json +from markupsafe import Markup, escape + log = logging.getLogger(__name__) @@ -200,43 +203,150 @@ def get_site_protocol_and_host(): @core_helper def url_for(*args, **kw): - '''Return the URL for the given controller, action, id, etc. + '''Return the URL for an endpoint given some parameters. - Usage:: + This is a wrapper for :py:func:`flask.url_for` + and :py:func:`routes.url_for` that adds some extra features that CKAN + needs. - import ckan.plugins.toolkit as toolkit + To build a URL for a Flask view, pass the name of the blueprint and the + view function separated by a period ``.``, plus any URL parameters:: + + url_for('api.action', ver=3, logic_function='status_show') + # Returns /api/3/action/status_show + + For a fully qualified URL pass the ``_external=True`` parameter. This + takes the ``ckan.site_url`` and ``ckan.root_path`` settings into account:: + + url_for('api.action', ver=3, logic_function='status_show', + _external=True) + # Returns http://example.com/api/3/action/status_show + + URLs built by Pylons use the Routes syntax:: - url = toolkit.url_for(controller='package', action='read', - id='my_dataset') - => returns '/dataset/my_dataset' + url_for(controller='package', action='read', id='my_dataset') + # Returns '/dataset/my_dataset' Or, using a named route:: - toolkit.url_for('dataset_read', id='changed') + url_for('dataset_read', id='changed') + # Returns '/dataset/changed' - This is a wrapper for :py:func:`routes.url_for` that adds some extra - features that CKAN needs. + Use ``qualified=True`` for a fully qualified URL when targeting a Pylons + endpoint. + For backwards compatibility, an effort is made to support the Pylons syntax + when building a Flask URL, but this support might be dropped in the future, + so calls should be updated. ''' + # Get the actual string code for the locale locale = kw.pop('locale', None) if locale and isinstance(locale, i18n.Locale): locale = i18n.get_identifier_from_locale_class(locale) + # remove __ckan_no_root and add after to not pollute url no_root = kw.pop('__ckan_no_root', False) - # routes will get the wrong url for APIs if the ver is not provided - if kw.get('controller') == 'api': + + # All API URLs generated should provide the version number + if kw.get('controller') == 'api' or args and args[0].startswith('api.'): ver = kw.get('ver') if not ver: - raise Exception('api calls must specify the version! e.g. ver=3') - # fix ver to include the slash - kw['ver'] = '/%s' % ver - if kw.get('qualified', False): - kw['protocol'], kw['host'] = get_site_protocol_and_host() - my_url = _routes_default_url_for(*args, **kw) + raise Exception('API URLs must specify the version (eg ver=3)') + try: + # First try to build the URL with the Flask router + my_url = _url_for_flask(*args, **kw) + + except FlaskRouteBuildError: + # If it doesn't succeed, fallback to the Pylons router + my_url = _url_for_pylons(*args, **kw) + + # Add back internal params kw['__ckan_no_root'] = no_root + + # Rewrite the URL to take the locale and root_path into account return _local_url(my_url, locale=locale, **kw) +def _url_for_flask(*args, **kw): + '''Build a URL using the Flask router + + This function should not be called directly, use ``url_for`` instead + + This function tries to support the Pylons syntax for ``url_for`` and adapt + it to the Flask one, eg:: + + # Pylons + url_for(controller='api', action='action', ver=3, qualified=True) + + # Flask + url_for('api.action', ver=3, _external=True) + + + Raises :py:exception:`werkzeug.routing.BuildError` if it couldn't + generate a URL. + ''' + if (len(args) and '_' in args[0] + and '.' not in args[0] + and not args[0].startswith('/')): + # Try to translate Python named routes to Flask endpoints + # eg `dataset_new` -> `dataset.new` + args = (args[0].replace('_', '.', 1), ) + elif kw.get('controller') and kw.get('action'): + # If `controller` and `action` are passed, build a Flask endpoint + # from them + # eg controller='user', action='login' -> 'user.login' + args = ('{0}.{1}'.format(kw.pop('controller'), kw.pop('action')),) + + # Support Pylons' way of asking for full URLs + + external = kw.pop('_external', False) or kw.pop('qualified', False) + + # The API routes used to require a slash on the version number, make sure + # we remove it + if (args and args[0].startswith('api.') and + isinstance(kw.get('ver'), basestring) and + kw['ver'].startswith('/')): + kw['ver'] = kw['ver'].replace('/', '') + + # Try to build the URL with flask.url_for + my_url = _flask_default_url_for(*args, **kw) + + if external: + # Don't rely on the host generated by Flask, as SERVER_NAME might not + # be set or might be not be up to date (as in tests changing + # `ckan.site_url`). Contrary to the Routes mapper, there is no way in + # Flask to pass the host explicitly, so we rebuild the URL manually + # based on `ckan.site_url`, which is essentially what we did on Pylons + protocol, host = get_site_protocol_and_host() + parts = urlparse.urlparse(my_url) + my_url = urlparse.urlunparse((protocol, host, parts.path, parts.params, + parts.query, parts.fragment)) + + return my_url + + +def _url_for_pylons(*args, **kw): + '''Build a URL using the Pylons (Routes) router + + This function should not be called directly, use ``url_for`` instead + ''' + + # We need to provide protocol and host to get full URLs, get them from + # ckan.site_url + if kw.get('qualified', False) or kw.get('_external', False): + kw['protocol'], kw['host'] = get_site_protocol_and_host() + + # The Pylons API routes require a slask on the version number for some + # reason + if kw.get('controller') == 'api' and kw.get('ver'): + if (isinstance(kw['ver'], int) or + not kw['ver'].startswith('/')): + kw['ver'] = '/%s' % kw['ver'] + + # Try to build the URL with routes.url_for + return _routes_default_url_for(*args, **kw) + + @core_helper def url_for_static(*args, **kw): '''Returns the URL for static content that doesn't get translated (eg CSS) @@ -1086,7 +1196,7 @@ class Page(paginate.Page): def pager(self, *args, **kwargs): kwargs.update( - format=u"